Skip to content

Commit 4e15e8f

Browse files
authored
Update kubelet-config-file.md
the commas caused kubelet service to fail to start. should be omitted.
1 parent af1c14e commit 4e15e8f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/en/docs/tasks/administer-cluster/kubelet-config-file.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ Here is an example of what this file might look like:
3030
```
3131
apiVersion: kubelet.config.k8s.io/v1beta1
3232
kind: KubeletConfiguration
33-
address: "192.168.0.8",
34-
port: 20250,
35-
serializeImagePulls: false,
33+
address: "192.168.0.8"
34+
port: 20250
35+
serializeImagePulls: false
3636
evictionHard:
3737
memory.available: "200Mi"
3838
```

0 commit comments

Comments
 (0)