mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-26 11:36:10 +08:00
In ansible 2.8 the - character isn't supposed to be valid in group names. While we could override this, might has well just bite the bullet and change it. So, just switch all group names to use _ instead of - Signed-off-by: Kevin Fenzi <kevin@scrye.com>
42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
---
|
|
# Define resources for this group of hosts here.
|
|
lvm_size: 8000
|
|
mem_size: 2048
|
|
num_cpus: 1
|
|
|
|
# for systems that do not match the above - specify the same parameter in
|
|
# the host_vars/$hostname file
|
|
|
|
koschei_topurl: https://apps.fedoraproject.org/koschei
|
|
koschei_pgsql_hostname: db01.phx2.fedoraproject.org
|
|
koschei_kojipkgs: kojipkgs.fedoraproject.org
|
|
koschei_koji_web: koji.fedoraproject.org
|
|
koschei_oidc_provider: id.fedoraproject.org
|
|
koschei_bugzilla: bugzilla.redhat.com
|
|
|
|
koschei_oidc_client_secret: "{{ koschei_oidc_client_secret_prod }}"
|
|
koschei_oidc_crypto_secret: "{{ koschei_oidc_crypto_secret_prod }}"
|
|
|
|
tcp_ports: [ 80, 443 ]
|
|
|
|
custom_rules: [
|
|
# Need for rsync from log01 for logs.
|
|
'-A INPUT -p tcp -m tcp -s 10.5.126.13 --dport 873 -j ACCEPT',
|
|
'-A INPUT -p tcp -m tcp -s 192.168.1.59 --dport 873 -j ACCEPT',
|
|
]
|
|
|
|
fas_client_groups: sysadmin-koschei,fi-apprentice,sysadmin-noc,sysadmin-veteran
|
|
|
|
freezes: false
|
|
|
|
# For the MOTD
|
|
csi_security_category: Low
|
|
csi_primary_contact: Fedora admins - admin@fedoraproject.org
|
|
csi_purpose: Koschei continuous integration system
|
|
csi_relationship: |
|
|
This machine depends on:
|
|
- PostgreSQL DB server
|
|
- Pagure API on dist-git
|
|
- bastion (for mail relay)
|
|
- memcached01
|