freeleaps-ops/freeleaps-secret-operator/helm-pkg/secretOperator/templates/serviceaccount.yaml
zhenyus f1f48452a9 chore: remove deprecated Helm chart files for secret operator
- Deleted unused files including Chart.yaml, values.yaml, values.prod.yaml, and various templates related to the secret operator.
- This cleanup is part of the effort to streamline the Helm chart structure and remove obsolete configurations.

Signed-off-by: zhenyus <zhenyus@mathmast.com>
2025-08-18 12:42:43 +08:00

13 lines
356 B
YAML

{{- if .Values.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "freeleaps-secret-operator.serviceAccountName" . }}
labels:
{{- include "freeleaps-secret-operator.labels" . | nindent 4 }}
{{- with .Values.serviceAccount.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
{{- end }}