1
0
Fork 0
forked from infra/ansible

copr: configure SENTRY_DSN

This commit is contained in:
Jakub Kadlcik 2026-04-20 15:00:49 +02:00
commit f1fdd141c7
3 changed files with 13 additions and 0 deletions

View file

@ -114,6 +114,11 @@ pulp_content_url={{ pulp_content_url }}
# praiskup
{% if env == 'production' %}
sentry_dsn={{ copr_sentry_dsn }}
{% endif %}
[builder]
# default is 1800, this probably has no effect!
timeout=108000

View file

@ -12,3 +12,6 @@ gitolite = False
# name of the default branch (a.k.a. master or main)
default_branch = master
{% if env == 'production' %}
sentry_dsn={{ copr_sentry_dsn }}
{% endif %}

View file

@ -321,3 +321,8 @@ OIDC_METADATA = "https://id.fedoraproject.org/openidc/.well-known/openid-configu
OIDC_SECRET = "{{ copr_oidc_stg_client_secret }}"
OIDC_METADATA = "https://id.stg.fedoraproject.org/openidc/.well-known/openid-configuration"
{% endif %}
{% if env == 'production' %}
SENTRY_DSN={{ copr_sentry_dsn }}
{% endif %}