File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed
kubernetes/charts/weblogic-operator Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 52
52
tolerations:
53
53
{ {- toYaml . | nindent 8 } }
54
54
{ {- end } }
55
+ { {- if (hasKey . " priority" ) } }
56
+ priority: { { int .priority } }
57
+ { {- end } }
58
+ { {- if (hasKey . " priorityClassName" ) } }
59
+ priorityClassName: { { .priorityClassName | quote } }
60
+ { {- end } }
55
61
initContainers:
56
62
- name: "copy-container"
57
63
image: { { .image | quote } }
Original file line number Diff line number Diff line change @@ -274,6 +274,14 @@ clusterSizePaddingValidationEnabled: true
274
274
# If not specified, it defaults to the user specified in the operator's container image.
275
275
# runAsUser: 1000
276
276
277
+ # priority specifies the operator and webhook pod priority.
278
+ # See https://kubernetes.io/docs/concepts/scheduling-eviction/pod-priority-preemption/
279
+ # priority: 100
280
+
281
+ # priorityClassName specifies the operator and webhook priority class name.
282
+ # See https://kubernetes.io/docs/concepts/scheduling-eviction/pod-priority-preemption/
283
+ # priorityClassName: name-of-priority-class
284
+
277
285
# jvmOptions specifies a value used to control the Java process that runs the operator, such as the maximum heap size
278
286
# that will be allocated.
279
287
# jvmOptions: -XshowSettings:vm -XX:MaxRAMPercentage=70
You can’t perform that action at this time.
0 commit comments