You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/book/src/developer/tilt.md
+41-40Lines changed: 41 additions & 40 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,64 +27,65 @@ kind create cluster
27
27
28
28
This local cluster will be running all the cluster api controllers and become the management cluster which then can be used to spin up workload clusters on IBM Cloud.
29
29
30
-
## Create a tilt-settings.json file
30
+
## Create a tilt-settings.yaml file
31
31
32
-
Next, create a `tilt-settings.json` file and place it in your local copy of `cluster-api`. Here is an example:
32
+
Next, create a `tilt-settings.yaml` file and place it in your local copy of `cluster-api`. Here is an example:
33
33
34
-
**Example `tilt-settings.json` for CAPI-IBM clusters:**
34
+
**Example `tilt-settings.yaml` for CAPI-IBM clusters:**
35
35
36
36
Make sure to replace the parameter `IBMCLOUD_API_KEY` with a valid API key.
Add following extra_args to log Power VS REST API Requests/Responses
50
51
51
-
```json
52
-
{
53
-
"extra_args": {
54
-
"ibmcloud": ["-v=5"]
55
-
}
56
-
}
52
+
```yaml
53
+
extra_args:
54
+
ibmcloud:
55
+
- '-v=5'
57
56
```
58
57
59
58
To deploy workload cluster with [Power VS cloud controller manager](/topics/powervs/external-cloud-provider.html) which is currently in experimental stage, Set `POWERVS_PROVIDER_ID_FORMAT` to `v2` under kustomize_substitutions.
To deploy workload cluster with Custom Service Endpoint, Set `SERVICE_ENDPOINT` environmental variable in semi-colon separated format: `${ServiceRegion}:${ServiceID1}=${URL1},${ServiceID2}=${URL2...}`
**NOTE**: For information about all the fields that can be used in the `tilt-settings.json` file, check them [here](https://cluster-api.sigs.k8s.io/developer/tilt.html#tilt-settingsjson-fields).
88
+
**NOTE**: For information about all the fields that can be used in the `tilt-settings.yaml` file, check them [here](https://cluster-api.sigs.k8s.io/developer/tilt.html#tilt-settings-fields).
0 commit comments