Skip to content

Commit

Permalink
Update yeti values
Browse files Browse the repository at this point in the history
  • Loading branch information
wajihyassine committed Jan 27, 2025
1 parent b0741e2 commit a1be8dd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/yeti/templates/redis/redis-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
automountServiceAccountToken: false
containers:
- name: redis
image: "redis:7.4.2-alpine"
image: "{{ .Values.redis.image.repository }}:{{ .Values.redis.image.tag }}"
imagePullPolicy: IfNotPresent
command: ["redis-server" , "--appendonly yes"]
securityContext:
Expand Down
9 changes: 9 additions & 0 deletions charts/yeti/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,15 @@ ingress:
## To see a full list of available values, run helm show values charts/redis*
##
redis:
## Redis image configuration
##
image:
## @param redis.image.repository Redis image repository
##
repository: redis
## @param redis.image.tag Redis image tag
##
tag: "7.4.2-alpine"
## Redis persistence configuration
##
persistence:
Expand Down

0 comments on commit a1be8dd

Please sign in to comment.