mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-02-02 20:59:02 +08:00
ResultsDB frontend and backend image builds where moved to Konflux. See also the discussion in PR: https://github.com/release-engineering/resultsdb_frontend/pull/17
27 lines
1.1 KiB
YAML
27 lines
1.1 KiB
YAML
# backend vars
|
|
---
|
|
resultsdb_image_tag: >-
|
|
{{ 'prod-fedora' if env == 'production' else 'latest' }}
|
|
resultsdb_image: >-
|
|
quay.io/redhat-user-workloads/exd-sp-rhel-wf-tenant/resultsdb:{{ resultsdb_image_tag }}
|
|
|
|
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_tag: >-
|
|
{{ 'prod-fedora' if env == 'production' else 'latest' }}
|
|
resultsdb_frontend_image: >-
|
|
quay.io/redhat-user-workloads/exd-sp-rhel-wf-tenant/resultsdb-frontend:{{ resultsdb_frontend_image_tag }}
|
|
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
|