aboutsummaryrefslogtreecommitdiffstats
path: root/roles/nagios_client
diff options
context:
space:
mode:
authorStonewall Jackson <stonewall@sacredheartsc.com>2023-02-14 20:22:16 -0500
committerStonewall Jackson <stonewall@sacredheartsc.com>2023-02-14 20:22:16 -0500
commit363f9bfadf52fed2e83ea22f506758c26163ac5b (patch)
tree43b05e188a738ea6d65766d0c471d55676d5d1b0 /roles/nagios_client
parent7041d5bf05a843566950475d7e2652308535c94c (diff)
downloadselfhosted-363f9bfadf52fed2e83ea22f506758c26163ac5b.tar.gz
selfhosted-363f9bfadf52fed2e83ea22f506758c26163ac5b.zip
add docs for invidious, nagios
Diffstat (limited to 'roles/nagios_client')
-rw-r--r--roles/nagios_client/README.md32
1 files changed, 32 insertions, 0 deletions
diff --git a/roles/nagios_client/README.md b/roles/nagios_client/README.md
new file mode 100644
index 0000000..fffa1bb
--- /dev/null
+++ b/roles/nagios_client/README.md
@@ -0,0 +1,32 @@
+Nagios Client
+=============
+
+Description
+-----------
+
+The `nagios_client` role creates the `nagios` user and installs Nagios plugins.
+
+
+Variables
+---------
+
+This role **accepts** the following variables:
+
+Variable | Default | Description
+---------------------------------|-----------|------------
+`nagios_ssh_pubkey` | &nbsp; | SSH public key for `nagios` user
+
+
+Usage
+-----
+
+Example playbook:
+
+````yaml
+- hosts: all
+ roles:
+ - role: nagios_client
+ vars:
+ nagios_ssh_pubkey: |
+ ssh-ed25519 AAAA...
+````