Skip to content

Commit 2bc692f

Browse files
authored
feat: add priority class name (#3)
1 parent a989f3a commit 2bc692f

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@ This repository contains Redis cluster helm charts that can survive pod restarts
1313
`fullnameOverride` | String to override `redis-cluster.fullname` `template` | `redis-cluster`
1414
`securityContext.enabled` | Whether to enable pod's container security context or not | `false`
1515
`securityContext` | Pod's security context | `{}`
16+
`minReadySeconds` | minimum number of seconds for which a newly created Pod should be running and ready without any of its containers crashing, for it to be considered available | `10`
17+
`priorityClassName` | Priority indicates the importance of a Pod relative to other Pods | `high-priority`
1618
`redis.image` | Redis docker image | `redis:7.2.4`
1719
`redis.port` | Redis server port | `6379`
1820
`redis.bus` | Redis cluster bus port | `16379`
1921
`redis.securityContext.enabled` | Whether to enable the Redis container security context or not | `false`
2022
`redis.securityContext` | Redis container security context | `{}`
2123
`redis.resources` | The resources of the redis container | `{}`
22-
`redis.minReadySeconds` | minimum number of seconds for which a newly created Pod should be running and ready without any of its containers crashing, for it to be considered available | `10`
2324
`cluster.init` | A boolean to specify whether the cluster should be initialized. (Can be false when cluster is already created and maybe you just want to change the resources of the cluster) | `true`
2425
`cluster.master` | Number of master nodes | `3`
2526
`cluster.replicas` | Number of replicas of each master | `1`

templates/statefulset.yaml

+5-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ spec:
99
matchLabels: {{ include "redis-cluster.labels" . | nindent 6 }}
1010
serviceName: {{ include "redis-cluster.name" . }}-headless
1111
replicas: {{ include "redis-cluster.replicaCount" . }}
12-
{{- if .Values.redis.minReadySeconds }}
13-
minReadySeconds: {{ .Values.redis.minReadySeconds }}
12+
{{- if .Values.minReadySeconds }}
13+
minReadySeconds: {{ .Values.minReadySeconds }}
1414
{{- end }}
1515
template:
1616
metadata:
@@ -19,6 +19,9 @@ spec:
1919
{{- if and .Values.securityContext .Values.securityContext.enabled }}
2020
securityContext: {{ omit .Values.securityContext "enabled" | toYaml | nindent 8 }}
2121
{{- end }}
22+
{{- if .Values.priorityClassName }}
23+
priorityClassName: {{ .Values.priorityClassName }}
24+
{{- end }}
2225
initContainers:
2326
- name: fix-outdated-ips
2427
image: ubuntu:24.04

values.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
nameOverride: ""
22
fullnameOverride: ""
33

4+
minReadySeconds: 0
5+
priorityClassName: ""
6+
47
redis:
58
image: redis:7.2.4
69
port: 6379
710
bus: 16379
8-
minReadySeconds: 0
911
securityContext:
1012
enabled: false
1113

0 commit comments

Comments
 (0)