Added a BUNCH of configs.

This commit is contained in:
2026-05-17 00:46:26 +02:00
parent 46e2494a6d
commit 292477d516
20 changed files with 22525 additions and 0 deletions
@@ -0,0 +1,12 @@
config:
modules:
redfish:
prober: http
timeout: 10s
http:
method: GET
tls_config:
insecure_skip_verify: true
preferred_ip_protocol: ip4
@@ -0,0 +1,13 @@
config:
modules:
icmp:
prober: icmp
timeout: 5s
icmp:
preferred_ip_protocol: ip4
http_2xx:
prober: http
timeout: 5s
http:
preferred_ip_protocol: ip4
@@ -0,0 +1,36 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: pve-exporter
namespace: monitoring
spec:
replicas: 1
selector:
matchLabels:
app: pve-exporter
template:
metadata:
labels:
app: pve-exporter
spec:
containers:
- name: pve-exporter
image: prompve/prometheus-pve-exporter:latest
ports:
- containerPort: 9221
envFrom:
- secretRef:
name: pve-exporter-secret
---
apiVersion: v1
kind: Service
metadata:
name: pve-exporter
namespace: monitoring
spec:
selector:
app: pve-exporter
ports:
- name: http
port: 9221
targetPort: 9221
@@ -0,0 +1,44 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: snmp-exporter-manual
namespace: monitoring
spec:
replicas: 1
selector:
matchLabels:
app: snmp-exporter-manual
template:
metadata:
labels:
app: snmp-exporter-manual
spec:
containers:
- name: snmp-exporter
image: quay.io/prometheus/snmp-exporter:v0.30.1
args:
- --config.file=/etc/snmp_exporter/snmp.yml
ports:
- name: http
containerPort: 9116
volumeMounts:
- name: snmp-config
mountPath: /etc/snmp_exporter/snmp.yml
subPath: snmp.yml
volumes:
- name: snmp-config
configMap:
name: snmp-exporter-config
---
apiVersion: v1
kind: Service
metadata:
name: snmp-exporter-manual
namespace: monitoring
spec:
selector:
app: snmp-exporter-manual
ports:
- name: http
port: 9116
targetPort: 9116
File diff suppressed because it is too large Load Diff