File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
content/en/docs/tasks/administer-cluster/kubeadm Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -99,11 +99,14 @@ kubeadm init phase certs <component-name> --config <config-file>
99
99
To write new manifest files in ` /etc/kubernetes/manifests ` you can use:
100
100
101
101
``` shell
102
+ # For Kubernetes control plane components
102
103
kubeadm init phase control-plane < component-name> --config < config-file>
104
+ # For local etcd
105
+ kubeadm init phase etcd local --config < config-file>
103
106
```
104
107
105
108
The ` <config-file> ` contents must match the updated ` ClusterConfiguration ` .
106
- The ` <component-name> ` value must be the name of the component.
109
+ The ` <component-name> ` value must be a name of a Kubernetes control plane component ( ` apiserver ` , ` controller-manager ` or ` scheduler ` ) .
107
110
108
111
{{< note >}}
109
112
Updating a file in ` /etc/kubernetes/manifests ` will tell the kubelet to restart the static Pod for the corresponding component.
You can’t perform that action at this time.
0 commit comments