13 lines
413 B
YAML
13 lines
413 B
YAML
# Here we create a service account with no privileges to run the
|
|
# deployment - just in case the default service account is different.
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: {{ include "cloudflare-tunnel.fullname" . }}
|
|
labels:
|
|
{{- include "cloudflare-tunnel.labels" . | nindent 4 }}
|
|
{{- with .Values.serviceAccount.annotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|