Skip to content

Commit f8f6583

Browse files
authored
Merge pull request #6207 from sbueringer/pr-remove-unused-tilt-options
🌱 tilt: remove unused options
2 parents 580e448 + 8cf2036 commit f8f6583

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

Tiltfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ version_settings(True, ">=0.22.2")
44

55
settings = {
66
"deploy_cert_manager": True,
7-
"preload_images_for_kind": True,
87
"enable_providers": ["docker"],
9-
"kind_cluster_name": "kind",
108
"debug": {},
119
}
1210

docs/book/src/developer/tilt.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ workflow that offers easy deployments and rapid iterative builds.
88
## Prerequisites
99

1010
1. [Docker](https://docs.docker.com/install/): v19.03 or newer
11-
1. [kind](https://kind.sigs.k8s.io): v0.9 or newer (other clusters can be
12-
used if `preload_images_for_kind` is set to false)
11+
1. [kind](https://kind.sigs.k8s.io): v0.9 or newer
1312
1. [Tilt](https://docs.tilt.dev/install.html): v0.22.2 or newer
1413
1. [kustomize](https://github.com/kubernetes-sigs/kustomize): provided via `make kustomize`
1514
1. [envsubst](https://github.com/drone/envsubst): provided via `make envsubst`
@@ -70,8 +69,6 @@ documentation](https://docs.tilt.dev/api.html#api.default_registry) for more det
7069
**enable_providers** (Array[]String, default=['docker']): A list of the providers to enable. See [available providers](#available-providers)
7170
for more details.
7271

73-
**kind_cluster_name** (String, default="kind"): The name of the kind cluster to use when preloading images.
74-
7572
**kustomize_substitutions** (Map{String: String}, default={}): An optional map of substitutions for `${}`-style placeholders in the
7673
provider's yaml.
7774
@@ -216,8 +213,6 @@ kustomize_substitutions:
216213
217214
**deploy_cert_manager** (Boolean, default=`true`): Deploys cert-manager into the cluster for use for webhook registration.
218215
219-
**preload_images_for_kind** (Boolean, default=`true`): Uses `kind load docker-image` to preload images into a kind cluster.
220-
221216
**trigger_mode** (String, default=`auto`): Optional setting to configure if tilt should automatically rebuild on changes.
222217
Set to `manual` to disable auto-rebuilding and require users to trigger rebuilds of individual changed components through the UI.
223218

0 commit comments

Comments
 (0)