You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
623 B
18 lines
623 B
{{- if .Values.preinstallHook }}
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: RoleBinding
|
|
metadata:
|
|
name: {{ template "rancher.fullname" . }}-create-tls-ca-rolebinding
|
|
labels: {{ include "rancher.labels" . | nindent 4 }}
|
|
annotations:
|
|
"helm.sh/hook": pre-install
|
|
"helm.sh/hook-weight": "-1"
|
|
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded,hook-failed
|
|
subjects:
|
|
- kind: ServiceAccount
|
|
name: {{ template "rancher.fullname" . }}-create-tls-ca-sa
|
|
namespace: {{ .Release.Namespace }}
|
|
roleRef:
|
|
kind: Role
|
|
name: {{ template "rancher.fullname" . }}-create-tls-ca-role
|
|
{{- end }}
|
|
|