0

我正在尝试按照http://kubernetes.io/docs/getting-started-guides/centos/centos_manual_config/上的说明在我的笔记本电脑上安装 Kubernetes

我在 /etc/hosts 中添加了以下 IP, 192.168.121.9 centos-master 192.168.121.65 centos-minion-1 192.168.121.66 centos-minion-2 192.168.121.67 centos-minion-3 并遵循了除 flannel 安装之外的过程。

我正在逐步运行以下实例 for SERVICES in etcd kube-apiserver; do systemctl restart $SERVICES systemctl enable $SERVICES systemctl status $SERVICES done

etcd 启动良好,但 kube-apiserver 失败并出现以下错误: Nov 17 14:40:11 localhost kube-apiserver: F1117 14:40:11.842367 6176 controller.go:84] Unable to perform initial IP allocation check: unable to refresh the service IP block: error #0: dial tcp 192.168.121.9:2379: i/o timeout

尝试将 192.168.121.9 IP 添加到 BareMetal 中的同一接口,但仍然失败。

不知道这里有什么问题..

4

1 回答 1

0

您的问题的根源是 kube-apiserver 无法访问 etcd,可能是因为它刚刚启动并且尚未完全启动。

2379是 etcd 的客户端端口,192.168.121.9是主节点的解析 IP。

为什么 etcd 不接受请求,或者 kube-apiserver 无法访问,需要进一步调查。

于 2016-11-23T14:47:50.623 回答