aboutsummaryrefslogtreecommitdiff
path: root/personal_infra/puppet/site/nagios.h1.int.pdp7.net.pp
blob: 262b8026eaa6404cf87fda2636ae1289f66240f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
node 'nagios.h1.int.pdp7.net' {
  class {'nagios':
    otel_host => 'clickhouse.h1.int.pdp7.net',
  }
  class {'nagios::k8s':}

  $k8s_hosts = lookup("groups.k8s")

  $k8s_hosts.each |String $k8s_host| {
    nagios_host {$k8s_host:
      use => 'generic-host',
      max_check_attempts => 5,
      contact_groups => 'admins',
      hostgroups => 'k8s',
      check_command => 'check-host-alive',
    }
  }

  package {'nagios-plugins-pgsql':}
}