mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-19 19:46:38 +08:00
Compare commits
4 Commits
e4123e7a7c
...
0d56b527a6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0d56b527a6 | ||
|
|
96be99434e | ||
|
|
b80627f26a | ||
|
|
8015bf47c7 |
@@ -84,6 +84,25 @@
|
||||
- config
|
||||
- anubis
|
||||
|
||||
- name: Set SELinux context for anubis directory
|
||||
community.general.sefcontext:
|
||||
target: "/srv/anubis(/.*)?"
|
||||
setype: container_file_t
|
||||
state: present
|
||||
tags:
|
||||
- config
|
||||
- anubis
|
||||
- selinux
|
||||
|
||||
- name: Apply SELinux changes to anubis directory
|
||||
ansible.builtin.command: restorecon -irv "/srv/anubis/"
|
||||
register: restorecon_output
|
||||
changed_when: restorecon_output.stdout is defined and restorecon_output.stdout | length > 0
|
||||
tags:
|
||||
- config
|
||||
- anubis
|
||||
- selinux
|
||||
|
||||
# This service calls podman to pull the anubis container,
|
||||
# then sets various env variables for the service and runs it.
|
||||
|
||||
|
||||
@@ -294,6 +294,10 @@ USAGE_TREEMAP_TEAMS = {
|
||||
"Python-team": ["@python", "thrnciar", "torsava", "encukou", "cstratak", "churchyard"],
|
||||
}
|
||||
|
||||
# What storage should be set for new projects.
|
||||
# Possible options are "backend" and "pulp"
|
||||
DEFAULT_STORAGE = "pulp"
|
||||
|
||||
PULP_CONTENT_URL = '{{ backend_base_url }}/results/'
|
||||
|
||||
|
||||
|
||||
@@ -11,6 +11,8 @@ topic_prefix = "org.fedoraproject.stg"
|
||||
topic_prefix = "org.fedoraproject.prod"
|
||||
{% endif %}
|
||||
|
||||
publish_exchange = "amq.topic"
|
||||
|
||||
[tls]
|
||||
ca_cert = "/etc/pki/rabbitmq/pagurecert/src.fp.o.ca"
|
||||
keyfile = "/etc/pki/rabbitmq/pagurecert/src.fp.o.key"
|
||||
|
||||
@@ -13,8 +13,8 @@ spec:
|
||||
{% if env == 'staging' %}
|
||||
# The latest successful build of master that passes tests
|
||||
# is auto-tagged here.
|
||||
name: quay.io/factory2/greenwave:latest
|
||||
name: quay.io/redhat-user-workloads/exd-sp-rhel-wf-tenant/greenwave:latest
|
||||
{% else %}
|
||||
# This is 'prod' tag is maintained by hand.
|
||||
name: quay.io/factory2/greenwave:prod-fedora
|
||||
name: quay.io/redhat-user-workloads/exd-sp-rhel-wf-tenant/greenwave:prod-fedora
|
||||
{% endif %}
|
||||
|
||||
@@ -13,8 +13,8 @@ spec:
|
||||
{% if env == 'staging' %}
|
||||
# The latest successful build of master that passes tests
|
||||
# is auto-tagged here.
|
||||
name: quay.io/factory2/waiverdb:latest
|
||||
name: quay.io/redhat-user-workloads/exd-sp-rhel-wf-tenant/waiverdb:latest
|
||||
{% else %}
|
||||
# This is 'prod' tag is maintained by hand.
|
||||
name: quay.io/factory2/waiverdb:prod-fedora
|
||||
name: quay.io/redhat-user-workloads/exd-sp-rhel-wf-tenant/waiverdb:prod-fedora
|
||||
{% endif %}
|
||||
|
||||
Reference in New Issue
Block a user