Created
September 18, 2017 16:00
-
-
Save castrojo/30f156f25058f0bd63f8108be104a787 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ./kubeadm init | |
... | |
[preflight] Running pre-flight checks | |
... | |
kubeadm phase preflight | |
[certificates] Generated ca certificate and key | |
... | |
kubeadm phase certs | |
[kubeconfig] Wrote KubeConfig file to disk: "admin.conf" | |
... | |
kubeadm phase kubeconfig | |
[controlplane] Wrote Static Pod manifest for component kube-apiserver to "/etc/kubernetes/manifests/kube-apiserver.yaml" | |
... | |
kubeadm phase controlplane | |
[etcd] Wrote Static Pod manifest for a local etcd instance to "/etc/kubernetes/manifests/etcd.yaml" | |
kubeadm phase etcd | |
[init] Waiting for the kubelet to boot up the control plane as Static Pods from directory "/etc/kubernetes/manifests" | |
... | |
(wait) | |
[markmaster] Master XXXX tainted and labelled with key/value: node-role.kubernetes.io/master="" | |
kubeadm phase mark-master | |
[bootstraptoken] Using token: xxxxxx.yyyyyyyyyyyy | |
... | |
kubeadm phase bootstrap-token | |
[uploadconfig] Storing the configuration used in ConfigMap "kubeadm-config" in the "kube-system" Namespace | |
kubeadm phase upload-config | |
[addons] Applied essential addon: kube-dns | |
... | |
kubeadm phase addons | |
Your Kubernetes master has initialized successfully! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment