13 lines
345 B
YAML
13 lines
345 B
YAML
|
{{- if .Values.hub.serviceAccount.create -}}
|
||
|
apiVersion: v1
|
||
|
kind: ServiceAccount
|
||
|
metadata:
|
||
|
name: {{ include "jupyterhub.hub-serviceaccount.fullname" . }}
|
||
|
{{- with .Values.hub.serviceAccount.annotations }}
|
||
|
annotations:
|
||
|
{{- . | toYaml | nindent 4 }}
|
||
|
{{- end }}
|
||
|
labels:
|
||
|
{{- include "jupyterhub.labels" . | nindent 4 }}
|
||
|
{{- end }}
|