copr-be: start using Pulp certs also for STG

We still need to fix the base_url
This commit is contained in:
Jakub Kadlcik 2025-03-25 10:42:27 +01:00
parent 661ddacb55
commit 0fac971004

View file

@ -1,6 +1,9 @@
{% if env == "production" %}
[cli]
{% if env == "production" %}
base_url = "https://mtls.internal.console.redhat.com"
{% else %}
base_url = "https://pulp.stage.devshift.net"
{% endif %}
api_root = "/api/pulp/"
username = ""
password = ""
@ -12,18 +15,3 @@ format = "json"
dry_run = false
timeout = 0
verbose = 0
{% else %}
[cli]
base_url = "https://pulp.stage.devshift.net"
api_root = "/api/pulp/"
username = "copr"
password = "{{ copr_hosted_pulp_dev_password }}"
domain = "copr"
cert = ""
key = ""
verify_ssl = false
format = "json"
dry_run = false
timeout = 0
verbose = 0
{% endif %}