mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-02-02 20:59:02 +08:00
This should update all the references we have to https://pagure.io/fedora-infrastructure to the new https://forge.fedoraproject.org/infra/tickets/ area. Do not merge this before the migration on tuesday. Signed-off-by: Kevin Fenzi <kevin@scrye.com>
21 lines
893 B
YAML
21 lines
893 B
YAML
# backend vars
|
|
---
|
|
resultsdb_image: "quay.io/factory2/resultsdb:{{ (env == 'production')|ternary('prod-fedora', 'latest') }}"
|
|
|
|
resultsdb_publish: true
|
|
resultsdb_mod_wsgi_dir: '${MOD_WSGI_MODULES_DIRECTORY}'
|
|
|
|
# For CRASHED see: https://pagure.io/task-abicheck/issue/19
|
|
# For QUEUED and RUNNING see: https://forge.fedoraproject.org/infra/tickets/8989
|
|
resultsdb_additional_result_outcomes: ['CRASHED', 'QUEUED', 'RUNNING']
|
|
|
|
# frontend vars
|
|
resultsdb_frontend_image: "quay.io/factory2/resultsdb_frontend:{{ (env == 'production')|ternary('prod-fedora', 'latest') }}"
|
|
resultsdb_frontend_api_url: 'http://resultsdb-api.resultsdb.svc.cluster.local:5001/api/v2.0'
|
|
|
|
# Database
|
|
resultsdb_db_user: "{{ (env == 'production')|ternary('prodresultsdbuser', 'stgresultsdb') }}"
|
|
resultsdb_db_host: db01{{ env_suffix }}.{{ datacenter }}.fedoraproject.org
|
|
resultsdb_db_port: 5432
|
|
resultsdb_db_name: resultsdb
|