feat context: Add ability to import extra variables from files

Kontemplate context specifications can now load extra variables from YAML
or JSON files by specifying a list of files (relative to the context file)
under the `import` key.
This commit is contained in:
Vincent Ambo 2017-06-22 17:01:36 +02:00
parent 68e1e48459
commit 9d26c17f13
6 changed files with 96 additions and 4 deletions

View file

@ -0,0 +1,9 @@
---
context: k8s.prod.mydomain.com
global:
globalVar: very global!
override: 1
import:
- test-vars.yaml
- test-vars-override.yaml
include: []