14 lines
424 B
YAML
14 lines
424 B
YAML
# This template only exists to facilitate CI testing of the chart, since
|
|
# a secret is expected to be found in the namespace by the controller manager
|
|
{{ if .Values.createDummySecret -}}
|
|
apiVersion: v1
|
|
data:
|
|
github_token: dGVzdA==
|
|
kind: Secret
|
|
metadata:
|
|
name: controller-manager
|
|
{{- if .Values.authSecret.annotations }}
|
|
annotations:
|
|
{{ toYaml .Values.authSecret.annotations | nindent 4 }}
|
|
{{- end }}
|
|
{{- end }} |