Skip to content

Commit 6d341e8

Browse files
spearltpo
authored andcommitted
docs(cluster-config): Correct term in cluster config doc
Including external variables does not work. You must import them. This change corrects the External Variables section of the cluster-config README. Signed-off-by: Vincent Ambo <[email protected]>
1 parent d73e927 commit 6d341e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/cluster-config.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -84,20 +84,20 @@ This field is **required**.
8484

8585
As mentioned above, extra variables can be loaded from additional YAML or JSON files. Assuming you
8686
have a file called `test-secrets.yaml` which contains variables that should be shared between a `test`
87-
and `dev` cluster, you could include it in your context as such:
87+
and `dev` cluster, you could import it in your context as such:
8888

8989
```yaml
9090
# test-secrets.yaml:
9191
mySecretVar: foo-bar-12345
9292
9393
# test-cluster.yaml:
9494
context: k8s.test.mydomain.com
95-
include:
95+
import:
9696
- test-secrets.yaml
9797
9898
# dev-cluster.yaml:
9999
context: k8s.dev.mydomain.com
100-
include:
100+
import:
101101
- test-secrets.yaml
102102
```
103103

0 commit comments

Comments
 (0)