From 98f8b660e225349de2a1dc8f578503fc46c4ba83 Mon Sep 17 00:00:00 2001 From: Landon Spear Date: Thu, 19 Dec 2019 10:20:39 -0800 Subject: 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 --- ops/kontemplate/docs/cluster-config.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ops/kontemplate') diff --git a/ops/kontemplate/docs/cluster-config.md b/ops/kontemplate/docs/cluster-config.md index fee1f57634..4e87016179 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 ``` -- cgit 1.4.1