move fail2ban-exporter-deployment to core-deployments
All checks were successful
ci/woodpecker/push/yamllint Pipeline was successful
All checks were successful
ci/woodpecker/push/yamllint Pipeline was successful
This commit is contained in:
parent
01bae052c9
commit
2dc2c7e548
8 changed files with 251 additions and 0 deletions
56
fail2ban-exporter/daemonset.yaml
Normal file
56
fail2ban-exporter/daemonset.yaml
Normal file
|
@ -0,0 +1,56 @@
|
|||
---
|
||||
apiVersion: apps/v1
|
||||
kind: DaemonSet
|
||||
metadata:
|
||||
labels:
|
||||
app: fail2ban-prometheus-exporter
|
||||
app.kubernetes.io/instance: fail2ban-prometheus
|
||||
app.kubernetes.io/name: fail2ban-prometheus-exporter
|
||||
name: fail2ban-prometheus-exporter
|
||||
namespace: fail2ban-prometheus
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
app: fail2ban-prometheus-exporter
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: fail2ban-prometheus-exporter
|
||||
app.kubernetes.io/instance: fail2ban
|
||||
app.kubernetes.io/name: fail2ban-prometheus-exporter
|
||||
spec:
|
||||
containers:
|
||||
- env:
|
||||
- name: F2B_GEOIP_SERVICE
|
||||
value: fail2ban-geoip
|
||||
image: git.ar21.de/yolokube/fail2ban-prometheus-exporter:latest
|
||||
imagePullPolicy: IfNotPresent
|
||||
name: fail2ban-prometheus-exporter
|
||||
ports:
|
||||
- containerPort: 9191
|
||||
name: http-metrics
|
||||
protocol: TCP
|
||||
resources:
|
||||
limits:
|
||||
cpu: 800m
|
||||
memory: 128Mi
|
||||
requests:
|
||||
cpu: 200m
|
||||
memory: 32Mi
|
||||
volumeMounts:
|
||||
- mountPath: /var/run/fail2ban/fail2ban.sock
|
||||
name: fail2ban
|
||||
readOnly: true
|
||||
serviceAccountName: fail2ban-prometheus-exporter-service-account
|
||||
tolerations:
|
||||
- effect: NoSchedule
|
||||
key: node-role.kubernetes.io/master
|
||||
operator: Exists
|
||||
- effect: NoSchedule
|
||||
key: node-role.kubernetes.io/control-plane
|
||||
operator: Exists
|
||||
volumes:
|
||||
- hostPath:
|
||||
path: /var/run/fail2ban/fail2ban.sock
|
||||
type: ""
|
||||
name: fail2ban
|
Loading…
Add table
Add a link
Reference in a new issue