Add preinstall hook to rancher chart

This commit is contained in:
wbsong111
2024-12-12 09:31:48 +09:00
parent b298188ca3
commit 38438d89e1
7 changed files with 99 additions and 4 deletions
@@ -0,0 +1,17 @@
{{- if .Values.preinstallHook }}
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: create-tls-ca-rolebinding
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: create-tls-ca-sa
namespace: {{ .Release.Namespace }}
roleRef:
kind: Role
name: create-tls-ca-role
{{- end }}