provider/build/chart/templates/serviceaccount.yaml
zhanghaogang 01fa705525
All checks were successful
Build image / build (push) Successful in 1m1s
feat: 更新Kubernetes chart配置
- 添加host-time和volume-shck44的volume配置
- 配置ingress规则,支持ht.timerzz.com/api/v2/providers路径
- 设置liveness和readiness探针
- 配置默认的ClusterIP服务
- 添加configMap挂载支持"
2025-03-13 13:30:03 +08:00

14 lines
385 B
YAML

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