Skip to content

Commit 7cece8f

Browse files
Sebbo92dchaykin
authored andcommitted
Creating a Kubernetes cluster
1 parent c8c6623 commit 7cece8f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ A picture serves to illustrate the communication:
3434
sed -i.bak 's|'{GOPATH}'|'${GOPATH}'|g' cluster/config.yaml
3535
```
3636

37-
You can also open [config.yaml](cluster/config.yaml#L21) and replace `{GOPATH}` with the absolute path manually. If you already installed kind (Kubernetes in Docker) on your local system, you can create the cluster with this command:
37+
You can also open [config.yaml](cluster/config.yaml#L21) and replace `{GOPATH}` with the absolute path manually. If you already installed kind (Kubernetes in Docker) on your local system, you can create the cluster with this command:
3838

3939
```sh
4040
kind create cluster --config cluster/config.yaml --name=local-debug-k8s
@@ -47,9 +47,9 @@ kind: Cluster
4747
apiVersion: kind.x-k8s.io/v1alpha4
4848
nodes:
4949
- role: control-plane
50-
kubeadmConfigPatches:
50+
kubeadmConfigPatches: # necessary, since we are going to install an ingress network in the cluster
5151
- |
52-
kind: InitConfiguration # necessary, since we are going to install an ingress network in the cluster
52+
kind: InitConfiguration
5353
nodeRegistration:
5454
kubeletExtraArgs:
5555
node-labels: "ingress-ready=true"

0 commit comments

Comments
 (0)