add helm chart with readiness endpoint

This commit is contained in:
2024-09-29 17:54:23 +02:00
parent 570d2acf78
commit 2bdebd9014
15 changed files with 488 additions and 5 deletions

View File

@@ -0,0 +1,13 @@
{{- if .Values.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "webapp.serviceAccountName" . }}
labels:
{{- include "webapp.labels" . | nindent 4 }}
{{- with .Values.serviceAccount.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
automountServiceAccountToken: {{ .Values.serviceAccount.automount }}
{{- end }}