From 6ea6b70ceedf7a422cae5e999956aab01841087c Mon Sep 17 00:00:00 2001 From: AdamDang Date: Thu, 17 May 2018 01:08:28 +0800 Subject: [PATCH] Typo fix: writeable->writable (#8564) * Update pod-security-policy.md * Update reconfigure-kubelet.md --- content/en/docs/concepts/policy/pod-security-policy.md | 2 +- content/en/docs/tasks/administer-cluster/reconfigure-kubelet.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/docs/concepts/policy/pod-security-policy.md b/content/en/docs/concepts/policy/pod-security-policy.md index a20287498e..7f84f2d6bc 100644 --- a/content/en/docs/concepts/policy/pod-security-policy.md +++ b/content/en/docs/concepts/policy/pod-security-policy.md @@ -428,7 +428,7 @@ filesystem can escalate privileges, including reading data from other containers, and abusing the credentials of system services, such as Kubelet._ **ReadOnlyRootFilesystem** - Requires that containers must run with a read-only -root filesystem (i.e. no writeable layer). +root filesystem (i.e. no writable layer). ### FlexVolume drivers diff --git a/content/en/docs/tasks/administer-cluster/reconfigure-kubelet.md b/content/en/docs/tasks/administer-cluster/reconfigure-kubelet.md index f40e972833..d6af916373 100644 --- a/content/en/docs/tasks/administer-cluster/reconfigure-kubelet.md +++ b/content/en/docs/tasks/administer-cluster/reconfigure-kubelet.md @@ -26,7 +26,7 @@ from alpha. {{% capture prerequisites %}} - A live Kubernetes cluster with both Master and Node at v1.8 or higher must be running, with the `DynamicKubeletConfig` feature gate enabled and the Kubelet's -`--dynamic-config-dir` flag set to a writeable directory on the Node. +`--dynamic-config-dir` flag set to a writable directory on the Node. This flag must be set to enable Dynamic Kubelet Configuration. - The kubectl command-line tool must be also v1.8 or higher, and must be configured to communicate with the cluster.