apiVersion string | kubeproxy.config.k8s.io/v1alpha1 |
kind string | KubeProxyConfiguration |
featureGates [Required]
map[string]bool
|
featureGates is a map of feature names to bools that enable or disable alpha/experimental features. |
bindAddress [Required]
string
|
bindAddress is the IP address for the proxy server to serve on (set to 0.0.0.0
for all interfaces) |
healthzBindAddress [Required]
string
|
healthzBindAddress is the IP address and port for the health check server to serve on,
defaulting to 0.0.0.0:10256 |
metricsBindAddress [Required]
string
|
metricsBindAddress is the IP address and port for the metrics server to serve on,
defaulting to 127.0.0.1:10249 (set to 0.0.0.0 for all interfaces) |
bindAddressHardFail [Required]
bool
|
bindAddressHardFail, if true, kube-proxy will treat failure to bind to a port as fatal and exit |
enableProfiling [Required]
bool
|
enableProfiling enables profiling via web interface on /debug/pprof handler.
Profiling handlers will be handled by metrics server. |
clusterCIDR [Required]
string
|
clusterCIDR is the CIDR range of the pods in the cluster. It is used to
bridge traffic coming from outside of the cluster. If not provided,
no off-cluster bridging will be performed. |
hostnameOverride [Required]
string
|
hostnameOverride, if non-empty, will be used as the identity instead of the actual hostname. |
clientConnection [Required]
ClientConnectionConfiguration
|
clientConnection specifies the kubeconfig file and client connection settings for the proxy
server to use when communicating with the apiserver. |
iptables [Required]
KubeProxyIPTablesConfiguration
|
iptables contains iptables-related configuration options. |
ipvs [Required]
KubeProxyIPVSConfiguration
|
ipvs contains ipvs-related configuration options. |
oomScoreAdj [Required]
int32
|
oomScoreAdj is the oom-score-adj value for kube-proxy process. Values must be within
the range [-1000, 1000] |
mode [Required]
ProxyMode
|
mode specifies which proxy mode to use. |
portRange [Required]
string
|
portRange is the range of host ports (beginPort-endPort, inclusive) that may be consumed
in order to proxy service traffic. If unspecified (0-0) then ports will be randomly chosen. |
udpIdleTimeout [Required]
meta/v1.Duration
|
udpIdleTimeout is how long an idle UDP connection will be kept open (e.g. '250ms', '2s').
Must be greater than 0. Only applicable for proxyMode=userspace. |
conntrack [Required]
KubeProxyConntrackConfiguration
|
conntrack contains conntrack-related configuration options. |
configSyncPeriod [Required]
meta/v1.Duration
|
configSyncPeriod is how often configuration from the apiserver is refreshed. Must be greater
than 0. |
nodePortAddresses [Required]
[]string
|
nodePortAddresses is the --nodeport-addresses value for kube-proxy process. Values must be valid
IP blocks. These values are as a parameter to select the interfaces where nodeport works.
In case someone would like to expose a service on localhost for local visit and some other interfaces for
particular purpose, a list of IP blocks would do that.
If set it to "127.0.0.0/8", kube-proxy will only select the loopback interface for NodePort.
If set it to a non-zero IP block, kube-proxy will filter that down to just the IPs that applied to the node.
An empty string slice is meant to select all network interfaces. |
winkernel [Required]
KubeProxyWinkernelConfiguration
|
winkernel contains winkernel-related configuration options. |
showHiddenMetricsForVersion [Required]
string
|
ShowHiddenMetricsForVersion is the version for which you want to show hidden metrics. |
detectLocalMode [Required]
LocalMode
|
DetectLocalMode determines mode to use for detecting local traffic, defaults to LocalModeClusterCIDR |