17 lines
523 B
YAML
17 lines
523 B
YAML
{{- if .Values.global.acls.manageSystemACLs }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ template "consul.fullname" . }}-auth-method
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
app: {{ template "consul.name" . }}
|
|
chart: {{ template "consul.chart" . }}
|
|
heritage: {{ .Release.Service }}
|
|
release: {{ .Release.Name }}
|
|
component: auth-method
|
|
annotations:
|
|
kubernetes.io/service-account.name: {{ template "consul.fullname" . }}-auth-method
|
|
type: kubernetes.io/service-account-token
|
|
{{- end }}
|