- 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>
13 lines
356 B
YAML
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 }}
|