From 85099ba4c2eeb125da03bdce6217b28aaf6a0abb Mon Sep 17 00:00:00 2001 From: "Dr. Stefan Schimanski" Date: Sat, 24 Feb 2018 16:26:38 +0100 Subject: [PATCH] controller-manager: unify address flag description to listen on all interfaces --- cmd/controller-manager/app/options/insecure_serving.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/controller-manager/app/options/insecure_serving.go b/cmd/controller-manager/app/options/insecure_serving.go index 547aa5aff9..658370f18f 100644 --- a/cmd/controller-manager/app/options/insecure_serving.go +++ b/cmd/controller-manager/app/options/insecure_serving.go @@ -61,7 +61,7 @@ func (s *InsecureServingOptions) AddFlags(fs *pflag.FlagSet) { return } - fs.IPVar(&s.BindAddress, "address", s.BindAddress, "DEPRECATED: the IP address on which to listen for the --port port. See --bind-address instead.") + fs.IPVar(&s.BindAddress, "address", s.BindAddress, "DEPRECATED: the IP address on which to listen for the --port port (set to 0.0.0.0 for all IPv4 interfaces and :: for all IPv6 interfaces). See --bind-address instead.") // MarkDeprecated hides the flag from the help. We don't want that: // fs.MarkDeprecated("address", "see --bind-address instead.") fs.IntVar(&s.BindPort, "port", s.BindPort, "DEPRECATED: the port on which to serve HTTP insecurely without authentication and authorization. If 0, don't serve HTTPS at all. See --secure-port instead.")