mirror of
https://github.com/ansible/awx-operator.git
synced 2026-04-01 00:03:12 +00:00
* Move label templates into `common` role So that there is single source of labels management, and labels are unified across the other roles * Introduce `additional_labels` * Fix paths for labels templates * Return `additional_labels_items` as list * Add molecule tests
4 lines
104 B
Django/Jinja
4 lines
104 B
Django/Jinja
{% for item in additional_labels_items | default([]) %}
|
|
{{ item.key }}: '{{ item.value }}'
|
|
{% endfor %}
|