Update kubelet-config-file.md

the commas caused kubelet service to fail to start. should be omitted.
This commit is contained in:
bhangra
2022-07-17 16:53:21 +09:00
committed by GitHub
parent af1c14e63c
commit 4e15e8f2ae
@@ -30,9 +30,9 @@ Here is an example of what this file might look like:
```
apiVersion: kubelet.config.k8s.io/v1beta1
kind: KubeletConfiguration
address: "192.168.0.8",
port: 20250,
serializeImagePulls: false,
address: "192.168.0.8"
port: 20250
serializeImagePulls: false
evictionHard:
memory.available: "200Mi"
```