summaryrefslogtreecommitdiffstats
path: root/zones.d/master
diff options
context:
space:
mode:
authorTobias Wiese <tobias@tobiaswiese.com>2020-05-11 20:38:42 +0200
committerTobias Wiese <tobias@tobiaswiese.com>2020-05-11 20:38:42 +0200
commit0ca93dff41ff3a9889a5847ff0f854cf5cef1185 (patch)
tree6ac88c0d6125112a6b63d10d6e72861e60aead62 /zones.d/master
parent50be889b75116ae5b36ea9113e79649df16c6986 (diff)
service: basic node health
Check for basic node health including ping, disk and swap. Also check with the package manager, that the system is up to date. Signed-off-by: Tobias Wiese <tobias@tobiaswiese.com>
Diffstat (limited to 'zones.d/master')
-rw-r--r--zones.d/master/hosts.conf4
-rw-r--r--zones.d/master/services.conf34
2 files changed, 38 insertions, 0 deletions
diff --git a/zones.d/master/hosts.conf b/zones.d/master/hosts.conf
index 8a71c7e..567fdb7 100644
--- a/zones.d/master/hosts.conf
+++ b/zones.d/master/hosts.conf
@@ -3,4 +3,8 @@ object Host "new-babbage.server.tobiaswiese.net" {
address = "185.244.192.195"
address6 = "2a03:4000:27:5fc::1"
+
+ vars.os = "debian"
+ vars.os_family = "debian"
+ vars.kernel = "linux"
}
diff --git a/zones.d/master/services.conf b/zones.d/master/services.conf
new file mode 100644
index 0000000..25ca1c5
--- /dev/null
+++ b/zones.d/master/services.conf
@@ -0,0 +1,34 @@
+template Service "generic-network-service" {
+ import "generic-service"
+ zone = "master"
+}
+
+/**
+ * Basic node health checks
+ */
+
+apply Service "ping4" {
+ import "generic-network-service"
+
+ check_command = "ping4"
+
+ assign where host.address
+}
+
+apply Service "ping6" {
+ import "generic-network-service"
+
+ check_command = "ping6"
+
+ assign where host.address6
+}
+
+apply Service "ssh" {
+ import "generic-network-service"
+
+ check_command = "ssh"
+
+ vars.ssh_port = host.vars.ssh_port || 222
+
+ assign where (host.address || host.address6) && host.vars.kernel == "linux"
+}