Kubernetes : Worker ノードの設定2020/08/19 |
Kubeadm をインストールして、マルチノード Kubernetes クラスターを構成します。
当例では以下のように 三台のノードを使用して設定します。
-----------+---------------------------+--------------------------+------------ | | | eth0|10.0.0.30 eth0|10.0.0.51 eth0|10.0.0.52 +----------+-----------+ +-----------+----------+ +-----------+----------+ | [ dlp.srv.world ] | | [ node01.srv.world ] | | [ node02.srv.world ] | | Master Node | | Worker Node | | Worker Node | +----------------------+ +----------------------+ +----------------------+ |
[1] | |
[2] | Worker ノードとするホストから、Master ノードで初期セットアップしたクラスターに Join します。 Join する際のコマンドは、初期セットアップのコマンド実行時の最後に表示された [kubeadm join ~] コマンドをそのままコピーして実行するのみです。 |
root@node01:~# kubeadm join 10.0.0.30:6443 --token 2ai7nw.g02n51jp4ak0i63j \ --discovery-token-ca-cert-hash sha256:19d10da61c574672cb292f33c56d246da8615d29bbf9cbf2d7152140caa27e8b W0818 14:31:16.039489 6363 join.go:346] [preflight] WARNING: JoinControlPane.controlPlane settings will be ignored when control-plane flag is not set. [preflight] Running pre-flight checks [preflight] Reading configuration from the cluster... [preflight] FYI: You can look at this config file with 'kubectl -n kube-system get cm kubeadm-config -oyaml' [kubelet-start] Downloading configuration for the kubelet from the "kubelet-config-1.18" ConfigMap in the kube-system namespace [kubelet-start] Writing kubelet configuration to file "/var/lib/kubelet/config.yaml" [kubelet-start] Writing kubelet environment file with flags to file "/var/lib/kubelet/kubeadm-flags.env" [kubelet-start] Starting the kubelet [kubelet-start] Waiting for the kubelet to perform the TLS Bootstrap... This node has joined the cluster: * Certificate signing request was sent to apiserver and a response was received. * The Kubelet was informed of the new secure connection details. Run 'kubectl get nodes' on the control-plane to see this node join the cluster. # This node has joined the cluster と表示されれば OK |
[3] | Master ノードでノード情報を確認しておきます。全て STATUS = Ready であれば OK です。 |
root@dlp:~# kubectl get nodes NAME STATUS ROLES AGE VERSION dlp.srv.world Ready master 14m v1.18.8 node01.srv.world Ready <none> 113s v1.18.8 node02.srv.world Ready <none> 33s v1.18.8 |
Sponsored Link |