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>
20 lines
515 B
Django/Jinja
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 %}
|