about summary refs log tree commit diff
path: root/docs/cluster-config.md
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2017-07-29T22·49+0200
committerVincent Ambo <tazjin@gmail.com>2017-08-04T21·11+0200
commit55499689589b605ee736bc8334f4391cdfd2a27c (patch)
tree8c00b05819c59e9931ccf0bcb20b3a0e6ca6601f /docs/cluster-config.md
parent367c5d2b60bed86395932b82cf67875e27f8176f (diff)
docs cluster-config: Document cluster configuration files
Adds documentation for the YAML files describing cluster configuration.
Diffstat (limited to 'docs/cluster-config.md')
-rw-r--r--docs/cluster-config.md93
1 files changed, 93 insertions, 0 deletions
diff --git a/docs/cluster-config.md b/docs/cluster-config.md
new file mode 100644
index 0000000000..1bf4944e91
--- /dev/null
+++ b/docs/cluster-config.md
@@ -0,0 +1,93 @@
+Cluster configuration
+==========================
+
+Every cluster (or "environment") that requires individual configuration is specified in
+a very simple YAML file in Kontemplate.
+
+An example file for a hypothetical test environment could look like this:
+
+```yaml
+---
+context: k8s.test.mydomain.com
+global:
+  clusterName: test-cluster
+  defaultReplicas: 2
+import:
+  - test-secrets.yaml
+include:
+  - name: gateway
+    path: tools/nginx
+    values:
+      tlsDomains:
+        - test.oslo.pub
+        - test.tazj.in
+  - path: backend
+    values:
+      env: test
+    include:
+      - name: blog
+        values:
+          url: test.tazj.in
+      - name: pub-service
+```
+
+## Fields
+
+This is documentation for the individual fields in a cluster context file.
+
+### `context`
+
+The `context` field contains the name of the kubectl-context. You can list context names with
+'kubectl config get-contexts'.
+
+This must be set here so that Kontemplate can use the correct context when calling kubectl.
+
+This field is **required**.
+
+### `global`
+
+The `global` field contains a key/value map of variables that should be available to all resource
+sets in the cluster.
+
+This field is **optional**.
+
+### `import`
+
+The `import` field contains the file names of additional YAML or JSON files from which global
+variables should be loaded. Using this field makes it possible to keep certain configuration that
+is the same for some, but not all, clusters in a common place.
+
+This field is **optional**.
+
+### `include`
+
+The `include` field contains the actual resource sets to be included in the cluster.
+
+Information about the structure of resource sets can be found in the [resource set documentation][].
+
+This field is **required**.
+
+## External variables
+
+As mentioned above, extra variables can be loaded from additional YAML or JSON files. Assuming you
+have a file called `test-secrets.yaml` which contains variables that should be shared between a `test`
+and `dev` cluster, you could include it in your context as such:
+
+```
+# test-secrets.yaml:
+mySecretVar: foo-bar-12345
+
+# test-cluster.yaml:
+context: k8s.test.mydomain.com
+include:
+  - test-secrets.yaml
+
+# dev-cluster.yaml:
+context: k8s.dev.mydomain.com
+include:
+  - test-secrets.yaml
+```
+
+The variable `mySecretVar` is then available as a global variable.
+
+[resource set documentation]: resource-sets.md