Skip to content

Commit

Permalink
add tip about list variables
Browse files Browse the repository at this point in the history
  • Loading branch information
AshleyDumaine committed Feb 14, 2024
1 parent 6ca1d05 commit c07158b
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions docs/book/src/developers/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ After your kind management cluster is up and running with Tilt, you should be re

#### Customizing the cluster deployment

Here is a list of required configuration parameters (the full list is available in `templates/cluster-template.yaml`):
Here is a list of required configuration parameters:

```bash
# Cluster settings
Expand All @@ -145,10 +145,17 @@ ssh-keygen -t rsa -b 4096 -f "${SSH_KEY_FILE}" -N '' 1>/dev/null
export LINODE_SSH_KEY="$(cat "${SSH_KEY_FILE}.pub)"
```
~~~admonish tip
You can also use `clusterctl generate` to see which variables need to be set:
```
clusterctl generate cluster $CLUSTER_NAME --from ./templates/cluster-template.yaml --list-variables
```
~~~
```admonish warning
Please note the templates require the use of `clusterctl generate` to substitute the environment variables properly.
Ensure each of the above required environment variables are set before running `clusterctl generate`
```
#### Creating the workload cluster
Expand Down

0 comments on commit c07158b

Please sign in to comment.