Add rancher labels to preinstallHook

This commit is contained in:
wbsong111
2024-12-19 15:39:47 +09:00
parent b37971d304
commit 1758638952
4 changed files with 11 additions and 7 deletions
@@ -2,7 +2,8 @@
apiVersion: batch/v1
kind: Job
metadata:
name: create-tls-ca-job
name: {{ template "rancher.fullname" . }}-create-tls-ca-job
labels: {{ include "rancher.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": pre-install
"helm.sh/hook-weight": "2" # Certificate 생성 후 실행되도록 우선순위 설정
@@ -11,7 +12,7 @@ spec:
backoffLimit: 4
template:
spec:
serviceAccountName: create-tls-ca-sa
serviceAccountName: {{ template "rancher.fullname" . }}-create-tls-ca-sa
containers:
- name: create-secret
image: bitnami/kubectl:latest
@@ -2,7 +2,8 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: create-tls-ca-role
name: {{ template "rancher.fullname" . }}-create-tls-ca-role
labels: {{ include "rancher.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": pre-install
"helm.sh/hook-weight": "-2"
@@ -2,16 +2,17 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: create-tls-ca-rolebinding
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: create-tls-ca-sa
name: {{ template "rancher.fullname" . }}-create-tls-ca-sa
namespace: {{ .Release.Namespace }}
roleRef:
kind: Role
name: create-tls-ca-role
name: {{ template "rancher.fullname" . }}-create-tls-ca-role
{{- end }}
@@ -2,7 +2,8 @@
apiVersion: v1
kind: ServiceAccount
metadata:
name: create-tls-ca-sa
name: {{ template "rancher.fullname" . }}-create-tls-ca-sa
labels: {{ include "rancher.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": pre-install
"helm.sh/hook-weight": "-3"