【发布时间】:2021-06-11 01:45:23
【问题描述】:
- 我用跟随命令初始化 kubeadm
kubeadm 初始化
--apiserver-advertise-address=192.168.64.104
--image-repository registry.cn-hangzhou.aliyuncs.com/google_containers
--kubernetes-version v1.17.3
--service-cidr=172.96.0.0/16
--pod-network-cidr=172.244.0.0/16
- 我有一个master和两个node,我在三台机器上测试follow命令
curl -k https://172.96.0.1:443/version
命令结果:
{ "major": "1", "minor": "17", "gitVersion": "v1.17.3", "gitCommit": "06ad960bfd03b39c8310aaf92d1e7c12ce618213", "gitTreeState": "clean", "buildDate": "2020-02-11T18:07:13Z", "goVersion": "go1.13.6", "compiler": "gc", "platform": "linux/amd64" }
- 但是当我使用命令
helm install --namespace openebs --name openebs stable/openebs --version 1.5.0时,我得到的结果是Error: Get https://172.96.0.1:443/version?timeout=32s: dial tcp 172.96.0.1:443: i/o timeout
我不知道现在发生了什么,我该如何解决这个问题?
【问题讨论】:
标签: kubernetes flannel