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
{{ message }}
This repository was archived by the owner on Feb 8, 2021. It is now read-only.
fs.IPVar(&s.BindAddress, "bind-address", s.BindAddress, "The IP address for the proxy server to serve on (set to 0.0.0.0 for all interfaces)")
81
+
fs.BoolVar(&s.DisableHyperInternalService, "disable-hyper-internal-service", s.DisableHyperInternalService, "Disable the internal haproxy service in Hyper pods")
80
82
fs.StringVar(&s.Master, "master", s.Master, "The address of the Kubernetes API server (overrides any value in kubeconfig)")
81
83
fs.IntVar(&s.HealthzPort, "healthz-port", s.HealthzPort, "The port to bind the health check server. Use 0 to disable.")
82
84
fs.IPVar(&s.HealthzBindAddress, "healthz-bind-address", s.HealthzBindAddress, "The IP address for the health check server to serve on, defaulting to 127.0.0.1 (set to 0.0.0.0 for all interfaces)")
Copy file name to clipboardExpand all lines: cmd/kubelet/app/options/options.go
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -55,6 +55,7 @@ type KubeletServer struct {
55
55
ConfigureCBR0bool
56
56
ContainerRuntimestring
57
57
CPUCFSQuotabool
58
+
DisableHyperInternalServicebool
58
59
DockerDaemonContainerstring
59
60
DockerEndpointstring
60
61
DockerExecHandlerNamestring
@@ -202,6 +203,7 @@ func (s *KubeletServer) AddFlags(fs *pflag.FlagSet) {
202
203
fs.DurationVar(&s.HTTPCheckFrequency, "http-check-frequency", s.HTTPCheckFrequency, "Duration between checking http for new data")
203
204
fs.StringVar(&s.ManifestURL, "manifest-url", s.ManifestURL, "URL for accessing the container manifest")
204
205
fs.StringVar(&s.ManifestURLHeader, "manifest-url-header", s.ManifestURLHeader, "HTTP header to use when accessing the manifest URL, with the key separated from the value with a ':', as in 'key:value'")
206
+
fs.BoolVar(&s.DisableHyperInternalService, "disable-hyper-internal-service", s.DisableHyperInternalService, "Disable the internal haproxy service in Hyper pods")
205
207
fs.BoolVar(&s.EnableServer, "enable-server", s.EnableServer, "Enable the Kubelet's server")
206
208
fs.IPVar(&s.Address, "address", s.Address, "The IP address for the Kubelet to serve on (set to 0.0.0.0 for all interfaces)")
207
209
fs.UintVar(&s.Port, "port", s.Port, "The port for the Kubelet to serve on.")
Copy file name to clipboardExpand all lines: docs/admin/kube-proxy.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,6 +59,7 @@ kube-proxy
59
59
--config-sync-period=15m0s: How often configuration from the apiserver is refreshed. Must be greater than 0.
60
60
--conntrack-max=262144: Maximum number of NAT connections to track (0 to leave as-is)
61
61
--conntrack-tcp-timeout-established=86400: Idle timeout for established TCP connections (0 to leave as-is)
62
+
--disable-hyper-internal-service[=false]: Disable the internal haproxy service in Hyper pods
62
63
--google-json-key="": The Google Cloud Platform Service Account JSON Key to use for authentication.
63
64
--healthz-bind-address=127.0.0.1: The IP address for the health check server to serve on, defaulting to 127.0.0.1 (set to 0.0.0.0 for all interfaces)
64
65
--healthz-port=10249: The port to bind the health check server. Use 0 to disable.
@@ -76,7 +77,7 @@ kube-proxy
76
77
--udp-timeout=250ms: How long an idle UDP connection will be kept open (e.g. '250ms', '2s'). Must be greater than 0. Only applicable for proxy-mode=userspace
77
78
```
78
79
79
-
###### Auto generated by spf13/cobra on 30-Dec-2015
80
+
###### Auto generated by spf13/cobra on 23-Feb-2016
Copy file name to clipboardExpand all lines: docs/admin/kubelet.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -81,6 +81,7 @@ kubelet
81
81
--container-runtime="docker": The container runtime to use. Possible values: 'docker', 'rkt'. Default: 'docker'.
82
82
--containerized[=false]: Experimental support for running kubelet in a container. Intended for testing. [default=false]
83
83
--cpu-cfs-quota[=false]: Enable CPU CFS quota enforcement for containers that specify CPU limits
84
+
--disable-hyper-internal-service[=false]: Disable the internal haproxy service in Hyper pods
84
85
--docker-endpoint="": If non-empty, use this for the docker endpoint to communicate with
85
86
--docker-exec-handler="native": Handler to use when executing a command in a container. Valid values are 'native' and 'nsenter'. Defaults to 'native'.
86
87
--enable-debugging-handlers[=true]: Enables server endpoints for log collection and local running of containers and commands
@@ -146,7 +147,7 @@ kubelet
146
147
--volume-plugin-dir="/usr/libexec/kubernetes/kubelet-plugins/volume/exec/": <Warning: Alpha feature> The full path of the directory in which to search for additional third party volume plugins
147
148
```
148
149
149
-
###### Auto generated by spf13/cobra on 12-Jan-2016
150
+
###### Auto generated by spf13/cobra on 23-Feb-2016
0 commit comments