From f9c7ee03c8fc602794491bb45e53f6d444a46c1f Mon Sep 17 00:00:00 2001 From: Joseph Heck Date: Tue, 6 Mar 2018 17:32:52 -0800 Subject: [PATCH] Adding missing quote to command line example (#7660) Fixes #7658 --- docs/setup/independent/install-kubeadm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/setup/independent/install-kubeadm.md b/docs/setup/independent/install-kubeadm.md index 74947cbaa1..6e97f37d67 100644 --- a/docs/setup/independent/install-kubeadm.md +++ b/docs/setup/independent/install-kubeadm.md @@ -273,7 +273,7 @@ If the Docker cgroup driver and the kubelet config don't match, change the kubel flag you need to change is `--cgroup-driver`. If it's already set, you can update like so: ```bash -sed -i "s/cgroup-driver=systemd/cgroup-driver=cgroupfs/g /etc/systemd/system/kubelet.service.d/10-kubeadm.conf +sed -i "s/cgroup-driver=systemd/cgroup-driver=cgroupfs/g" /etc/systemd/system/kubelet.service.d/10-kubeadm.conf ``` Otherwise, you will need to open the systemd file and add the flag to an existing environment line.