Skip to content

0.7.0: Templated manifests

Choose a tag to compare

@github-actions github-actions released this 20 Oct 16:46
· 46 commits to master since this release
Added support of templated manifests. Manifests can be written in
Jinja2 format to have an ablity specify some build time variables
such as:
- version
- name
- images
- manifests

For instance, the original templated manifest:
```yaml
name: "demo"
description: "Demo element"
schema_version: 1
version: "{{ version }}"
...
```

The manifest after build
```yaml
name: "demo"
description: "Demo element"
schema_version: 1
version: "0.0.1"
...
```

The manifest is considired as a template if its extension finishes at
`.j2` or `.jinja2`.