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
|
name: argocd-apps
|
||||||
description: A Helm chart for managing additional Argo CD Applications and Projects
|
description: A Helm chart for managing additional Argo CD Applications and Projects
|
||||||
type: application
|
type: application
|
||||||
version: 1.2.0
|
version: 1.3.0
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
@ -18,4 +18,4 @@ annotations:
|
||||||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: added
|
- kind: added
|
||||||
description: Rollout strategy for ApplicationSet
|
description: add permitOnlyProjectScopedClusters flag to Projects defaulting to false
|
||||||
|
|
|
@ -22,6 +22,9 @@ metadata:
|
||||||
{{- toYaml . | nindent 4 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
spec:
|
spec:
|
||||||
|
{{- with .permitOnlyProjectScopedClusters }}
|
||||||
|
permitOnlyProjectScopedClusters: {{ . }}
|
||||||
|
{{- end }}
|
||||||
description: {{ .description }}
|
description: {{ .description }}
|
||||||
{{- with .sourceRepos }}
|
{{- with .sourceRepos }}
|
||||||
sourceRepos:
|
sourceRepos:
|
||||||
|
|
|
@ -48,6 +48,7 @@ projects: []
|
||||||
# namespace: argocd
|
# namespace: argocd
|
||||||
# additionalLabels: {}
|
# additionalLabels: {}
|
||||||
# additionalAnnotations: {}
|
# additionalAnnotations: {}
|
||||||
|
# permitOnlyProjectScopedClusters: false
|
||||||
# finalizers:
|
# finalizers:
|
||||||
# - resources-finalizer.argocd.argoproj.io
|
# - resources-finalizer.argocd.argoproj.io
|
||||||
# description: Example Project
|
# description: Example Project
|
||||||
|
|
Loading…
Reference in a new issue