Add namespaceResourceWhilelist to Projects (#336)
This commit is contained in:
parent
a265e8f59a
commit
e374150c36
3 changed files with 10 additions and 1 deletions
|
@ -2,7 +2,7 @@ apiVersion: v1
|
|||
appVersion: "1.5.4"
|
||||
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||
name: argo-cd
|
||||
version: 2.2.15
|
||||
version: 2.2.16
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
||||
keywords:
|
||||
|
|
|
@ -33,6 +33,10 @@ items:
|
|||
{{- if .namespaceResourceBlacklist }}
|
||||
namespaceResourceBlacklist:
|
||||
{{- toYaml .namespaceResourceBlacklist | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- if .namespaceResourceWhilelist }}
|
||||
namespaceResourceWhilelist:
|
||||
{{- toYaml .namespaceResourceWhilelist | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- if .orphanedResources }}
|
||||
orphanedResources:
|
||||
|
|
|
@ -555,6 +555,11 @@ server:
|
|||
# kind: NetworkPolicy
|
||||
# orphanedResources: {}
|
||||
# roles: []
|
||||
# namespaceResourceWhilelist:
|
||||
# - group: 'apps'
|
||||
# kind: Deployment
|
||||
# - group: 'apps'
|
||||
# kind: StatefulSet
|
||||
# orphanedResources: {}
|
||||
# roles: []
|
||||
|
||||
|
|
Loading…
Reference in a new issue