I have installed two nodes kubernetes 1.12.1
in cloud VMs, both behind internet proxy. Each VMs have floating IPs associated to connect over SSH, kube-01
is a master and kube-02
is a node. Executed export:
no_proxy=127.0.0.1,localhost,10.157.255.185,192.168.0.153,kube-02,192.168.0.25,kube-01
before running kubeadm init
, but I am getting the following status for kubectl get nodes
:
NAME STATUS ROLES AGE VERSION
kube-01 NotReady master 89m v1.12.1
kube-02 NotReady <none> 29s v1.12.2
Am I missing any configuration? Do I need to add 192.168.0.153
and 192.168.0.25
in respective VM's /etc/hosts
?