Apply suggestions from code review
Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
This commit is contained in:
parent
6a72cc9ea1
commit
f8d3f4dccc
5 changed files with 4 additions and 3 deletions
0
charts/argo-cd/testhelm.yaml
Normal file
0
charts/argo-cd/testhelm.yaml
Normal 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
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue