Skip to content

Commit

Permalink
Merge pull request #73 from openshift-cherrypick-robot/cherry-pick-71…
Browse files Browse the repository at this point in the history
…-to-release-4.5

[release-4.5] BUG 1858498: Move haproxy port to 9445 due to conflict with KCM
  • Loading branch information
openshift-merge-robot committed Jul 21, 2020
2 parents 855ed6b + b9a0dda commit cefc74c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/monitor/monitor.go
Expand Up @@ -52,7 +52,7 @@ func main() {
},
}
rootCmd.Flags().Uint16("api-port", 6443, "Port where the OpenShift API listens at")
rootCmd.Flags().Uint16("lb-port", 9443, "Port where the API HAProxy LB will listen at")
rootCmd.Flags().Uint16("lb-port", 9445, "Port where the API HAProxy LB will listen at")
rootCmd.Flags().Uint16("stat-port", 50000, "Port where the HAProxy stats API will listen at")
rootCmd.Flags().Duration("check-interval", time.Second*6, "Time between monitor checks")
rootCmd.Flags().IP("api-vip", nil, "Virtual IP Address to reach the OpenShift API")
Expand Down
2 changes: 1 addition & 1 deletion cmd/runtimecfg/display.go
Expand Up @@ -22,7 +22,7 @@ func init() {
displayCmd.Flags().IP("ingress-vip", nil, "Virtual IP Address to reach the OpenShift Ingress Routers")
displayCmd.Flags().IP("dns-vip", nil, "Virtual IP Address to reach an OpenShift node resolving DNS server")
displayCmd.Flags().Uint16("api-port", 6443, "Port where the OpenShift API listens at")
displayCmd.Flags().Uint16("lb-port", 9443, "Port where the API HAProxy LB will listen at")
displayCmd.Flags().Uint16("lb-port", 9445, "Port where the API HAProxy LB will listen at")
displayCmd.Flags().Uint16("stat-port", 50000, "Port where the HAProxy stats API will listen at")
displayCmd.Flags().StringP("resolvconf-path", "r", "/etc/resolv.conf", "Optional path to a resolv.conf file to use to get upstream DNS servers")
rootCmd.AddCommand(displayCmd)
Expand Down
2 changes: 1 addition & 1 deletion cmd/runtimecfg/render.go
Expand Up @@ -27,7 +27,7 @@ func init() {
renderCmd.Flags().IP("ingress-vip", nil, "Virtual IP Address to reach the OpenShift Ingress Routers")
renderCmd.Flags().IP("dns-vip", nil, "Virtual IP Address to reach an OpenShift node resolving DNS server")
renderCmd.Flags().Uint16("api-port", 6443, "Port where the OpenShift API listens at")
renderCmd.Flags().Uint16("lb-port", 9443, "Port where the API HAProxy LB will listen at")
renderCmd.Flags().Uint16("lb-port", 9445, "Port where the API HAProxy LB will listen at")
renderCmd.Flags().Uint16("stat-port", 50000, "Port where the HAProxy stats API will listen at")
renderCmd.Flags().StringP("resolvconf-path", "r", "/etc/resolv.conf", "Optional path to a resolv.conf file to use to get upstream DNS servers")
rootCmd.AddCommand(renderCmd)
Expand Down

0 comments on commit cefc74c

Please sign in to comment.