aboutsummaryrefslogtreecommitdiff
path: root/personal_infra/puppet/site/nagios.h1.int.pdp7.net.pp
blob: 32e28f06864949b6e3d533c5917a63026ad575c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
node 'nagios.h1.int.pdp7.net' {
  class {'nagios':}
  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':}
}