ansible/inventory/group_vars/osbs_aarch64_masters_stg
Kevin Fenzi 580cd252c5 Inventory group/host variables: Sort yaml
This was done using yq (
https://mikefarah.gitbook.io/yq/operators/sort-keys )

Doing things this way makes it much easier to see if a variable is set
in a file or if two hosts differ in what variables they set. Hopefully
we can keep things sorted moving forward.

Basically this means just sort a-z anything you add to any host or group
vaiable and it will be in the right place.

Additionally, this enforces 'normal' intent rules for all the variable
files which we should also try and obey. 2 spaces for first level, 3 for
next, etc. When in doubt you can run yq on it.

This should cause NO actual vairable changes, it's all just readability
fixing for humans, ansible parses it exactly the same.

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
2021-11-16 13:27:57 -08:00

42 lines
1.3 KiB
Text

---
# Define resources for this group of hosts here.
#Docker command delegated host
composer: compose-x86-01.stg.iad2.fedoraproject.org
docker_cert_dir: "/etc/docker/certs.d/candidate-registry.stg.fedoraproject.org"
docker_registry: "candidate-registry.stg.fedoraproject.org"
koji_url: "koji.stg.fedoraproject.org"
lvm_size: 60000
max_cpu: "{{ num_cpus }}"
max_mem_size: "{{ mem_size }}"
mem_size: 8192
# Nagios configuration
nagios_Check_Services:
dhcpd: false
httpd: false
named: false
nrpe: true
sshd: true
swap: false
num_cpus: 2
openshift_node_labels: {'region': 'infra'}
openshift_schedulable: False
osbs_client_conf_path: /etc/osbs.conf
osbs_conf_readwrite_users:
- "system:serviceaccount:{{ osbs_namespace }}:default"
- "system:serviceaccount:{{ osbs_namespace }}:builder"
osbs_conf_service_accounts:
- koji
- builder
osbs_conf_sources_command: fedpkg sources
osbs_namespace: "osbs-fedora"
osbs_orchestrator_cpu_limitrange: "95m"
osbs_orchestrator_default_nodeselector: "orchestrator=true"
osbs_url: "osbs.stg.fedoraproject.org"
osbs_worker_default_nodeselector: "worker=true"
osbs_worker_namespace: worker
osbs_worker_service_accounts:
- orchestrator
- builder
source_registry: "registry.stg.fedoraproject.org"
tcp_ports: [80, 443, 8443]
virt_install_command: "{{ virt_install_command_aarch64_one_nic_unsafe }}"