From 66cadd66b5ff80a8c6bcea6d30148bd82a40f4e8 Mon Sep 17 00:00:00 2001 From: diguage Date: Thu, 26 Sep 2019 01:46:02 +0800 Subject: [PATCH] fix markdown syntax (#16452) --- .../tasks/configure-pod-container/static-pod.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/content/en/docs/tasks/configure-pod-container/static-pod.md b/content/en/docs/tasks/configure-pod-container/static-pod.md index 567c6f199a..92332c2436 100644 --- a/content/en/docs/tasks/configure-pod-container/static-pod.md +++ b/content/en/docs/tasks/configure-pod-container/static-pod.md @@ -132,18 +132,18 @@ and store it on a web server so that you can pass the URL of that file to the ku Configure the kubelet on your selected node to use this web manifest by running it with `--manifest-url=` - On Fedora, edit `/etc/kubernetes/kubelet` to include this line: +On Fedora, edit `/etc/kubernetes/kubelet` to include this line: - ``` - KUBELET_ARGS="--cluster-dns=10.254.0.10 --cluster-domain=kube.local --manifest-url=` - ``` +``` +KUBELET_ARGS="--cluster-dns=10.254.0.10 --cluster-domain=kube.local --manifest-url=` +``` Now, restart the kubelet. On Fedora, you would run: - ```shell - # Run this command on the node where the kubelet is running - systemctl restart kubelet - ``` +```shell +# Run this command on the node where the kubelet is running +systemctl restart kubelet +```