forked from argoproj/argo-helm
fix: Fix typo in namespaceResourceWhitelist (#337)
* Fix typo in namespaceResourceWhitelist * chore: bumping minor version as technically a breaking changemain
parent
e374150c36
commit
e0a49d914d
|
@ -2,7 +2,7 @@ apiVersion: v1
|
||||||
appVersion: "1.5.4"
|
appVersion: "1.5.4"
|
||||||
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||||
name: argo-cd
|
name: argo-cd
|
||||||
version: 2.2.16
|
version: 2.3.0
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
|
|
@ -34,9 +34,9 @@ items:
|
||||||
namespaceResourceBlacklist:
|
namespaceResourceBlacklist:
|
||||||
{{- toYaml .namespaceResourceBlacklist | nindent 8 }}
|
{{- toYaml .namespaceResourceBlacklist | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .namespaceResourceWhilelist }}
|
{{- if .namespaceResourceWhitelist }}
|
||||||
namespaceResourceWhilelist:
|
namespaceResourceWhitelist:
|
||||||
{{- toYaml .namespaceResourceWhilelist | nindent 8 }}
|
{{- toYaml .namespaceResourceWhitelist | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .orphanedResources }}
|
{{- if .orphanedResources }}
|
||||||
orphanedResources:
|
orphanedResources:
|
||||||
|
|
|
@ -555,7 +555,7 @@ server:
|
||||||
# kind: NetworkPolicy
|
# kind: NetworkPolicy
|
||||||
# orphanedResources: {}
|
# orphanedResources: {}
|
||||||
# roles: []
|
# roles: []
|
||||||
# namespaceResourceWhilelist:
|
# namespaceResourceWhitelist:
|
||||||
# - group: 'apps'
|
# - group: 'apps'
|
||||||
# kind: Deployment
|
# kind: Deployment
|
||||||
# - group: 'apps'
|
# - group: 'apps'
|
||||||
|
|
Loading…
Reference in New Issue