Docs feedback: Kind installation not working with multiple worker nodes
Link: https://docs.gitlab.com/charts/development/kind/
This doesn't work when adding worker nodes to kind cluster yaml
e.g.: examples/kind/kind-ssl.yaml
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
- role: control-plane
extraPortMappings:
# containerPort below must match the values file:
# nginx-ingress.controller.service.nodePorts.https
# Change hostPort if port 443 is already in use.
- containerPort: 32443
hostPort: 443
listenAddress: "0.0.0.0"
# containerPort below must match the values file:
# nginx-ingress.controller.service.nodePorts.ssh
# Using high-numbered hostPort assuming port 22 is
# already in use.
- containerPort: 32022
hostPort: 32022
listenAddress: "0.0.0.0"
- role: worker
- role: worker
- role: worker
- role: worker
- role: worker
Edited by Alexander Malic