I tried to install cilium with coredns in kubeadm
kube: 1.12.3 cilium: 1.3.0
I get this error:
Readiness probe failed: KVStore: Failure Err: Not able to connect to any etcd endpoints - etcd: 0/1 connected: http://127.0.0.1:31079 - context deadline exceeded
I don't know why and if i need to install etcd on the master server.
kubectl get pods -n kube-system
cilium-9z4zd 0/1 Running 3 10m
cilium-s4x2g 0/1 Running 3 10m
coredns-576cbf47c7-44hp9 1/1 Running 2 9m29s
coredns-576cbf47c7-6jst5 1/1 Running 2 9m29s
etcd-ops-kube-master-dev 1/1 Running 0 9m29s
kube-apiserver-ops-kube-master-dev 1/1 Running 0 9m29s
kube-controller-manager-ops-kube-master-dev 1/1 Running 0 9m26s
kube-proxy-79649 1/1 Running 0 38m
kube-proxy-b56fk 1/1 Running 0 38m
kube-scheduler-ops-kube-master-dev 1/1 Running 0 9m27s
I had a similar issue playing with Kubernetes the hard way, this was because of a wrong certificate
I did the following:
kubectl -n kube-system logs <etcd>
and found something like:
embed: rejected connection from "172.17.0.3:36950" (error "remote error: tls: bad certificate", ServerName "")
I got the etcd config, you should have something like
Then I compared the keys of
kubectl -n kube-system get secret cilium-etcd-client-tls -o yaml
that provides 3 base64 values.I can then test the keys using
curl https://<ETCD_URL>:2379/v2/keys --cacert=etcd-client-ca.crt --cert=etcd-client.crt --key=etcd-client.key
You should then have something like
{"action":"get","node":{"dir":true}}
Then, you can inspect the deployment, on my side, I have