fix: (argo-rollouts) Add clusterInstall conditional around aggregate ClusterRoles (#484)

* add clusterinstall conditional around aggregate clusterroles

Signed-off-by: Casey Clark <casey.clark@jamf.com>

* bump chart version to 0.3.9

Signed-off-by: Casey Clark <casey.clark@jamf.com>

Co-authored-by: Scott Cabrinha <scott@internaught.io>
This commit is contained in:
caseyclarkjamf 2020-12-01 17:26:17 -06:00 committed by GitHub
parent 15a76e56d0
commit e7258346cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -2,7 +2,7 @@ apiVersion: v1
appVersion: "0.9.1"
description: A Helm chart for Argo Rollouts
name: argo-rollouts
version: 0.3.8
version: 0.3.9
icon: https://raw.githubusercontent.com/argoproj/argo/master/argo.png
home: https://github.com/argoproj/argo-helm
maintainers:

View file

@ -1,3 +1,4 @@
{{- if .Values.clusterInstall }}
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
@ -75,3 +76,4 @@ rules:
- patch
- update
- watch
{{- end }}