Skip to content

Commit

Permalink
Make podSubnet consistent across install guide
Browse files Browse the repository at this point in the history
In the Install Kind page (https://docs.cilium.io/en/v1.8/gettingstarted/kind/),
we properly quote the podSubnet as according to the
[kind config page](https://kind.sigs.k8s.io/docs/user/configuration/). However,
later in the guide, we don't quote the podSubnet, leaving a user with
inconsistent configurations. Making quotes standard.

Signed-off-by: Jed Salazar <jed@isovalent.com>
  • Loading branch information
jedsalazar authored and aanm committed Jun 24, 2020
1 parent 36059fb commit 55dd1b9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Documentation/gettingstarted/kind.rst
Expand Up @@ -99,8 +99,8 @@ Example ``kind-cluster1.yaml``:
- role: worker
networking:
disableDefaultCNI: true
podSubnet: 10.0.0.0/16
serviceSubnet: 10.1.0.0/16
podSubnet: "10.0.0.0/16"
serviceSubnet: "10.1.0.0/16"
Example ``kind-cluster2.yaml``:

Expand All @@ -115,8 +115,8 @@ Example ``kind-cluster2.yaml``:
- role: worker
networking:
disableDefaultCNI: true
podSubnet: 10.2.0.0/16
serviceSubnet: 10.3.0.0/16
podSubnet: "10.2.0.0/16"
serviceSubnet: "10.3.0.0/16"
Create Kind Clusters
--------------------
Expand Down

0 comments on commit 55dd1b9

Please sign in to comment.