feat(argocd-apps): add permitOnlyProjectScopedClusters flag (#2149)
Signed-off-by: Fabián Sellés Rosa <1088313+Fsero@users.noreply.github.com>
This commit is contained in:
parent
2fb6049751
commit
047ba6b24d
3 changed files with 6 additions and 2 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
|||
name: argocd-apps
|
||||
description: A Helm chart for managing additional Argo CD Applications and Projects
|
||||
type: application
|
||||
version: 1.2.0
|
||||
version: 1.3.0
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||
keywords:
|
||||
|
@ -18,4 +18,4 @@ annotations:
|
|||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||
artifacthub.io/changes: |
|
||||
- kind: added
|
||||
description: Rollout strategy for ApplicationSet
|
||||
description: add permitOnlyProjectScopedClusters flag to Projects defaulting to false
|
||||
|
|
|
@ -22,6 +22,9 @@ metadata:
|
|||
{{- toYaml . | nindent 4 }}
|
||||
{{- end }}
|
||||
spec:
|
||||
{{- with .permitOnlyProjectScopedClusters }}
|
||||
permitOnlyProjectScopedClusters: {{ . }}
|
||||
{{- end }}
|
||||
description: {{ .description }}
|
||||
{{- with .sourceRepos }}
|
||||
sourceRepos:
|
||||
|
|
|
@ -48,6 +48,7 @@ projects: []
|
|||
# namespace: argocd
|
||||
# additionalLabels: {}
|
||||
# additionalAnnotations: {}
|
||||
# permitOnlyProjectScopedClusters: false
|
||||
# finalizers:
|
||||
# - resources-finalizer.argocd.argoproj.io
|
||||
# description: Example Project
|
||||
|
|
Loading…
Reference in a new issue