diff options
author | Landon Spear <phyujin@gmail.com> | 2019-12-19T18·20-0800 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-20T22·32+0000 |
commit | 98f8b660e225349de2a1dc8f578503fc46c4ba83 (patch) | |
tree | 9caad717a90fd76f804db87b469b2871c88d231f /ops | |
parent | db307701013b73f51a544116b9ec1ff37ab0f8df (diff) |
docs(cluster-config): Correct term in cluster config doc r/253
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 <tazjin@google.com>
Diffstat (limited to 'ops')
-rw-r--r-- | ops/kontemplate/docs/cluster-config.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ops/kontemplate/docs/cluster-config.md b/ops/kontemplate/docs/cluster-config.md index fee1f576347c..4e870161796d 100644 --- a/ops/kontemplate/docs/cluster-config.md +++ b/ops/kontemplate/docs/cluster-config.md @@ -84,7 +84,7 @@ This field is **required**. As mentioned above, extra variables can be loaded from additional YAML or JSON files. Assuming you have a file called `test-secrets.yaml` which contains variables that should be shared between a `test` -and `dev` cluster, you could include it in your context as such: +and `dev` cluster, you could import it in your context as such: ```yaml # test-secrets.yaml: @@ -92,12 +92,12 @@ mySecretVar: foo-bar-12345 # test-cluster.yaml: context: k8s.test.mydomain.com -include: +import: - test-secrets.yaml # dev-cluster.yaml: context: k8s.dev.mydomain.com -include: +import: - test-secrets.yaml ``` |