63 lines
1.4 KiB
YAML
63 lines
1.4 KiB
YAML
![]() |
{{- range .Values.projects }}
|
||
|
---
|
||
|
apiVersion: argoproj.io/v1alpha1
|
||
|
kind: AppProject
|
||
|
metadata:
|
||
|
{{- with .additionalAnnotations }}
|
||
|
annotations:
|
||
|
{{- range $key, $value := . }}
|
||
|
{{ $key }}: {{ $value | quote }}
|
||
|
{{- end }}
|
||
|
{{- end }}
|
||
|
{{- with .additionalLabels }}
|
||
|
labels:
|
||
|
{{- toYaml . | nindent 4 }}
|
||
|
{{- end }}
|
||
|
name: {{ .name }}
|
||
|
{{- with .namespace }}
|
||
|
namespace: {{ . }}
|
||
|
{{- end }}
|
||
|
{{- with .finalizers }}
|
||
|
finalizers:
|
||
|
{{- toYaml . | nindent 4 }}
|
||
|
{{- end }}
|
||
|
spec:
|
||
|
description: {{ .description }}
|
||
|
sourceRepos:
|
||
|
{{- toYaml .sourceRepos | nindent 4 }}
|
||
|
destinations:
|
||
|
{{- toYaml .destinations | nindent 4 }}
|
||
|
{{- with .clusterResourceWhitelist }}
|
||
|
clusterResourceWhitelist:
|
||
|
{{- toYaml . | nindent 4 }}
|
||
|
{{- end }}
|
||
|
{{- with .clusterResourceBlacklist }}
|
||
|
clusterResourceBlacklist:
|
||
|
{{- toYaml . | nindent 4 }}
|
||
|
{{- end }}
|
||
|
{{- with .namespaceResourceBlacklist }}
|
||
|
namespaceResourceBlacklist:
|
||
|
{{- toYaml . | nindent 4 }}
|
||
|
{{- end }}
|
||
|
{{- with .namespaceResourceWhitelist }}
|
||
|
namespaceResourceWhitelist:
|
||
|
{{- toYaml . | nindent 4 }}
|
||
|
{{- end }}
|
||
|
{{- with .orphanedResources }}
|
||
|
orphanedResources:
|
||
|
{{- toYaml . | nindent 4 }}
|
||
|
{{- end }}
|
||
|
{{- with .roles }}
|
||
|
roles:
|
||
|
{{- toYaml . | nindent 4 }}
|
||
|
{{- end }}
|
||
|
{{- with .syncWindows }}
|
||
|
syncWindows:
|
||
|
{{- toYaml . | nindent 4 }}
|
||
|
{{- end }}
|
||
|
{{- with .signatureKeys }}
|
||
|
signatureKeys:
|
||
|
{{- toYaml . | nindent 4 }}
|
||
|
{{- end }}
|
||
|
{{- end }}
|