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 apiVersion: batch/v1
kind: Job kind: Job
metadata: metadata:
name: create-tls-ca-job name: {{ template "rancher.fullname" . }}-create-tls-ca-job
labels: {{ include "rancher.labels" . | nindent 4 }}
annotations: annotations:
"helm.sh/hook": pre-install "helm.sh/hook": pre-install
"helm.sh/hook-weight": "2" # Certificate 생성 후 실행되도록 우선순위 설정 "helm.sh/hook-weight": "2" # Certificate 생성 후 실행되도록 우선순위 설정
@@ -11,7 +12,7 @@ spec:
backoffLimit: 4 backoffLimit: 4
template: template:
spec: spec:
serviceAccountName: create-tls-ca-sa serviceAccountName: {{ template "rancher.fullname" . }}-create-tls-ca-sa
containers: containers:
- name: create-secret - name: create-secret
image: bitnami/kubectl:latest image: bitnami/kubectl:latest
@@ -2,7 +2,8 @@
apiVersion: rbac.authorization.k8s.io/v1 apiVersion: rbac.authorization.k8s.io/v1
kind: Role kind: Role
metadata: metadata:
name: create-tls-ca-role name: {{ template "rancher.fullname" . }}-create-tls-ca-role
labels: {{ include "rancher.labels" . | nindent 4 }}
annotations: annotations:
"helm.sh/hook": pre-install "helm.sh/hook": pre-install
"helm.sh/hook-weight": "-2" "helm.sh/hook-weight": "-2"
@@ -2,16 +2,17 @@
apiVersion: rbac.authorization.k8s.io/v1 apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding kind: RoleBinding
metadata: metadata:
name: create-tls-ca-rolebinding name: {{ template "rancher.fullname" . }}-create-tls-ca-rolebinding
labels: {{ include "rancher.labels" . | nindent 4 }}
annotations: annotations:
"helm.sh/hook": pre-install "helm.sh/hook": pre-install
"helm.sh/hook-weight": "-1" "helm.sh/hook-weight": "-1"
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded,hook-failed "helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded,hook-failed
subjects: subjects:
- kind: ServiceAccount - kind: ServiceAccount
name: create-tls-ca-sa name: {{ template "rancher.fullname" . }}-create-tls-ca-sa
namespace: {{ .Release.Namespace }} namespace: {{ .Release.Namespace }}
roleRef: roleRef:
kind: Role kind: Role
name: create-tls-ca-role name: {{ template "rancher.fullname" . }}-create-tls-ca-role
{{- end }} {{- end }}
@@ -2,7 +2,8 @@
apiVersion: v1 apiVersion: v1
kind: ServiceAccount kind: ServiceAccount
metadata: metadata:
name: create-tls-ca-sa name: {{ template "rancher.fullname" . }}-create-tls-ca-sa
labels: {{ include "rancher.labels" . | nindent 4 }}
annotations: annotations:
"helm.sh/hook": pre-install "helm.sh/hook": pre-install
"helm.sh/hook-weight": "-3" "helm.sh/hook-weight": "-3"