File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed
Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,8 @@ and their default values.
8888| ` persistence.storageClass ` | PVC Storage Class for Verdaccio volume | ` nil ` |
8989| ` persistence.volumes ` | Additional volumes | ` nil ` |
9090| ` podAnnotations ` | Annotations to add to each pod | ` {} ` |
91+ | ` priorityClass.enabled ` | Enable specifying pod priorityClassName | ` false ` |
92+ | ` priorityClass.name ` | PriorityClassName to be specified in pod spec | ` "" ` |
9193| ` replicaCount ` | Desired number of pods | ` 1 ` |
9294| ` resources ` | CPU/Memory resource requests/limits | ` {} ` |
9395| ` resources ` | pod resource requests & limits | ` {} ` |
Original file line number Diff line number Diff line change 9191 tolerations :
9292{{ toYaml .Values.tolerations | indent 8 }}
9393 {{- end }}
94+ {{- if .Values.priorityClass.enabled }}
95+ priorityClassName : {{ .Values.priorityClass.name }}
96+ {{- end }}
Original file line number Diff line number Diff line change @@ -147,3 +147,7 @@ securityContext:
147147 enabled : true
148148 runAsUser : 100
149149 fsGroup : 101
150+
151+ priorityClass :
152+ enabled : false
153+ # name: ""
You can’t perform that action at this time.
0 commit comments