kube/prometheus-operator
Lauri Võsandi 4686108f42 Switch to wildcard *.k-space.ee certificate 2022-10-14 14:32:36 +03:00
..
README.md prometheus-operator: Fix Alertmanager integration 2022-09-20 12:22:49 +03:00
application.yml Switch to wildcard *.k-space.ee certificate 2022-10-14 14:32:36 +03:00
blackbox-exporter.yml prometheus-operator: Bump blackbox exporter replica count to 3 2022-10-04 10:11:53 +03:00
bundle.yml Migrate to Prometheus Operator 2022-09-11 16:38:16 +03:00
mikrotik-exporter.yml Migrate to Prometheus Operator 2022-09-11 16:38:16 +03:00
node-exporter.yml prometheus-operator: Specify priorityClassName: system-node-critical for node-exporters 2022-09-28 10:33:44 +03:00
snmp-exporter.yml prometheus-operator: Remove pulled UPS-es 2022-10-03 10:04:24 +03:00
snmp.yml prometheus-operator: Fix SNMP for older HP printers 2022-09-20 23:26:09 +03:00

README.md

Prometheus operator

curl -L https://github.com/prometheus-operator/prometheus-operator/releases/download/v0.59.0/bundle.yaml | sed -e 's/namespace: default/namespace: prometheus-operator/g' > bundle.yml
kubectl create namespace prometheus-operator
kubectl apply --server-side -n prometheus-operator -f bundle.yml
kubectl delete -n prometheus-operator configmap snmp-exporter
kubectl create -n prometheus-operator configmap snmp-exporter --from-file=snmp.yml
kubectl apply -n prometheus-operator -f application.yml -f node-exporter.yml -f blackbox-exporter.yml -f snmp-exporter.yml -f mikrotik-exporter.yml

Slack

 kubectl create -n prometheus-operator secret generic slack-secrets \
    --from-literal=webhook-url=https://hooks.slack.com/services/...

Mikrotik exporter

 kubectl create -n prometheus-operator secret generic mikrotik-exporter \
  --from-literal=MIKROTIK_PASSWORD='f7W!H*Pu' \
  --from-literal=PROMETHEUS_BEARER_TOKEN=$(cat /dev/urandom | base64 | head -c 30)