Skip to content

Commit

Permalink
Fix kind create cluster snippet in kind-deployment.md (#1112)
Browse files Browse the repository at this point in the history
  • Loading branch information
aborroy authored Mar 12, 2024
1 parent f999dd9 commit f59661a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/helm/kind-deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,22 +25,22 @@ that you can run.
Run the following command to create a Kind cluster:

```shell
cat <<EOF | kind create cluster -n acs-testing --config=-
cat <<EOF | kind create cluster --config=-
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
- role: control-plane
kubeadmConfigPatches:
- |
kubeadmConfigPatches:
- |
kind: InitConfiguration
nodeRegistration:
kubeletExtraArgs:
kubeletExtraArgs:
node-labels: "ingress-ready=true"
extraPortMappings:
- containerPort: 80
extraPortMappings:
- containerPort: 80
hostPort: 80
protocol: TCP
- containerPort: 443
- containerPort: 443
hostPort: 443
protocol: TCP
EOF
Expand Down

0 comments on commit f59661a

Please sign in to comment.