mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-19 19:46:38 +08:00
28 lines
772 B
INI
28 lines
772 B
INI
[autocloud]
|
|
{% if env == 'staging' %}
|
|
koji_server_url = http://koji.stg.fedoraproject.org/kojihub/
|
|
base_koji_task_url = https://kojipkgs.stg.fedoraproject.org//work/
|
|
{% else %}
|
|
koji_server_url = http://koji.fedoraproject.org/kojihub/
|
|
base_koji_task_url = https://kojipkgs.fedoraproject.org//work/
|
|
{% endif %}
|
|
|
|
debug = false
|
|
# These are required, but are ignored.
|
|
host = 0.0.0.0
|
|
port = 5000
|
|
|
|
{% if autocloud_specialization == 'virtualbox' %}
|
|
virtualbox = true
|
|
{% else %}
|
|
# Presumably, this host is doing libvirt instead of virtualbox.
|
|
virtualbox = false
|
|
{% endif %}
|
|
|
|
[sqlalchemy]
|
|
{% if env == 'staging' %}
|
|
uri = postgres://autocloud:{{autocloud_db_password_stg}}@db01.stg/autocloud
|
|
{% else %}
|
|
uri = postgres://autocloud:{{autocloud_db_password}}@db01/autocloud
|
|
{% endif %}
|