File tree Expand file tree Collapse file tree 5 files changed +19
-1
lines changed Expand file tree Collapse file tree 5 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: kcp
33description : A prototype of a multi-tenant Kubernetes control plane for workloads on many clusters
44
55# version information
6- version : 0.12.0
6+ version : 0.12.1
77appVersion : " 0.28.0"
88
99# optional metadata
Original file line number Diff line number Diff line change 5252 imagePullSecrets :
5353 {{- include "kcp.imagePullSecrets" . | trim | nindent 8 }}
5454 {{- end }}
55+ {{- with .Values.etcd.priorityClassName }}
56+ priorityClassName : {{ . }}
57+ {{- end }}
5558 containers :
5659 - name : etcd
5760 image : {{ .Values.etcd.image }}:{{ .Values.etcd.tag }}
Original file line number Diff line number Diff line change 7373 imagePullSecrets :
7474 {{- include "kcp.imagePullSecrets" . | trim | nindent 8 }}
7575 {{- end }}
76+ {{- with .Values.kcpFrontProxy.priorityClassName }}
77+ priorityClassName : {{ . }}
78+ {{- end }}
7679 containers :
7780 - name : kcp-front-proxy
7881 image : " {{ .Values.kcpFrontProxy.image }}:{{- include " frontproxy.version" . }}"
Original file line number Diff line number Diff line change @@ -110,6 +110,9 @@ spec:
110110 imagePullSecrets :
111111 {{- include "kcp.imagePullSecrets" . | trim | nindent 8 }}
112112 {{- end }}
113+ {{- with .Values.kcp.priorityClassName }}
114+ priorityClassName : {{ . }}
115+ {{- end }}
113116 containers :
114117 - name : kcp
115118 image : {{ .Values.kcp.image }}:{{- include "kcp.version" . }}
Original file line number Diff line number Diff line change 4848 # value: "true"
4949 # effect: "NoSchedule"
5050
51+ # When configured, this will set the priority class for etcd pods.
52+ priorityClassName : " "
53+
5154 affinity :
5255 podAntiAffinity :
5356 preferredDuringSchedulingIgnoredDuringExecution :
152155 # value: "true"
153156 # effect: "NoSchedule"
154157
158+ # When configured, this will set the priority class for kcp server pods.
159+ priorityClassName : " "
160+
155161 affinity :
156162 podAntiAffinity :
157163 preferredDuringSchedulingIgnoredDuringExecution :
@@ -288,6 +294,9 @@ kcpFrontProxy:
288294 # value: "true"
289295 # effect: "NoSchedule"
290296
297+ # When configured, this will set the priority class for kcp-front-proxy pods.
298+ priorityClassName : " "
299+
291300 affinity :
292301 podAntiAffinity :
293302 preferredDuringSchedulingIgnoredDuringExecution :
You can’t perform that action at this time.
0 commit comments