1
0
Fork 0

feat: add helm chart for deployment to k8s

This commit is contained in:
Vojtěch Mareš 2024-06-24 08:44:41 +02:00
parent 917376899c
commit bb1a9403bb
Signed by: vojtech.mares
GPG key ID: C6827B976F17240D
14 changed files with 218 additions and 1 deletions

View file

@ -0,0 +1,11 @@
apiVersion: policy/v1
kind: PodDisruptionBudget
metadata:
name: {{ .Release.Name }}
spec:
minAvailable: 1
selector:
matchLabels:
app.kubernetes.io/name: {{ .Chart.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/component: "backend-api"