File tree 4 files changed +7
-1
lines changed
4 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ type: application
22
22
# This is the chart version. This version number should be incremented each time you make changes
23
23
# to the chart and its templates, including the app version.
24
24
# Versions are expected to follow Semantic Versioning (https://semver.org/)
25
- version : 0.1.5
25
+ version : 0.1.6
26
26
27
27
# This is the version number of the application being deployed. This version number should be
28
28
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change @@ -116,6 +116,7 @@ The following table lists the configurable parameters of the Pms-chart chart and
116
116
| ` nodeSelector ` | | ` {} ` |
117
117
| ` tolerations ` | | ` [] ` |
118
118
| ` affinity ` | | ` {} ` |
119
+ | ` priorityClassName ` | | ` "" ` |
119
120
| ` commonLabels ` | Labels that will be added to all resources created by the chart | ` {} ` |
120
121
| ` extraEnv ` | Environment variables that will be added to the PMS container | ` {} ` |
121
122
| ` extraVolumeMounts ` | Additional volume mount configuration blocks for the pms container | ` [] ` |
Original file line number Diff line number Diff line change 26
26
{{- toYaml .Values.nodeSelector | nindent 8 }}
27
27
affinity :
28
28
{{- toYaml .Values.affinity | nindent 8 }}
29
+ {{- if .Values.priorityClassName }}
30
+ priorityClassName : {{ .Values.priorityClassName | quote }}
31
+ {{- end }}
29
32
volumes :
30
33
- name : pms-transcode
31
34
emptyDir : {}
Original file line number Diff line number Diff line change @@ -154,6 +154,8 @@ tolerations: []
154
154
155
155
affinity : {}
156
156
157
+ priorityClassName : " "
158
+
157
159
# Common Labels for all resources created by this chart.
158
160
commonLabels : {}
159
161
You can’t perform that action at this time.
0 commit comments