rolebinding.yaml 873 B

12345678910111213141516171819202122
  1. {{- if .Values.rbac.create }}
  2. kind: RoleBinding
  3. apiVersion: {{ include "common.capabilities.rbac.apiVersion" . }}
  4. metadata:
  5. name: {{ include "common.names.fullname" . }}
  6. namespace: {{ .Release.Namespace | quote }}
  7. labels: {{- include "common.labels.standard" . | nindent 4 }}
  8. {{- if .Values.commonLabels }}
  9. {{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
  10. {{- end }}
  11. {{- if .Values.commonAnnotations }}
  12. annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
  13. {{- end }}
  14. roleRef:
  15. kind: Role
  16. name: {{ include "common.names.fullname" . }}
  17. apiGroup: rbac.authorization.k8s.io
  18. subjects:
  19. - kind: ServiceAccount
  20. name: {{ include "postgresql.serviceAccountName" . }}
  21. namespace: {{ .Release.Namespace | quote }}
  22. {{- end }}