From 5d5b1c2c38fc35de6f3d05d07f409589a7f11cad Mon Sep 17 00:00:00 2001 From: Alpha Date: Tue, 20 Oct 2020 13:13:13 +0800 Subject: [PATCH] doc: simplify the language for understanding --- .../content/en/api-reference/kustomization/vars/_index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/site/content/en/api-reference/kustomization/vars/_index.md b/site/content/en/api-reference/kustomization/vars/_index.md index 4cf74015c..9cf96591c 100644 --- a/site/content/en/api-reference/kustomization/vars/_index.md +++ b/site/content/en/api-reference/kustomization/vars/_index.md @@ -72,15 +72,15 @@ vars: fieldpath: data.MY_PORT configurations: - - linkage.yaml + - lookup.yaml ``` -Define the linkage of the consuming resource(s) and the field(s) inside. +Define the consuming resource(s) and the field(s) inside need to lookup. ```yaml -# linkage.yaml +# lookup.yaml varReference: - # the path of resource(s) that you want the parser to lookup + # the path of field that you want the parser to lookups and replace. - path: spec/template/spec/containers/livenessProbe/httpGet/port kind: Deployment ```