From a1c23d701826aa4ab963416946ff7054aabc1a7a Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Wed, 8 Feb 2017 13:15:36 +0100 Subject: docs: Add YAML to docs --- README.md | 31 ++++++++++++++----------------- 1 file changed, 14 insertions(+), 17 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index df74f2c334f3..24bc9a37a2e5 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ KonTemplate lets you describe resources as you normally would in a simple folder ``` . -├── prod-cluster.json +├── prod-cluster.yaml └── some-api ├── deployment.yaml └── service.yaml @@ -22,24 +22,21 @@ KonTemplate lets you describe resources as you normally would in a simple folder This example has all resources belonging to `some-api` (no file naming conventions enforced at all!) in the `some-api` folder and the configuration for the cluster `prod-cluster` in the corresponding file. -Lets take a short look at `prod-cluster.json`: - -```json -{ - "context": "k8s.prod.mydomain.com", - "include": [ - { - "name": "some-api", - "values": { - "importantFeature": true, - "apiPort": 4567 - } - } - ] -} +Lets take a short look at `prod-cluster.yaml`: + +```yaml +--- +context: k8s.prod.mydomain.com +global: + globalVar: lizards +include: + - name: some-api + values: + version: 1.0-0e6884d + importantFeature: true + apiPort: 4567 ``` - Those values are then templated into the resource files of `some-api`. ## Usage -- cgit 1.4.1