Puppet Class: unpoller

Defined in:
manifests/init.pp

Summary

Install unpoller service

Overview

Parameters:

  • loki_url (String)

    sets the URL for the Loki instance

  • loki_user (String)

    sets the username for Loki auth

  • loki_password (String)

    sets the password for Loki auth

  • unifi_url (String)

    sets the URL for the Unifi instance

  • unifi_user (String)

    sets the username for Unifi auth

  • unifi_password (String)

    sets the password for Unifi auth



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'manifests/init.pp', line 9

class unpoller (
  String $loki_url,
  String $loki_user,
  String $loki_password,
  String $unifi_url,
  String $unifi_user,
  String $unifi_password,
) {
  file { '/etc/unpoller.conf':
    ensure  => file,
    content => template('unpoller/unpoller.conf.erb'),
  }

  ~> docker::container { 'unpoller':
    image => 'ghcr.io/unpoller/unpoller:latest',
    args  => [
      '-v /etc/unpoller.conf:/etc/unpoller/up.conf',
    ],
    cmd   => '',
  }

  firewall { '100 allow prometheus unpoller metrics':
    source => $prometheus::server_ip,
    dport  => 9130,
    proto  => 'tcp',
    action => 'accept',
  }
}