Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

service-account.yaml 496 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
  1. {{- if and .Values.serviceAccount.enabled .Values.serviceAccount.create }}
  2. apiVersion: v1
  3. kind: ServiceAccount
  4. automountServiceAccountToken: {{ .Values.serviceAccount.automountServiceAccountToken }}
  5. metadata:
  6. name: "{{ .Values.serviceAccount.name | default (include "name" .) }}"
  7. namespace: {{ .Release.Namespace }}
  8. labels: {{ include "labels.standard" . | nindent 4 }}
  9. {{- with .Values.serviceAccount.annotations }}
  10. annotations:
  11. {{- toYaml . | nindent 4 }}
  12. {{- end }}
  13. {{- end }}
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...