feat main: Initial program implementation & example

This commit is contained in:
Vincent Ambo 2017-02-08 11:51:08 +01:00
parent 9e3ee3f2bb
commit 8fb24f9f75
4 changed files with 60 additions and 0 deletions

16
example/prod-cluster.json Normal file
View file

@ -0,0 +1,16 @@
{
"context": "k8s.prod.mydomain.com",
"global": {
"globalTest": "lizards"
},
"include": [
{
"name": "some-api",
"values": {
"version": "1.0-SNAPSHOT-0e6884d",
"importantFeature": true,
"apiPort": 4567
}
}
]
}

View file

View file

@ -0,0 +1,5 @@
---
name: foo
importantFeature: {{ .importantFeature }}
port: {{ .apiPort }}
globalTest: {{ .globalTest }}