How to use NodePort with kind?
I'm trying to use NodePort with kind but somehow it doesn't want to work. I've successfully deployed the following cluster: apiVersion: kind.x-k8s.io/v1alpha4 kind: Cluster nodes: - role: control-plane extraPortMappings: - containerPort: 80 hostPort: 30000 listenAddress: "0.0.0.0" # Optional, defaults to "0.0.0.0" protocol: tcp # Optional, defaults to tcp -