about summary refs log tree commit diff
path: root/context/testdata/parent-variable-override.yaml
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2017-02-14T18·00+0100
committerVincent Ambo <tazjin@gmail.com>2017-02-14T18·12+0100
commit0147c3e13e741f1d2bac7f082e509222fb86ab38 (patch)
tree2dccf2eb214b2c20ab4527e386e4459c7735022c /context/testdata/parent-variable-override.yaml
parentf81fe551bcf1baa1167ed237c7120df69cf2ddab (diff)
feat ctx: Let sub-resource-sets inherit vars from parent
Users of kontemplate may expect variables defined on the parent resource to be
inherited by children.

This implements that functionality. Values defined twice are overwritten by the
child's definition.

Fixes #20
Diffstat (limited to 'context/testdata/parent-variable-override.yaml')
-rw-r--r--context/testdata/parent-variable-override.yaml10
1 files changed, 10 insertions, 0 deletions
diff --git a/context/testdata/parent-variable-override.yaml b/context/testdata/parent-variable-override.yaml
new file mode 100644
index 0000000000..42676c3028
--- /dev/null
+++ b/context/testdata/parent-variable-override.yaml
@@ -0,0 +1,10 @@
+---
+context: k8s.prod.mydomain.com
+include:
+  - name: parent
+    values:
+      foo: bar
+    include:
+      - name: child
+        values:
+          foo: newvalue