kubernetes service IPs not reachable

后端 未结 3 434
庸人自扰
庸人自扰 2020-12-16 05:41

So I\'ve got a Kubernetes cluster up and running using the Kubernetes on CoreOS Manual Installation Guide.

$ kubectl get no
NAME              STATUS                   


        
3条回答
  •  伪装坚强ぢ
    2020-12-16 06:33

    I had the same issue, turned out to be a configuration issue in kube-proxy.yaml For the "master" parameter I had the ip address as in - --master=192.168.3.240 but it actually required to be a url like - --master=https://192.168.3.240

    FYI my kube-proxy sucessfully uses --proxy-mode=iptables (v1.6.x)

提交回复
热议问题