ansible/roles/robosignatory/templates/robosignatory.toml.j2
Tomas Hrcka b886e2e9a7 Remove duplicate definition of iot in robosig
Signed-off-by: Tomas Hrcka <thrcka@redhat.com>
2022-02-08 20:33:36 +00:00

672 lines
33 KiB
Django/Jinja

amqp_url = "amqps://robosignatory{{ env_suffix }}:@rabbitmq{{ env_suffix }}.fedoraproject.org/%2Fpubsub"
publish_exchange = "amq.topic"
passive_declares = true
callback = "robosignatory.consumer:Consumer"
# Don't use topic_prefix, since outgoing message topics are derived from incoming messages.
# topic_prefix = ""
# Note the double brackets below.
# To add another binding, add another [[bindings]] section.
[[bindings]]
queue = "robosignatory{{ env_suffix }}"
exchange = "amq.topic"
routing_keys = [
"org.fedoraproject.*.pungi.compose.ostree",
"org.fedoraproject.*.coreos.build.request.artifacts-sign",
"org.fedoraproject.*.coreos.build.request.ostree-sign",
"org.fedoraproject.*.buildsys.tag",
]
[tls]
ca_cert = "/etc/pki/fedora-messaging/cacert.pem"
keyfile = "/etc/pki/fedora-messaging/robosignatory-key.pem"
certfile = "/etc/pki/fedora-messaging/robosignatory-cert.pem"
[client_properties]
app = "RoboSignatory"
[queues."robosignatory{{ env_suffix }}"]
durable = true
auto_delete = false
exclusive = false
arguments = {}
[qos]
prefetch_size = 0
prefetch_count = 25
[log_config]
version = 1
disable_existing_loggers = true
[log_config.formatters.simple]
format = "[%(name)s %(levelname)s] %(message)s"
[log_config.handlers.console]
class = "logging.StreamHandler"
formatter = "simple"
stream = "ext://sys.stdout"
[log_config.loggers.fedora_messaging]
level = "INFO"
propagate = false
handlers = ["console"]
[log_config.loggers.robosignatory]
level = "INFO"
propagate = false
handlers = ["console"]
[log_config.root]
level = "INFO"
handlers = ["console"]
# robosignatory consumer configuration
[consumer_config]
# Any tag prefixed with "module-" will be considered a module.
module_prefixes = ["module-"]
[consumer_config.signing]
backend = "sigul"
user = "autopen"
passphrase_file = "/etc/sigul/autosign.pass"
file_signing_key_passphrase_file = "/etc/sigul/autosign.pass"
config_file = "/etc/sigul/client.conf"
[consumer_config.koji_instances]
# The keys here need to be the same in the sigul bridge
[consumer_config.koji_instances.primary]
url = "https://koji{{ env_suffix }}.fedoraproject.org/kojihub"
mbs_user = "mbs/mbs{{ env_suffix }}.fedoraproject.org"
[consumer_config.koji_instances.primary.options]
# Only ssl and kerberos are supported at the moment
authmethod = "kerberos"
principal = "autosign/autosign01{{ env_suffix }}.{{datacenter}}.fedoraproject.org@{% if env != 'production' %}STG.{% endif %}FEDORAPROJECT.ORG"
keytab = "/etc/krb5.autosign_autosign01{{ env_suffix }}.{{datacenter}}.fedoraproject.org.keytab"
krb_rdns = false
# Temporary tags
# Infra tags
[[consumer_config.koji_instances.primary.tags]]
from = "epel7-infra-candidate"
to = "epel7-infra-stg"
key = "{{ (env == 'production')|ternary('fedora-infra', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('47dd8ef9', 'd300e724') }}"
[[consumer_config.koji_instances.primary.tags]]
from = "epel8-infra-candidate"
to = "epel8-infra-stg"
key = "{{ (env == 'production')|ternary('fedora-infra', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('47dd8ef9', 'd300e724') }}"
[[consumer_config.koji_instances.primary.tags]]
from = "f34-infra-candidate"
to = "f34-infra-stg"
key = "{{ (env == 'production')|ternary('fedora-infra', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('47dd8ef9', 'd300e724') }}"
[[consumer_config.koji_instances.primary.tags]]
from = "f35-infra-candidate"
to = "f35-infra-stg"
key = "{{ (env == 'production')|ternary('fedora-infra', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('47dd8ef9', 'd300e724') }}"
[[consumer_config.koji_instances.primary.tags]]
from = "f36-infra-candidate"
to = "f36-infra-stg"
key = "{{ (env == 'production')|ternary('fedora-infra', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('47dd8ef9', 'd300e724') }}"
[[consumer_config.koji_instances.primary.tags]]
from = "f37-infra-candidate"
to = "f37-infra-stg"
key = "{{ (env == 'production')|ternary('fedora-infra', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('47dd8ef9', 'd300e724') }}"
# Gated coreos-pool tag
[[consumer_config.koji_instances.primary.tags]]
from = "f34-coreos-signing-pending"
to = "coreos-pool"
key = "{{ (env == 'production')|ternary('fedora-34', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('45719a39', 'd300e724') }}"
[[consumer_config.koji_instances.primary.tags]]
from = "f35-coreos-signing-pending"
to = "coreos-pool"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('9867c58f', 'd300e724') }}"
[[consumer_config.koji_instances.primary.tags]]
from = "f36-coreos-signing-pending"
to = "coreos-pool"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('38ab71f4', 'd300e724') }}"
[[consumer_config.koji_instances.primary.tags]]
from = "f37-coreos-signing-pending"
to = "coreos-pool"
key = "{{ (env == 'production')|ternary('fedora-37', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('5323552a', 'd300e724') }}"
# Gated rawhide and branched
[[consumer_config.koji_instances.primary.tags]]
from = "f37-signing-pending"
to = "f37-updates-testing-pending"
key = "{{ (env == 'production')|ternary('fedora-37', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('5323552a', 'd300e724') }}"
{% if env == "production" %}
# ima file signing - disable for now per fesco
# file_signing_key = "fedora-files-2021"
{% endif %}
[consumer_config.koji_instances.primary.tags.sidetags]
pattern = 'f37-build-side-<seq_id>'
from = '<sidetag>-signing-pending'
to = '<sidetag>-testing-pending'
trusted_taggers = ['bodhi']
[[consumer_config.koji_instances.primary.tags]]
from = "f37-pending"
to = "f37"
key = "{{ (env == 'production')|ternary('fedora-37', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('5323552a', 'd300e724') }}"
[[consumer_config.koji_instances.primary.tags]]
from = "f37-modular-pending"
to = "f37-modular"
key = "{{ (env == 'production')|ternary('fedora-37', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('5323552a', 'd300e724') }}"
type = "modular"
[[consumer_config.koji_instances.primary.tags]]
from = "f37-modular-updates-candidate"
to = "f37-modular"
key = "{{ (env == 'production')|ternary('fedora-37', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('5323552a', 'd300e724') }}"
type = "modular"
# [[consumer_config.koji_instances.primary.tags]]
# from = "f36-signing-pending"
# to = "f36-updates-testing-pending"
# key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
# keyid = "{{ (env == 'production')|ternary('38ab71f4', 'd300e724') }}"
# {% if env == "production" %}
# # ima file signing - disable for now per fesco
# # file_signing_key = "fedora-files-2021"
# {% endif %}
# [consumer_config.koji_instances.primary.tags.sidetags]
# pattern = 'f36-build-side-<seq_id>'
# from = '<sidetag>-signing-pending'
# to = '<sidetag>-testing-pending'
# trusted_taggers = ['bodhi']
[[consumer_config.koji_instances.primary.tags]]
from = "f36-pending"
to = "f36"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('38ab71f4', 'd300e724') }}"
[[consumer_config.koji_instances.primary.tags]]
from = "f36-modular-pending"
to = "f36-modular"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('38ab71f4', 'd300e724') }}"
type = "modular"
[[consumer_config.koji_instances.primary.tags]]
from = "f36-modular-updates-candidate"
to = "f36-modular"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('38ab71f4', 'd300e724') }}"
type = "modular"
[[consumer_config.koji_instances.primary.tags]]
from = "f35-signing-pending"
to = "f35-updates-testing-pending"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('9867c58f', 'd300e724') }}"
{% if env == "production" %}
# ima file signing - disable for now per fesco
# file_signing_key = "fedora-files-2021"
{% endif %}
[consumer_config.koji_instances.primary.tags.sidetags]
pattern = 'f35-build-side-<seq_id>'
from = '<sidetag>-signing-pending'
to = '<sidetag>-testing-pending'
trusted_taggers = ['bodhi']
[[consumer_config.koji_instances.primary.tags]]
from = "f35-pending"
to = "f35"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('9867c58f', 'd300e724') }}"
[[consumer_config.koji_instances.primary.tags]]
from = "f35-modular-pending"
to = "f35-modular"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('9867c58f', 'd300e724') }}"
type = "modular"
[[consumer_config.koji_instances.primary.tags]]
from = "f35-modular-signing-pending"
to = "f35-modular-updates-testing-pending"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('9867c58f', 'd300e724') }}"
type = "modular"
[[consumer_config.koji_instances.primary.tags]]
from = "f34-signing-pending"
to = "f34-updates-testing-pending"
key = "{{ (env == 'production')|ternary('fedora-34', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('45719a39', 'd300e724') }}"
[consumer_config.koji_instances.primary.tags.sidetags]
pattern = 'f34-build-side-<seq_id>'
from = '<sidetag>-signing-pending'
to = '<sidetag>-testing-pending'
trusted_taggers = ['bodhi']
[[consumer_config.koji_instances.primary.tags]]
from = "f34-pending"
to = "f34"
key = "{{ (env == 'production')|ternary('fedora-34', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('45719a39', 'd300e724') }}"
[[consumer_config.koji_instances.primary.tags]]
from = "f34-modular-pending"
to = "f34-modular"
key = "{{ (env == 'production')|ternary('fedora-34', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('45719a39', 'd300e724') }}"
type = "modular"
[[consumer_config.koji_instances.primary.tags]]
from = "f34-modular-signing-pending"
to = "f34-modular-updates-testing-pending"
key = "{{ (env == 'production')|ternary('fedora-34', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('45719a39', 'd300e724') }}"
type = "modular"
#epel8 modular tags
[[consumer_config.koji_instances.primary.tags]]
from = "epel8-modular-signing-pending"
to = "epel8-modular-updates-testing-pending"
key = "{{ (env == 'production')|ternary('epel-8', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('2f86d6a1', 'd300e724') }}"
type = "modular"
# Gated bodhi updates
[[consumer_config.koji_instances.primary.tags]]
from = "epel9-signing-pending"
to = "epel9-testing-pending"
key = "{{ (env == 'production')|ternary('epel-9', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('3228467c', 'd300e724') }}"
[[consumer_config.koji_instances.primary.tags]]
from = "epel9-next-signing-pending"
to = "epel9-next-testing-pending"
key = "{{ (env == 'production')|ternary('epel-9', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('3228467c', 'd300e724') }}"
[consumer_config.koji_instances.primary.tags.sidetags]
pattern = 'epel9-build-side-<seq_id>'
from = '<sidetag>-signing-pending'
to = '<sidetag>-testing-pending'
trusted_taggers = ['bodhi']
[[consumer_config.koji_instances.primary.tags]]
from = "epel8-signing-pending"
to = "epel8-testing-pending"
key = "{{ (env == 'production')|ternary('epel-8', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('2f86d6a1', 'd300e724') }}"
[consumer_config.koji_instances.primary.tags.sidetags]
pattern = 'epel8-build-side-<seq_id>'
from = '<sidetag>-signing-pending'
to = '<sidetag>-testing-pending'
trusted_taggers = ['bodhi']
[[consumer_config.koji_instances.primary.tags]]
from = "epel8-next-signing-pending"
to = "epel8-next-testing-pending"
key = "{{ (env == 'production')|ternary('epel-8', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('2f86d6a1', 'd300e724') }}"
[[consumer_config.koji_instances.primary.tags]]
from = "epel7-signing-pending"
to = "epel7-testing-pending"
key = "{{ (env == 'production')|ternary('epel-7', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('352c64e5', 'd300e724') }}"
[consumer_config.koji_instances.primary.tags.sidetags]
pattern = 'epel7-build-side-<seq_id>'
from = '<sidetag>-signing-pending'
to = '<sidetag>-testing-pending'
trusted_taggers = ['bodhi']
# ELN signing
[[consumer_config.koji_instances.primary.tags]]
from = "eln-signing-pending"
to = "eln-updates-testing-pending"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('38ab71f4', 'd300e724') }}"
[[consumer_config.koji_instances.primary.tags]]
from = "eln-modular-updates-candidate"
to = "eln-modular"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('38ab71f4', 'd300e724') }}"
type = "modular"
# ELN Mass Rebuild
[[consumer_config.koji_instances.primary.tags]]
from = "eln-rebuild"
to = "eln-rebuild"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('38ab71f4', 'd300e724') }}"
# ELN Side tags
[consumer_config.koji_instances.primary.tags.sidetags]
pattern = 'eln-build-side-<seq_id>'
from = '<sidetag>-signing-pending'
to = '<sidetag>-testing-pending'
trusted_taggers = ['bodhi']
# openh264 signing
[[consumer_config.koji_instances.primary.tags]]
from = "f36-openh264"
to = "f36-openh264"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('38ab71f4', 'd300e724') }}"
[[consumer_config.koji_instances.primary.tags]]
from = "f35-openh264"
to = "f35-openh264"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('9867c58f', 'd300e724') }}"
[[consumer_config.koji_instances.primary.tags]]
from = "f34-openh264"
to = "f34-openh264"
key = "{{ (env == 'production')|ternary('fedora-34', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('45719a39', 'd300e724') }}"
# Side tags created by releng
# f35-python
[[consumer_config.koji_instances.primary.tags]]
from = "f35-python"
to = "f35-python"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('9867c58f', 'd300e724') }}"
# f35-boost
[[consumer_config.koji_instances.primary.tags]]
from = "f35-boost"
to = "f35-boost"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('9867c58f', 'd300e724') }}"
# f35-kde
[[consumer_config.koji_instances.primary.tags]]
from = "f35-kde"
to = "f35-kde"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('9867c58f', 'd300e724') }}"
# f36-rebuild
[[consumer_config.koji_instances.primary.tags]]
from = "f36-rebuild"
to = "f36-rebuild"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
keyid = "{{ (env == 'production')|ternary('38ab71f4', 'd300e724') }}"
[consumer_config.ostree_refs]
[consumer_config.ostree_refs."fedora/rawhide/x86_64/iot"]
directory = "/mnt/fedora_koji/koji/compose/iot/repo/"
key = "{{ (env == 'production')|ternary('fedora-37', 'testkey') }}"
[consumer_config.ostree_refs."fedora/rawhide/aarch64/iot"]
directory = "/mnt/fedora_koji/koji/compose/iot/repo/"
key = "{{ (env == 'production')|ternary('fedora-37', 'testkey') }}"
[consumer_config.ostree_refs."fedora/rawhide/armhfp/iot"]
directory = "/mnt/fedora_koji/koji/compose/iot/repo/"
key = "{{ (env == 'production')|ternary('fedora-37', 'testkey') }}"
[consumer_config.ostree_refs."fedora/devel/x86_64/iot"]
directory = "/mnt/fedora_koji/koji/compose/iot/repo/"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
[consumer_config.ostree_refs."fedora/devel/aarch64/iot"]
directory = "/mnt/fedora_koji/koji/compose/iot/repo/"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
[consumer_config.ostree_refs."fedora/devel/armhfp/iot"]
directory = "/mnt/fedora_koji/koji/compose/iot/repo/"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
[consumer_config.ostree_refs."fedora/stable/x86_64/iot"]
directory = "/mnt/fedora_koji/koji/compose/iot/repo/"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
[consumer_config.ostree_refs."fedora/stable/aarch64/iot"]
directory = "/mnt/fedora_koji/koji/compose/iot/repo/"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
[consumer_config.ostree_refs."fedora/stable/armhfp/iot"]
directory = "/mnt/fedora_koji/koji/compose/iot/repo/"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
[consumer_config.ostree_refs."fedora/33/x86_64/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-33', 'testkey') }}"
[consumer_config.ostree_refs."fedora/33/aarch64/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-33', 'testkey') }}"
[consumer_config.ostree_refs."fedora/33/ppc64le/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-33', 'testkey') }}"
[consumer_config.ostree_refs."fedora/33/x86_64/updates/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-33', 'testkey') }}"
[consumer_config.ostree_refs."fedora/33/x86_64/testing/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-33', 'testkey') }}"
[consumer_config.ostree_refs."fedora/33/aarch64/updates/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-33', 'testkey') }}"
[consumer_config.ostree_refs."fedora/33/aarch64/testing/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-33', 'testkey') }}"
[consumer_config.ostree_refs."fedora/33/ppc64le/updates/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-33', 'testkey') }}"
[consumer_config.ostree_refs."fedora/33/ppc64le/testing/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-33', 'testkey') }}"
[consumer_config.ostree_refs."fedora/34/x86_64/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-34', 'testkey') }}"
[consumer_config.ostree_refs."fedora/34/aarch64/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-34', 'testkey') }}"
[consumer_config.ostree_refs."fedora/34/ppc64le/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-34', 'testkey') }}"
[consumer_config.ostree_refs."fedora/34/x86_64/updates/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-34', 'testkey') }}"
[consumer_config.ostree_refs."fedora/34/x86_64/testing/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-34', 'testkey') }}"
[consumer_config.ostree_refs."fedora/34/aarch64/updates/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-34', 'testkey') }}"
[consumer_config.ostree_refs."fedora/34/aarch64/testing/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-34', 'testkey') }}"
[consumer_config.ostree_refs."fedora/34/ppc64le/updates/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-34', 'testkey') }}"
[consumer_config.ostree_refs."fedora/34/ppc64le/testing/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-34', 'testkey') }}"
[consumer_config.ostree_refs."fedora/35/x86_64/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
[consumer_config.ostree_refs."fedora/35/aarch64/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
[consumer_config.ostree_refs."fedora/35/ppc64le/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
[consumer_config.ostree_refs."fedora/35/x86_64/updates/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
[consumer_config.ostree_refs."fedora/35/x86_64/testing/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
[consumer_config.ostree_refs."fedora/35/aarch64/updates/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
[consumer_config.ostree_refs."fedora/35/aarch64/testing/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
[consumer_config.ostree_refs."fedora/35/ppc64le/updates/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
[consumer_config.ostree_refs."fedora/35/ppc64le/testing/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
[consumer_config.ostree_refs."fedora/36/x86_64/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
[consumer_config.ostree_refs."fedora/36/aarch64/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
[consumer_config.ostree_refs."fedora/36/ppc64le/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
[consumer_config.ostree_refs."fedora/36/x86_64/updates/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
[consumer_config.ostree_refs."fedora/36/x86_64/testing/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
[consumer_config.ostree_refs."fedora/36/aarch64/updates/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
[consumer_config.ostree_refs."fedora/36/aarch64/testing/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
[consumer_config.ostree_refs."fedora/36/ppc64le/updates/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
[consumer_config.ostree_refs."fedora/36/ppc64le/testing/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
[consumer_config.ostree_refs."fedora/rawhide/aarch64/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-37', 'testkey') }}"
[consumer_config.ostree_refs."fedora/rawhide/ppc64le/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-37', 'testkey') }}"
[consumer_config.ostree_refs."fedora/rawhide/x86_64/silverblue"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-37', 'testkey') }}"
[consumer_config.ostree_refs."fedora/35/x86_64/kinoite"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
[consumer_config.ostree_refs."fedora/35/aarch64/kinoite"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
[consumer_config.ostree_refs."fedora/35/ppc64le/kinoite"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
[consumer_config.ostree_refs."fedora/35/x86_64/updates/kinoite"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
[consumer_config.ostree_refs."fedora/35/x86_64/testing/kinoite"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
[consumer_config.ostree_refs."fedora/35/aarch64/updates/kinoite"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
[consumer_config.ostree_refs."fedora/35/aarch64/testing/kinoite"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
[consumer_config.ostree_refs."fedora/35/ppc64le/updates/kinoite"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
[consumer_config.ostree_refs."fedora/35/ppc64le/testing/kinoite"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-35', 'testkey') }}"
[consumer_config.ostree_refs."fedora/36/x86_64/kinoite"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
[consumer_config.ostree_refs."fedora/36/aarch64/kinoite"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
[consumer_config.ostree_refs."fedora/36/ppc64le/kinoite"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
[consumer_config.ostree_refs."fedora/36/x86_64/updates/kinoite"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
[consumer_config.ostree_refs."fedora/36/x86_64/testing/kinoite"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
[consumer_config.ostree_refs."fedora/36/aarch64/updates/kinoite"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
[consumer_config.ostree_refs."fedora/36/aarch64/testing/kinoite"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
[consumer_config.ostree_refs."fedora/36/ppc64le/updates/kinoite"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
[consumer_config.ostree_refs."fedora/36/ppc64le/testing/kinoite"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-36', 'testkey') }}"
[consumer_config.ostree_refs."fedora/rawhide/aarch64/kinoite"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-37', 'testkey') }}"
[consumer_config.ostree_refs."fedora/rawhide/ppc64le/kinoite"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-37', 'testkey') }}"
[consumer_config.ostree_refs."fedora/rawhide/x86_64/kinoite"]
directory = "/mnt/fedora_koji/koji/compose/ostree/repo/"
key = "{{ (env == 'production')|ternary('fedora-37', 'testkey') }}"
[consumer_config.coreos]
bucket = "fcos-builds"
{% if env == "staging" %}
# Set key to 'testkey' because in staging we only have one key and
# detecting which key to use based on FCOS version numbers won't work.
key = "testkey"
{% endif %}
[consumer_config.coreos.aws]
access_key = "{{ fcos_builds_releng_aws_access_id }}"
access_secret = "{{ fcos_builds_releng_aws_secret_key }}"
region = "us-east-1"