Debian 10 Buster
Sponsored Link

Kubernetes : Kubeadm : Masterノードの設定2019/08/26

 
Kubeadm をインストールして、マルチノード Kubernetes クラスターを構成します。
当例では以下のように 3台のホストを使用して設定します。
前提条件として、それぞれのノードの Hostname, MAC address, Product_uuid は一意である必要があります。
MAC address と Product_uuid は、通常の物理マシンや一般的な方法で作成した仮想マシンであれば、すでに一意となっているはずです。 Product_uuid は [dmidecode -s system-uuid] コマンドで確認できます。
-----------+---------------------------+--------------------------+------------
           |                           |                          |
       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     |
+----------------------+   +----------------------+   +----------------------+

 
Master ノードの設定を実施します。
[1]
[2]
Master ノードで初期セットアップします。
[apiserver-advertise-address] には Kubernetes API サーバーがリスンする IP アドレスを指定します。
指定しない場合は、デフォルトゲートウェイに設定しているネットワークと同じネットワークに属するネットワークインターフェースの IP アドレスが設定されます。 ネットワークインターフェースを二つ以上持っており 且つ デフォルトゲートウェイのネットワークとは異なる IP アドレスでリスンしたい場合は指定します。 そうでない場合は [apiserver-advertise-address] 無しでも OK です。
[--pod-network-cidr] には、Pod Network が利用するネットワークを指定します。
Pod Network を構成するためのプラグインはいくつかのソフトウェアから選択可能です。(詳細は下記リンク参照)
  ⇒ https://kubernetes.io/docs/concepts/cluster-administration/networking/
当例では Flannel で進めます。Flannel の場合は、[--pod-network-cidr=10.244.0.0/16] である必要があります。
root@dlp:~#
kubeadm init --apiserver-advertise-address=10.0.0.30 --pod-network-cidr=10.244.0.0/16

[init] Using Kubernetes version: v1.15.3
[preflight] Running pre-flight checks
[preflight] Pulling images required for setting up a Kubernetes cluster
[preflight] This might take a minute or two, depending on the speed of your internet connection
[preflight] You can also perform this action in beforehand using 'kubeadm config images pull'
[kubelet-start] Writing kubelet environment file with flags to file "/var/lib/kubelet/kubeadm-flags.env"
[kubelet-start] Writing kubelet configuration to file "/var/lib/kubelet/config.yaml"
[kubelet-start] Activating the kubelet service
.....
.....
[bootstrap-token] Creating the "cluster-info" ConfigMap in the "kube-public" namespace
[addons] Applied essential addon: CoreDNS
[addons] Applied essential addon: kube-proxy

Your Kubernetes control-plane has initialized successfully!

To start using your cluster, you need to run the following as a regular user:

  mkdir -p $HOME/.kube
  sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config
  sudo chown $(id -u):$(id -g) $HOME/.kube/config

You should now deploy a pod network to the cluster.
Run "kubectl apply -f [podnetwork].yaml" with one of the options listed at:
  https://kubernetes.io/docs/concepts/cluster-administration/addons/

Then you can join any number of worker nodes by running the following on each as root:

# 以下のコマンドは Worker ノードからのクラスター Join の際に実行するため控えておく
kubeadm join 10.0.0.30:6443 --token uw8h1x.4vjex3g6tfgt4w2t \
    --discovery-token-ca-cert-hash sha256:99c192dcb2b38438c4aacc5029b86447f18f2b93a0fe0fa7a779192bc952fb53

# クラスター管理ユーザーの設定

# 一般ユーザーを管理ユーザーとする場合は、該当ユーザー自身で sudo cp/chown ~とする

root@dlp:~#
mkdir -p $HOME/.kube

root@dlp:~#
cp -i /etc/kubernetes/admin.conf $HOME/.kube/config

root@dlp:~#
chown $(id -u):$(id -g) $HOME/.kube/config
[3] Flannel での Pod Network を構成します。
root@dlp:~#
kubectl apply -f https://raw.githubusercontent.com/coreos/flannel/master/Documentation/kube-flannel.yml

podsecuritypolicy.policy/psp.flannel.unprivileged created
clusterrole.rbac.authorization.k8s.io/flannel created
clusterrolebinding.rbac.authorization.k8s.io/flannel created
serviceaccount/flannel created
configmap/kube-flannel-cfg created
daemonset.apps/kube-flannel-ds-amd64 created
daemonset.apps/kube-flannel-ds-arm64 created
daemonset.apps/kube-flannel-ds-arm created
daemonset.apps/kube-flannel-ds-ppc64le created
daemonset.apps/kube-flannel-ds-s390x created

# 確認 (STATUS = Ready であれば OK)

root@dlp:~#
kubectl get nodes

NAME            STATUS   ROLES    AGE    VERSION
dlp.srv.world   Ready    master   3m2s   v1.15.3

# 確認 (全て Running であれば OK)

root@dlp:~#
kubectl get pods --all-namespaces

NAMESPACE     NAME                                    READY   STATUS    RESTARTS   AGE
kube-system   coredns-5c98db65d4-46w67                1/1     Running   0          2m56s
kube-system   coredns-5c98db65d4-klfb2                1/1     Running   0          2m56s
kube-system   etcd-dlp.srv.world                      1/1     Running   0          116s
kube-system   kube-apiserver-dlp.srv.world            1/1     Running   0          115s
kube-system   kube-controller-manager-dlp.srv.world   1/1     Running   0          2m8s
kube-system   kube-flannel-ds-amd64-pgf88             1/1     Running   0          30s
kube-system   kube-proxy-zd77s                        1/1     Running   0          2m57s
kube-system   kube-scheduler-dlp.srv.world            1/1     Running   0          2m3s
関連コンテンツ