Merge pull request #28830 from chenxuc/kubelet-config-file
improve example for kubelet config filepull/29138/head
commit
3e806911c0
|
@ -30,11 +30,15 @@ Here is an example of what this file might look like:
|
||||||
```
|
```
|
||||||
apiVersion: kubelet.config.k8s.io/v1beta1
|
apiVersion: kubelet.config.k8s.io/v1beta1
|
||||||
kind: KubeletConfiguration
|
kind: KubeletConfiguration
|
||||||
|
address: "192.168.0.8",
|
||||||
|
port: 20250,
|
||||||
|
serializeImagePulls: false,
|
||||||
evictionHard:
|
evictionHard:
|
||||||
memory.available: "200Mi"
|
memory.available: "200Mi"
|
||||||
```
|
```
|
||||||
|
|
||||||
In the example, the Kubelet is configured to evict Pods when available memory drops below 200Mi.
|
In the example, the Kubelet is configured to serve on IP address 192.168.0.8 and port 20250, pull images in parallel,
|
||||||
|
and evict Pods when available memory drops below 200Mi.
|
||||||
All other Kubelet configuration values are left at their built-in defaults, unless overridden
|
All other Kubelet configuration values are left at their built-in defaults, unless overridden
|
||||||
by flags. Command line flags which target the same value as a config file will override that value.
|
by flags. Command line flags which target the same value as a config file will override that value.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue