From 470c7a95329acb188b2cf943d0f1000e1724e24b Mon Sep 17 00:00:00 2001 From: Starlight Romero <28881133+starlightromero@users.noreply.github.com> Date: Mon, 29 Dec 2025 19:46:17 -0800 Subject: [PATCH] fix(helm): add priorityClassName --- deploy/cert-manager-sync/templates/deployment.yaml | 3 +++ deploy/cert-manager-sync/values.yaml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/deploy/cert-manager-sync/templates/deployment.yaml b/deploy/cert-manager-sync/templates/deployment.yaml index 5c25043..894c87b 100644 --- a/deploy/cert-manager-sync/templates/deployment.yaml +++ b/deploy/cert-manager-sync/templates/deployment.yaml @@ -29,6 +29,9 @@ spec: {{- toYaml . | nindent 8 }} {{- end }} serviceAccountName: {{ include "cert-manager-sync.serviceAccountName" . }} + {{- if .Values.priorityClassName }} + priorityClassName: {{ .Values.priorityClassName }} + {{- end }} securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} containers: diff --git a/deploy/cert-manager-sync/values.yaml b/deploy/cert-manager-sync/values.yaml index 9314171..0679df5 100644 --- a/deploy/cert-manager-sync/values.yaml +++ b/deploy/cert-manager-sync/values.yaml @@ -43,6 +43,9 @@ clusterRole: podAnnotations: {} +# -- Priority class name for pod scheduling +priorityClassName: "" + podSecurityContext: {} # fsGroup: 2000