Skip to content

Commit

Permalink
Merge pull request #6207 from sbueringer/pr-remove-unused-tilt-options
Browse files Browse the repository at this point in the history
🌱 tilt: remove unused options
  • Loading branch information
k8s-ci-robot authored Feb 25, 2022
2 parents 580e448 + 8cf2036 commit f8f6583
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
2 changes: 0 additions & 2 deletions Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ version_settings(True, ">=0.22.2")

settings = {
"deploy_cert_manager": True,
"preload_images_for_kind": True,
"enable_providers": ["docker"],
"kind_cluster_name": "kind",
"debug": {},
}

Expand Down
7 changes: 1 addition & 6 deletions docs/book/src/developer/tilt.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ workflow that offers easy deployments and rapid iterative builds.
## Prerequisites

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

**kind_cluster_name** (String, default="kind"): The name of the kind cluster to use when preloading images.

**kustomize_substitutions** (Map{String: String}, default={}): An optional map of substitutions for `${}`-style placeholders in the
provider's yaml.
Expand Down Expand Up @@ -216,8 +213,6 @@ kustomize_substitutions:
**deploy_cert_manager** (Boolean, default=`true`): Deploys cert-manager into the cluster for use for webhook registration.
**preload_images_for_kind** (Boolean, default=`true`): Uses `kind load docker-image` to preload images into a kind cluster.
**trigger_mode** (String, default=`auto`): Optional setting to configure if tilt should automatically rebuild on changes.
Set to `manual` to disable auto-rebuilding and require users to trigger rebuilds of individual changed components through the UI.
Expand Down

0 comments on commit f8f6583

Please sign in to comment.