Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
Merge pull request #205 from ibuildthecloud/master
Browse files Browse the repository at this point in the history
Random
  • Loading branch information
ibuildthecloud authored May 17, 2019
2 parents 9741b70 + 2a2d57e commit 7c6fe38
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 7 deletions.
23 changes: 23 additions & 0 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,29 @@ steps:
event:
- tag

steps:
- name: manifest-cert-checker
image: plugins/manifest:1.0.2
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
platforms:
- linux/amd64
- linux/arm64
- linux/arm
target: "rancher/rio-cert-checker:${DRONE_TAG}"
template: "rancher/rio-cert-checker:${DRONE_TAG}-ARCH"
when:
instance:
- drone-publish.rancher.io
ref:
- refs/head/master
- refs/tags/*
event:
- tag

depends_on:
- amd64
- arm64
Expand Down
2 changes: 1 addition & 1 deletion cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ func main() {
Destination: &cfg.Kubeconfig,
},
cli.BoolFlag{
Name: "system",
Name: "system,s",
Usage: "Only show system resources",
},
}
Expand Down
2 changes: 2 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,14 @@ func main() {
Name: "--http-listen-port",
Usage: "HTTP port gateway will be listening",
EnvVar: "HTTP_PORT",
Value: constants.DefaultHTTPOpenPort,
Destination: &constants.DefaultHTTPOpenPort,
},
cli.StringFlag{
Name: "--https-listen-port",
Usage: "HTTPS port gateway will be listening",
EnvVar: "HTTPS_PORT",
Value: constants.DefaultHTTPSOpenPort,
Destination: &constants.DefaultHTTPSOpenPort,
},
}
Expand Down
4 changes: 2 additions & 2 deletions pkg/constants/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ var (
ControllerImage = "rancher/rio-controller"
ControllerImageTag = "dev"
ClusterDomainName = "cluster-domain"
DefaultHTTPOpenPort = "80"
DefaultHTTPSOpenPort = "443"
DefaultHTTPOpenPort = "9080"
DefaultHTTPSOpenPort = "9443"
DefaultServiceVersion = "v0"
GatewaySecretName = "rio-certs"
IstioGatewayDeploy = "istio-gateway"
Expand Down
4 changes: 2 additions & 2 deletions stacks/bindata.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 7c6fe38

Please sign in to comment.