Files
JFrog-Cloud-Installers/Openshift4/helm/openshift-pipelines/charts/pipelines/templates/pipelines-system-yaml.yaml
2020-10-12 10:19:10 -07:00

14 lines
305 B
YAML

{{- if not .Values.existingSecret }}
apiVersion: v1
kind: Secret
metadata:
name: {{ include "pipelines.fullname" . }}-system-yaml
labels:
{{- include "pipelines.labels" . | nindent 4 }}
type: Opaque
data:
stringData:
system.yaml: |
{{ tpl .Values.pipelines.systemYaml . | indent 4 }}
{{- end }}