Files
Bjørn Erik Pedersen 7f3b633aa0 Convert site to Hugo (#8316)
This commit converts content and layout to use Hugo.
2018-05-05 09:00:51 -07:00

2.8 KiB

kubeadm: easily bootstrap a secure Kubernetes cluster

Synopsis

kubeadm: easily bootstrap a secure Kubernetes cluster.

┌──────────────────────────────────────────────────────────┐
│ KUBEADM IS CURRENTLY IN BETA                             │
│                                                          │
│ But please, try it out and give us feedback at:          │
│ https://github.com/kubernetes/kubeadm/issues             │
│ and at-mention @kubernetes/sig-cluster-lifecycle-bugs    │
│ or @kubernetes/sig-cluster-lifecycle-feature-requests    │
└──────────────────────────────────────────────────────────┘

Example usage:

Create a two-machine cluster with one master (which controls the cluster),
and one node (where your workloads, like Pods and Deployments run).

┌──────────────────────────────────────────────────────────┐
│ On the first machine:                                    │
├──────────────────────────────────────────────────────────┤
│ master# kubeadm init                                     │
└──────────────────────────────────────────────────────────┘

┌──────────────────────────────────────────────────────────┐
│ On the second machine:                                   │
├──────────────────────────────────────────────────────────┤
│ node# kubeadm join <arguments-returned-from-init>        │
└──────────────────────────────────────────────────────────┘

You can then repeat the second step on as many other machines as you like.

Options

<tr>
  <td colspan="2">-h, --help</td>
</tr>
<tr>
  <td></td><td style="line-height: 130%">help for kubeadm</td>
</tr>