feat(argocd-apps): Support sourceNamespaces for AppProject (#1698)
Signed-off-by: yu-croco <yu.croco@gmail.com>pull/1700/head argocd-apps-0.0.5
parent
bd7dc0bddf
commit
f5c5c141c5
|
@ -2,7 +2,7 @@ apiVersion: v2
|
|||
name: argocd-apps
|
||||
description: A Helm chart for managing additional Argo CD Applications and Projects
|
||||
type: application
|
||||
version: 0.0.4
|
||||
version: 0.0.5
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||
keywords:
|
||||
|
@ -14,4 +14,4 @@ maintainers:
|
|||
url: https://argoproj.github.io/
|
||||
annotations:
|
||||
artifacthub.io/changes: |
|
||||
- "[Changed]: Projects templates"
|
||||
- "[Added]: Support sourceNamespaces for AppProject"
|
||||
|
|
|
@ -63,4 +63,8 @@ spec:
|
|||
signatureKeys:
|
||||
{{- toYaml . | nindent 4 }}
|
||||
{{- end }}
|
||||
{{- with .sourceNamespaces }}
|
||||
sourceNamespaces:
|
||||
{{- toYaml . | nindent 4 }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
|
|
|
@ -74,6 +74,8 @@ projects: []
|
|||
# manualSync: true
|
||||
# signatureKeys:
|
||||
# - keyID: ABCDEF1234567890
|
||||
# sourceNamespaces:
|
||||
# - argocd
|
||||
|
||||
# -- Deploy Argo CD ApplicationSets within this helm release
|
||||
# @default -- `[]` (See [values.yaml])
|
||||
|
|
Loading…
Reference in New Issue