File tree Expand file tree Collapse file tree 4 files changed +14
-2
lines changed Expand file tree Collapse file tree 4 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -95,6 +95,7 @@ A Helm chart for Kubernetes
9595| podSecurityContext.fsGroup | int | ` 1000 ` | |
9696| podSecurityContext.runAsGroup | int | ` 1000 ` | |
9797| podSecurityContext.runAsUser | int | ` 1000 ` | |
98+ | priorityClassName | string | ` "" ` | |
9899| replicaCount | int | ` 1 ` | |
99100| resources | object | ` {} ` | |
100101| securityContext.capabilities.drop[ 0] | string | ` "ALL" ` | |
Original file line number Diff line number Diff line change 3333 {{- end }}
3434 automountServiceAccountToken : {{ .Values.serviceAccount.automount }}
3535 serviceAccountName : {{ include "valkey.serviceAccountName" . }}
36+ {{- if .Values.priorityClassName }}
37+ priorityClassName : {{ .Values.priorityClassName | quote }}
38+ {{- end }}
3639 securityContext :
3740 {{- toYaml .Values.podSecurityContext | nindent 8 }}
38-
3941 initContainers :
4042 - name : {{ .Chart.Name }}-init
4143 image : " {{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
Original file line number Diff line number Diff line change 290290 }
291291 }
292292 },
293+ "priorityClassName" : {
294+ "type" : " string"
295+ },
293296 "replicaCount" : {
294297 "type" : " integer"
295298 },
Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ podSecurityContext:
3636 runAsUser : 1000
3737 runAsGroup : 1000
3838
39+ priorityClassName : " "
40+
3941# Security context for the Valkey containers
4042securityContext :
4143 capabilities :
@@ -315,4 +317,8 @@ metrics:
315317 # increase(redis_evicted_keys_total{service="{{ include "valkey.fullname" . }}-metrics"}[5m]) > 0
316318 # for: 1s
317319 # labels:
318- # severity: error
320+ # severity: error
321+ # Environment variables to inject into Valkey container
322+ env : {}
323+ # Example:
324+ # LOG_LEVEL: info
You can’t perform that action at this time.
0 commit comments