Files
charts/bitnami/nginx-ingress-controller/templates/rolebinding.yaml
Miguel Ruiz abbdaca6af [bitnami/nginx-ingress-controller] Chart standardised (#10049)
* [bitnami/nginx-ingress-controller] Chart standardised

Signed-off-by: Miguel Ruiz <miruiz@vmware.com>

* Remove metadata and regenerate README.md

Signed-off-by: Miguel Ruiz <miruiz@vmware.com>

* Apply suggetions

Signed-off-by: Miguel Ruiz <miruiz@vmware.com>

* Update VIB

Signed-off-by: Miguel Ruiz <miruiz@vmware.com>

* [bitnami/nginx-ingress-controller] Update components versions

Signed-off-by: Bitnami Containers <containers@bitnami.com>

Co-authored-by: Bitnami Containers <containers@bitnami.com>
2022-05-11 09:25:01 +02:00

23 lines
921 B
YAML

{{- if .Values.rbac.create -}}
apiVersion: {{ include "common.capabilities.rbac.apiVersion" . }}
kind: RoleBinding
metadata:
name: {{ template "common.names.fullname" . }}
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 }}
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: {{ template "common.names.fullname" . }}
subjects:
- kind: ServiceAccount
name: {{ include "nginx-ingress-controller.serviceAccountName" . }}
namespace: {{ include "common.names.namespace" . | quote }}
{{- end -}}