mirror of
https://github.com/bitnami/charts.git
synced 2026-03-06 23:47:48 +08:00
25 lines
988 B
YAML
25 lines
988 B
YAML
{{- /*
|
|
Copyright Broadcom, Inc. All Rights Reserved.
|
|
SPDX-License-Identifier: APACHE-2.0
|
|
*/}}
|
|
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
# Mandatory hardcoded name.
|
|
# Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/rbac/
|
|
name: argocd-rbac-cm
|
|
namespace: {{ include "common.names.namespace" . | quote }}
|
|
labels: {{- include "common.labels.standard" . | nindent 4 }}
|
|
{{- if .Values.commonLabels }}
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
# Mandatory label
|
|
# Ref: https://argoproj.github.io/argo-cd/operator-manual/declarative-setup/#atomic-configuration
|
|
app.kubernetes.io/part-of: argocd
|
|
{{- if .Values.commonAnnotations }}
|
|
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
data:
|
|
{{- include "common.tplvalues.render" (dict "value" .Values.config.rbac "context" $) | nindent 2 }}
|