mirror of
https://github.com/argoproj/argo-cd
synced 2026-05-03 14:48:25 +00:00
* Support helm charts and yaml directories as an application source * Run e2e test in parallel and increase timeout
13 lines
384 B
YAML
13 lines
384 B
YAML
{{- if and .Values.rbac.create .Values.rbac.role.rules -}}
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: Role
|
|
metadata:
|
|
name: {{ template "redis.fullname" . }}
|
|
labels:
|
|
app: {{ template "redis.name" . }}
|
|
chart: {{ template "redis.chart" . }}
|
|
release: "{{ .Release.Name }}"
|
|
heritage: "{{ .Release.Service }}"
|
|
rules:
|
|
{{ toYaml .Values.rbac.role.rules }}
|
|
{{- end -}}
|