feat: create helm

This commit is contained in:
2025-09-29 00:11:21 +01:00
parent bd38c2de48
commit ccc30faed9
12 changed files with 518 additions and 1 deletions

View File

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