diff --git a/content/ja/docs/tasks/configure-pod-container/static-pod.md b/content/ja/docs/tasks/configure-pod-container/static-pod.md index 917927c8e0..8c5f9f67c8 100644 --- a/content/ja/docs/tasks/configure-pod-container/static-pod.md +++ b/content/ja/docs/tasks/configure-pod-container/static-pod.md @@ -192,11 +192,11 @@ CONTAINER ID IMAGE COMMAND CREATED ... # This assumes you are using filesystem-hosted static Pod configuration # このコマンドは、kubeletが実行中のノード上で実行してください # -mv /etc/kubelet.d/static-web.yaml /tmp +mv /etc/kubernetes/manifests/static-web.yaml /tmp sleep 20 docker ps # You see that no nginx container is running -mv /tmp/static-web.yaml /etc/kubelet.d/ +mv /tmp/static-web.yaml /etc/kubernetes/manifests/ sleep 20 docker ps ```