fixing var typos

This commit is contained in:
Leonardo Rossetti 2022-03-29 16:00:07 -03:00
parent 71e9eaf29c
commit c7c518d452
No known key found for this signature in database
GPG key ID: A073363F751EEE2B
2 changed files with 4 additions and 4 deletions

View file

@ -9,9 +9,9 @@ data:
settings.py: |-
import os
{% if env == 'staging' %}
RDB_URL = '{{ stg_resultsdb_frontent_api_url }}'
RDB_URL = '{{ stg_resultsdb_frontend_api_url }}'
{% else %}
RDB_URL = '{{ prod_resultsdb_frontent_api_url }}'
RDB_URL = '{{ prod_resultsdb_frontend_api_url }}'
{% endif %}
SECRET_KEY = os.environ['RESULTSDB_FRONTEND_SECRET_KEY']

View file

@ -1,5 +1,5 @@
---
stg_resultsdb_frontend_image: 'quay.io/fedora-kube-sig/resultsdb:latest'
prod_resultsdb_frontend_image: 'quay.io/fedora-kube-sig/resultsdb:latest'
prod_resultsdb_frontent_api_url: 'https://resultsdb.fedoraproject.org/'
stg_resultsdb_frontent_api_url: 'https://resultsdb.stg.fedoraproject.org/'
prod_resultsdb_frontend_api_url: 'https://resultsdb.fedoraproject.org/'
stg_resultsdb_frontend_api_url: 'https://resultsdb.stg.fedoraproject.org/'