我正在尝试使用KIND来启动我的 Kubernetes 集群并尝试将它与 Kubectl 一起使用,但我在第一个障碍中遇到了阻碍
我使用以下类型的配置设置了一个集群
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
- role: control-plane
extraPortMappings:
- hostPort: 80
containerPort: 80
然后我使用 kubectl
kubectl get nodes
The connection to the server localhost:8080 was refused - did you specify the right host or port?
这是有道理的,因为如果我这样做docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
9dcd3b6fd19d kindest/node:v1.17.11 "/usr/local/bin/entr…" 14 minutes ago Up 14 minutes 127.0.0.1:44609->6443/tcp kind-control-plane
我需要做什么才能启动 kubernetes API 服务器并获取其上的节点?