Release version 0.2.0

This commit is contained in:
Raffael H
2023-08-10 14:49:17 +02:00
parent d6a569fa0a
commit 68df02b47a
27 changed files with 123 additions and 9 deletions

View File

@@ -0,0 +1,32 @@
{{- define "pushgateway.deploy" }}
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app.kubernetes.io/name: pushgateway
name: pushgateway
spec:
selector:
matchLabels:
app.kubernetes.io/name: pushgateway
template:
metadata:
labels:
app.kubernetes.io/name: pushgateway
spec:
containers:
- name: pushgateway
image: quay.io/prometheus/pushgateway:v1.6.0
ports:
- containerPort: 9091
name: web
resources: {}
livenessProbe:
httpGet:
path: /-/healthy
port: web
readinessProbe:
httpGet:
path: /-/ready
port: web
{{- end }}