Puppet Class: loki
- Defined in:
-
manifests/init.pp
Summary
Set up system for loki/promtail
Overview
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# File 'manifests/init.pp', line 2
class loki (
) {
if $facts['os']['family'] =~ /(Debian|Ubuntu)/ {
apt::key { 'loki':
id => '0E22EB88E39E12277A7760AE9E439B102CF3C0C6',
source => 'https://apt.grafana.com/gpg-full.key',
server => 'keyserver.ubuntu.com',
options => '',
}
-> apt::source { 'loki':
location => 'https://apt.grafana.com',
release => 'stable',
repos => 'main',
}
}
}
|