File tree Expand file tree Collapse file tree 4 files changed +11
-2
lines changed
Expand file tree Collapse file tree 4 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -13,5 +13,5 @@ maintainers:
1313 - name : guerzon
1414 email : guerzon@proton.me
1515 url : https://github.com/guerzon
16- version : 0.34.3
16+ version : 0.34.4
1717kubeVersion : " >=1.12.0-0"
Original file line number Diff line number Diff line change @@ -390,6 +390,7 @@ helm -n $NAMESPACE uninstall $RELEASE_NAME
390390| `nodeSelector` | Node labels for pod assignment | `{}` |
391391| `affinity` | Affinity for pod assignment | `{}` |
392392| `tolerations` | Tolerations for pod assignment | `[]` |
393+ | `priorityClassName` | Assign a priority class to pods | `""` |
393394| `serviceAccount.create` | Create a service account | `true` |
394395| `serviceAccount.name` | Name of the service account to create | `vaultwarden-svc` |
395396| `podSecurityContext` | Pod security options | `{}` |
Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ affinity:
1515tolerations:
1616{{- toYaml . | nindent 2 }}
1717{{- end }}
18+ {{- with .Values.priorityClassName }}
19+ priorityClassName: {{ . | quote }}
20+ {{- end }}
1821{{- with .Values.podSecurityContext }}
1922securityContext:
2023 {{- toYaml . | nindent 2 }}
@@ -235,4 +238,4 @@ serviceAccountName: {{ .Values.serviceAccount.name }}
235238imagePullSecrets:
236239 {{- toYaml . | nindent 2 }}
237240{{- end }}
238- {{- end }}
241+ {{- end }}
Original file line number Diff line number Diff line change @@ -112,6 +112,11 @@ affinity: {}
112112# #
113113tolerations : []
114114
115+ # # @param priorityClassName Assign a priority class to pods
116+ # # Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/pod-priority-preemption/
117+ # #
118+ priorityClassName : " "
119+
115120# # @param serviceAccount.create Create a service account
116121# # @param serviceAccount.name Name of the service account to create
117122# #
You can’t perform that action at this time.
0 commit comments