Create helm chart

This commit is contained in:
2025-09-13 11:59:25 +02:00
commit 1af3889d4e
8 changed files with 304 additions and 0 deletions

View File

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