From 800123c34afa81bc2d39dd732e258750d75d15ff Mon Sep 17 00:00:00 2001 From: Tim Bordemann Date: Fri, 10 Jun 2022 21:59:54 +0200 Subject: [PATCH] Allow setting priorityClassName via helm chart --- ci/helm-chart/templates/deployment.yaml | 3 +++ ci/helm-chart/values.yaml | 2 ++ 2 files changed, 5 insertions(+) diff --git a/ci/helm-chart/templates/deployment.yaml b/ci/helm-chart/templates/deployment.yaml index f137a9d2a8b6..f36806553f33 100644 --- a/ci/helm-chart/templates/deployment.yaml +++ b/ci/helm-chart/templates/deployment.yaml @@ -25,6 +25,9 @@ spec: {{- if .Values.hostnameOverride }} hostname: {{ .Values.hostnameOverride }} {{- end }} + {{- if .Values.priorityClassName }} + priorityClassName: {{ .Values.priorityClassName }} + {{- end }} {{- if .Values.securityContext.enabled }} securityContext: fsGroup: {{ .Values.securityContext.fsGroup }} diff --git a/ci/helm-chart/values.yaml b/ci/helm-chart/values.yaml index 898fd12b1bee..b42089cce69d 100644 --- a/ci/helm-chart/values.yaml +++ b/ci/helm-chart/values.yaml @@ -33,6 +33,8 @@ podAnnotations: {} podSecurityContext: {} # fsGroup: 2000 +priorityClassName: "" + service: type: ClusterIP port: 8080