Skip to content

Commit 60803ea

Browse files
authored
fix: redis.sentinel.nodes property rendering (#7)
fix: redis.sentinel.nodes property rendering (#7)
1 parent 9411e2d commit 60803ea

3 files changed

Lines changed: 10 additions & 6 deletions

File tree

charts/testops/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ Entries are ordered by priority:
99
3. `[ENHANCEMENT]` Improvements to existing features
1010
4. `[BUGFIX]` Fixes for defects
1111

12+
## 5.25.4
13+
14+
- [BUGFIX] Fixed rendering of `sentinel.nodes` property in Redis configuration.
15+
1216
## 5.25.3
1317

1418
- [ENHANCEMENT] Adds support of `S3_SHARDED` type for S3.

charts/testops/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: testops
3-
version: 5.25.3
4-
appVersion: 25.3.2
3+
version: 5.25.4
4+
appVersion: 25.3.3
55
kubeVersion: '>= 1.20.0-0'
66

77
dependencies:

charts/testops/templates/_helpers.tpl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -521,11 +521,11 @@
521521
- name: ALLURE_REDIS_SESSIONTTL
522522
value: {{ .Values.inactiveUserSessionDuration | quote }}
523523
{{- if .Values.redis.sentinel.enabled }}
524-
- name: SPRING_REDIS_SENTINEL_NODES
525-
value: "{{ .Values.redis.sentinel.nodes }}"
526-
- name: SPRING_REDIS_SENTINEL_MASTER
524+
- name: SPRING_DATA_REDIS_SENTINEL_NODES
525+
value: {{ join "," .Values.redis.sentinel.nodes | quote }}
526+
- name: SPRING_DATA_REDIS_SENTINEL_MASTER
527527
value: "{{ .Values.redis.sentinel.masterSet }}"
528-
- name: SPRING_REDIS_SENTINEL_PASSWORD
528+
- name: SPRING_DATA_REDIS_SENTINEL_PASSWORD
529529
valueFrom:
530530
secretKeyRef:
531531
name: {{ template "testops.secret.name" . }}

0 commit comments

Comments
 (0)