inital commit

This commit is contained in:
domrichardson
2026-03-20 14:53:29 +00:00
commit b7f0e8383f
12 changed files with 433 additions and 0 deletions

View File

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