You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/main.go
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -74,7 +74,7 @@ func main() {
74
74
varsecureMetricsbool
75
75
varenableHTTP2bool
76
76
vartlsOpts []func(*tls.Config)
77
-
varbaseURLstring
77
+
varhoststring
78
78
varmultitoolImagestring
79
79
varmapfileGeneratorImagestring
80
80
varcapabilitiesGeneratorImagestring
@@ -95,7 +95,7 @@ func main() {
95
95
flag.StringVar(&metricsCertKey, "metrics-cert-key", "tls.key", "The name of the metrics server key file.")
96
96
flag.BoolVar(&enableHTTP2, "enable-http2", false,
97
97
"If set, HTTP/2 will be enabled for the metrics and webhook servers")
98
-
flag.StringVar(&baseURL, "baseurl", "", "The base url which is used in the mapserver service.")
98
+
flag.StringVar(&host, "baseurl", "", "The host which is used in the mapserver service.")
99
99
flag.StringVar(&multitoolImage, "multitool-image", defaultMultitoolImage, "The image to use in the blob download init-container.")
100
100
flag.StringVar(&mapfileGeneratorImage, "mapfile-generator-image", defaultMapfileGeneratorImage, "The image to use in the mapfile generator init-container.")
101
101
flag.StringVar(&capabilitiesGeneratorImage, "capabilities-generator-image", defaultCapabilitiesGeneratorImage, "The image to use in the capabilities generator init-container.")
0 commit comments