Apply suggestions from code review

Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
This commit is contained in:
Marco Kilchhofer 2021-08-10 11:28:54 +02:00 committed by Hui Kang
parent 6a72cc9ea1
commit f8d3f4dccc
5 changed files with 4 additions and 3 deletions

View file

View file

@ -4,6 +4,7 @@ description: A Helm chart for Argo Rollouts
name: argo-rollouts
version: 1.1.0
icon: https://argoproj.github.io/argo-rollouts/assets/logo.png
)
home: https://github.com/argoproj/argo-helm
maintainers:
- name: alexmt

View file

@ -1,4 +1,4 @@
{{- if and ( eq .Values.dashboard.enabled true) ( eq .Values.clusterInstall true) }}
{{- if and .Values.dashboard.enabled .Values.clusterInstall }}
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:

View file

@ -1,4 +1,4 @@
{{- if and ( eq .Values.dashboard.enabled true) ( eq .Values.clusterInstall true) }}
{{- if and .Values.dashboard.enabled .Values.clusterInstall }}
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:

View file

@ -1,4 +1,4 @@
{{- if and ( eq .Values.dashboard.enabled true) ( eq .Values.dashboard.serviceAccount.create true) }}
{{- if and .Values.dashboard.enabled .Values.dashboard.serviceAccount.create }}
apiVersion: v1
kind: ServiceAccount
metadata: