ansible/roles/nagios_server/templates/nagios/hosts/other.cfg.j2
Kevin Fenzi 467498bb8b retrace fixes: fix dns to work, add nagios check for ssl cert
Signed-off-by: Kevin Fenzi <kevin@scrye.com>
2022-02-20 13:52:35 -08:00

55 lines
1.7 KiB
Django/Jinja

define host {
host_name status
alias status.fedoraproject.org
use mincheck
address d6tcqd4og8l21.cloudfront.net
{% if vars['nagios_location'] == 'iad2_internal' %}
parents iad2-gw
{% else %}
parents ibiblio-gw
{% endif %}
}
define host {
host_name copr-be
alias download.copr.fedorainfracloud.org
use mincheck
address d1nld9ovj32u75.cloudfront.net
{% if vars['nagios_location'] == 'iad2_internal' %}
parents iad2-gw
{% else %}
parents ibiblio-gw
{% endif %}
}
define host {
host_name registry-cdn
alias cdn.registry.fedoraproject.org
use mincheck
address cdn.registry.fedoraproject.org
{% if vars['nagios_location'] == 'iad2_internal' %}
parents iad2-gw
{% else %}
parents ibiblio-gw
{% endif %}
}
define host {
host_name lists.fedoraproject.org
alias lists.fedoraproject.org
use mincheck
address lists.fedoraproject.org
{% if vars['nagios_location'] == 'iad2_internal' %}
parents iad2-gw
{% else %}
parents ibiblio-gw
{% endif %}
}
define host {
host_name retrace.fedoraproject.org
alias retrace.fedoraproject.org
use mincheck
address retrace.fedoraproject.org
parents iad2-gw
}