mirror of
https://github.com/ZwareBear/JFrog-Cloud-Installers.git
synced 2026-01-21 13:06:57 -06:00
14 lines
305 B
YAML
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 }}
|