Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug 2069740: Avoid kubernetes node port range #175

Merged
merged 1 commit into from May 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/monitor/monitor.go
Expand Up @@ -53,7 +53,7 @@ func main() {
}
rootCmd.Flags().Uint16("api-port", 6443, "Port where the OpenShift API listens")
rootCmd.Flags().Uint16("lb-port", 9445, "Port where the API HAProxy LB will listen")
rootCmd.Flags().Uint16("stat-port", 30000, "Port where the HAProxy stats API will listen")
rootCmd.Flags().Uint16("stat-port", 29445, "Port where the HAProxy stats API will listen")
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")
if err := rootCmd.Execute(); err != nil {
Expand Down
2 changes: 1 addition & 1 deletion cmd/runtimecfg/display.go
Expand Up @@ -23,7 +23,7 @@ func init() {
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", 9445, "Port where the API HAProxy LB will listen at")
displayCmd.Flags().Uint16("stat-port", 30000, "Port where the HAProxy stats API will listen at")
displayCmd.Flags().Uint16("stat-port", 29445, "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 @@ -28,7 +28,7 @@ func init() {
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", 9445, "Port where the API HAProxy LB will listen at")
renderCmd.Flags().Uint16("stat-port", 30000, "Port where the HAProxy stats API will listen at")
renderCmd.Flags().Uint16("stat-port", 29445, "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