aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/authentication/components/oauth2-proxy/templates/secret-alpha.yaml
blob: 15bb89338e17d98eb16dee7655fee5830b36fe43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{-
  if and
    .Values.alphaConfig.enabled
    (not .Values.alphaConfig.existingConfig)
    (not .Values.alphaConfig.existingSecret)
}}
apiVersion: v1
kind: Secret
metadata:
{{- if .Values.alphaConfig.annotations }}
  annotations: {{- toYaml .Values.alphaConfig.annotations | nindent 4 }}
{{- end }}
  labels:
    app: {{ template "oauth2-proxy.name" . }}
    {{- include "oauth2-proxy.labels" . | indent 4 }}
  name: {{ template "oauth2-proxy.fullname" . }}-alpha
  namespace: {{ template "oauth2-proxy.namespace" $ }}
data:
  oauth2_proxy.yml: {{ include "oauth2-proxy.alpha-config" . | b64enc | quote }}
{{- end }}