We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e111168 commit 18623c2Copy full SHA for 18623c2
docs/book/src/developer/tilt.md
@@ -323,10 +323,11 @@ Custom values for variable substitutions can be set using `kustomize_substitutio
323
324
```yaml
325
kustomize_substitutions:
326
- NAMESPACE: default
327
- KUBERNETES_VERSION: v1.27.1
328
- CONTROL_PLANE_MACHINE_COUNT: 1
329
- WORKER_MACHINE_COUNT: 3
+ NAMESPACE: "default"
+ KUBERNETES_VERSION: "v1.27.1"
+ CONTROL_PLANE_MACHINE_COUNT: "1"
+ 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.
331
```
332
333
### Cleaning up your kind cluster and development environment
0 commit comments