I configure kubernetes multi masters, which should have 2 masters.
On the skin, I start the installation with an indication of the config:
kubeadm init --config = config.yaml
apiVersion: kubeadm.k8s.io/v1alpha3 kind: ClusterConfiguration etcd: endpoints: - https://172.16.100.33:2379 - https://172.16.100.34:2379 caFile: /etc/kubernetes/pki/etcd/ca.pem certFile: /etc/kubernetes/pki/etcd/client.pem keyFile: /etc/kubernetes/pki/etcd/client-key.pem networking: podSubnet: 10.244.0.0/16 The result is successful. I transfer certificates from one server to another and run a similar command.
But both masters do not see each other:
kubectl get nodes NAME STATUS ROLES AGE VERSION master4.nullgr.com Ready master 15m v1.12.1 kubectl get node NAME STATUS ROLES AGE VERSION master3.nullgr.com Ready master 27m v1.12.1 What could be the problem?