Config objects¶
Ankaios supports the definition of configurations separated from workloads using them. This allows users to update configurations independent of workloads, which is helpful when maintaining a large number of workloads. You can define templates in the handlebars templating syntax which are expanded with the referenced configuration objects. The following workload configuration fields currently support template expansion:
agent
runtimeConfig
- the subfields
data
andbinaryData
within thefiles
field
For a basic example of separating configurations from workloads, see here. For detailed information about using the files
field, see here.
Indentation for multi-line configuration¶
When using the default handlebars template syntax ({{config_variable}}
), the line indentation of the current context is not considered. To ensure the validity of certain layouts that rely on the indentation level of multi-line configuration, utilize the following custom indent
control structure, highlighted below:
With the default template syntax ({{nginx_conf}}
) instead, the expanded state will result in an invalid YAML:
...
runtimeConfig: |
manifest: |
apiVersion: v1
kind: ConfigMap
metadata:
name: nginx-config
data:
nginx.conf: |
worker_processes 1;
events {
worker_connections 1024;
}
http {
server {
...
By using the indent
control structure, the line indentation of the current context will be considered which results in an error-free YAML file.