File tree Expand file tree Collapse file tree 5 files changed +10
-1
lines changed
Expand file tree Collapse file tree 5 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
22name : postgres
33description : The World's Most Advanced Open Source Relational Database
44type : application
5- version : 0.12.1
5+ version : 0.12.2
66appVersion : " 18.1.0"
77keywords :
88 - postgres
Original file line number Diff line number Diff line change @@ -92,6 +92,7 @@ The following table lists the configurable parameters of the PostgreSQL chart an
9292| ` fullnameOverride ` | String to fully override postgres.fullname | ` "" ` |
9393| ` commonLabels ` | Labels to add to all deployed objects | ` {} ` |
9494| ` commonAnnotations ` | Annotations to add to all deployed objects | ` {} ` |
95+ | ` priorityClassName ` | Priority class name to be used for the pods | `` |
9596
9697### Pod annotations and labels
9798
Original file line number Diff line number Diff line change 3030 {{- end }}
3131 spec :
3232 serviceAccountName : {{ include "postgres.serviceAccountName" . }}
33+ {{- if .Values.priorityClassName }}
34+ priorityClassName : {{ .Values.priorityClassName }}
35+ {{- end }}
3336 automountServiceAccountToken : {{ .Values.serviceAccount.automountServiceAccountToken }}
3437{{- with (include "postgres.imagePullSecrets" .) }}
3538{{- . | nindent 6 }}
Original file line number Diff line number Diff line change 391391 }
392392 }
393393 },
394+ "priorityClassName" : {
395+ "type" : " string"
396+ },
394397 "readinessProbe" : {
395398 "type" : " object" ,
396399 "properties" : {
Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ fullnameOverride: ""
1414commonLabels : {}
1515# # @param commonAnnotations Annotations to add to all deployed objects
1616commonAnnotations : {}
17+ # # @param priorityClassName Priority class name to be used for the pods
18+ priorityClassName : " "
1719
1820# # @section PostgreSQL image configuration
1921image :
You can’t perform that action at this time.
0 commit comments