Skip to content

Commit

Permalink
Remove old credentials substition
Browse files Browse the repository at this point in the history
+ add feature gate example
  • Loading branch information
hrak committed Sep 1, 2023
1 parent 10b3717 commit 54b78dd
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion docs/book/src/development/tilt.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,23 @@ Next, create a `tilt-settings.json` file and place it in your local copy of `clu

**Example `tilt-settings.json` for CAPC clusters:**

```json
{
"default_registry": "gcr.io/your-project-name-here",
"provider_repos": ["../cluster-api-provider-cloudstack"],
"enable_providers": ["kubeadm-bootstrap", "kubeadm-control-plane", "cloudstack"]
}
```

**Example `tilt-settings.json` for CAPC clusters with experimental feature gate:**

```json
{
"default_registry": "gcr.io/your-project-name-here",
"provider_repos": ["../cluster-api-provider-cloudstack"],
"enable_providers": ["kubeadm-bootstrap", "kubeadm-control-plane", "cloudstack"],
"kustomize_substitutions": {
"CLOUDSTACK_B64ENCODED_CREDENTIALS": "RANDOM_STRING==",
"EXP_KUBEADM_BOOTSTRAP_FORMAT_IGNITION": "true",
}
}
```
Expand Down

0 comments on commit 54b78dd

Please sign in to comment.