ansible/roles/osbs-namespace/templates/reactor-config-secret.yml.j2
Clement Verna fb240ea470 Update osbs-namespace to latest upstream.
This is an update of the ansible-role-osbs-namespace role
to the latest upstream available + PR16 not yet merged.

https://github.com/projectatomic/ansible-role-osbs-namespace
Signed-off-by: Clement Verna <cverna@tutanota.com>
2018-02-19 14:55:32 +01:00

20 lines
515 B
Django/Jinja

---
version: 1
clusters:
{% for platform, clusters in osbs_worker_clusters.iteritems() %}
{{ platform }}:
{% for cluster in clusters | default([]) %}
- name: {{ cluster.name }}
max_concurrent_builds: {{ cluster.max_concurrent_builds }}
enabled: {{ cluster.enabled | default(true) }}
{% endfor %}
{% endfor %}
{% if osbs_odcs_enabled %}
odcs:
signing_intents:
{{ osbs_odcs_signing_intents | to_yaml | indent(4) }}
default_signing_intent: {{ osbs_odcs_default_signing_intent }}
{% endif %}