Skip to content

Commit 18623c2

Browse files
Wrapped the values with quotes to make them string
1 parent e111168 commit 18623c2

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

docs/book/src/developer/tilt.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -323,10 +323,11 @@ Custom values for variable substitutions can be set using `kustomize_substitutio
323323

324324
```yaml
325325
kustomize_substitutions:
326-
NAMESPACE: default
327-
KUBERNETES_VERSION: v1.27.1
328-
CONTROL_PLANE_MACHINE_COUNT: 1
329-
WORKER_MACHINE_COUNT: 3
326+
NAMESPACE: "default"
327+
KUBERNETES_VERSION: "v1.27.1"
328+
CONTROL_PLANE_MACHINE_COUNT: "1"
329+
WORKER_MACHINE_COUNT: "3"
330+
# Note: kustomize substitutions expects the values to be strings. This can be achieved by wrapping the values in quotation marks.
330331
```
331332

332333
### Cleaning up your kind cluster and development environment

0 commit comments

Comments
 (0)