Skip to content

Commit

Permalink
Wrapped the values with quotes to make them string
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhairya-Arora01 committed May 30, 2023
1 parent e111168 commit 18623c2
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docs/book/src/developer/tilt.md
Original file line number Diff line number Diff line change
Expand Up @@ -323,10 +323,11 @@ Custom values for variable substitutions can be set using `kustomize_substitutio

```yaml
kustomize_substitutions:
NAMESPACE: default
KUBERNETES_VERSION: v1.27.1
CONTROL_PLANE_MACHINE_COUNT: 1
WORKER_MACHINE_COUNT: 3
NAMESPACE: "default"
KUBERNETES_VERSION: "v1.27.1"
CONTROL_PLANE_MACHINE_COUNT: "1"
WORKER_MACHINE_COUNT: "3"
# Note: kustomize substitutions expects the values to be strings. This can be achieved by wrapping the values in quotation marks.
```

### Cleaning up your kind cluster and development environment
Expand Down

0 comments on commit 18623c2

Please sign in to comment.