From 849dc428dba0f8e99549f18d856de0794f659b69 Mon Sep 17 00:00:00 2001 From: mohamed chiheb ben jemaa Date: Tue, 8 Oct 2019 23:51:51 +0100 Subject: [PATCH] Issue with k8s.io/docs/tasks/configure-pod-container/static-pod/ (#16189) * delete depracted option --pod-manifest-path * change configuration file to manifests * update to suggested wording --- content/en/docs/tasks/configure-pod-container/static-pod.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 92332c2436..019a3b359b 100644 --- a/content/en/docs/tasks/configure-pod-container/static-pod.md +++ b/content/en/docs/tasks/configure-pod-container/static-pod.md @@ -53,7 +53,7 @@ You can configure a static Pod two different ways: either by using configuration ### Filesystem-hosted static Pod manifest {#configuration-files} -The configuration files are just standard Pod definitions in JSON or YAML format in a specific directory. Use `kubelet --pod-manifest-path=` to start the kubelet or add the `staticPodPath: ` field in the [KubeletConfiguration file](/docs/tasks/administer-cluster/kubelet-config-file), which periodically scans the directory and creates/deletes static Pods as YAML/JSON files appear/disappear there. +Manifests are standard Pod definitions in JSON or YAML format in a specific directory. Use the `staticPodPath: ` field in the [KubeletConfiguration file](/docs/tasks/administer-cluster/kubelet-config-file), which periodically scans the directory and creates/deletes static Pods as YAML/JSON files appear/disappear there. Note that the kubelet will ignore files starting with dots when scanning the specified directory. For example, this is how to start a simple web server as a static Pod: