Ansible Monitoring Readme

Contents

Abstract

Readme providing basic usage for the standard monitoring package used by the author for systesms on his network.

Ansible Monitoring Readme#

Assumptions#

The default configuration assumes a vault password exists at /etc/ansible/vault. It also assumes the inventory file is in YAML format and located at /etc/ansible/hosts.yml

Usage#

You can find an example inventory file below, this inventory is intended to house a bare metal Kubernetes cluster with a single control plane and three nodes. This inventory is an example only and does not represent any actual resources.

/etc/ansible/hosts.yaml#
all:
  hosts:
    kcp01.example.com:
      ansible_user: user
    k8s01.example.com:
      ansible_user: user
    k8s02.example.com:
      ansible_user: user
    k8s02.example.com:
      ansible_user: user
kcp:
  hosts:
    kcp01.example.com:
      ansible_user: user
kcp:
  hosts:
    kcp01.example.com:
      ansible_user: user
    kcp02.example.com:
      ansible_user: user
    kcp03.example.com:
      ansible_user: user