#!/usr/bin/env ansible-playbook # vim:ft=ansible: --- - hosts: tags_nagios-nrpe roles: - role: nrpe vars: nrpe_server_bind_address: 0.0.0.0 nrpe_server_allowed_hosts: - 127.0.0.0/24 # Local machines - 192.168.0.0/16 - 172.16.0.0/12 - 10.0.0.0/8 - 45.79.24.6/32 # web3.desu.ltd nrpe_plugin_packages: - monitoring-plugins - nagios-plugins-contrib nrpe_command: check_disk_all: script: check_disk option: -M -u GB -X nfs -X tracefs -X cgroup -X tmpfs -X overlay -X shm -w 20% -c 10% -W 20% -K 10% -A -I '^/run/' -I '^udev$' -I '^/var/lib/kubelet/' check_load: script: check_load option: -r -w 0.8,0.8,0.8 -c 1.0,0.9,0.9 check_swap: script: check_swap option: -w 20% -c 10% check_users: script: check_users option: -w 3 -c 5 tags: [ nrpe ] - hosts: all tasks: - name: disable nrped when not tagged systemd: name={{ item }} state=stopped enabled=no with_items: - nagios-nrpe-server.service when: "'tags_nagios-nrpe' not in group_names and item in services" tags: [ zerotier ]