Skip to content

Commit ff65bf2

Browse files
Correcting error in kubeadm join syntax
On k8s 1.9, using --discovery-token kubeadm join --discovery-token abcdef.1234567890abcdef --discovery-token-unsafe-skip-ca-verification 1.2.3.4:6443` returns an error, but the node joins successfully with kubeadm join --token abcdef.1234567890abcdef --discovery-token-unsafe-skip-ca-verification 1.2.3.4:6443`
1 parent 9f830f8 commit ff65bf2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: docs/reference/setup-tools/kubeadm/kubeadm-join.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ using one of the other modes if possible.
8383
**Example `kubeadm join` command:**
8484

8585
```
86-
kubeadm join --discovery-token abcdef.1234567890abcdef --discovery-token-unsafe-skip-ca-verification 1.2.3.4:6443`
86+
kubeadm join --token abcdef.1234567890abcdef --discovery-token-unsafe-skip-ca-verification 1.2.3.4:6443`
8787
```
8888

8989
**Advantages:**

0 commit comments

Comments
 (0)