Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions charts/testops/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ Entries are ordered by priority:
3. `[ENHANCEMENT]` Improvements to existing features
4. `[BUGFIX]` Fixes for defects

## 5.25.4

- [BUGFIX] Fixed rendering of `sentinel.nodes` property in Redis configuration.

## 5.25.3

- [ENHANCEMENT] Adds support of `S3_SHARDED` type for S3.
Expand Down
4 changes: 2 additions & 2 deletions charts/testops/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: testops
version: 5.25.3
appVersion: 25.3.2
version: 5.25.4
appVersion: 25.3.3
kubeVersion: '>= 1.20.0-0'

dependencies:
Expand Down
8 changes: 4 additions & 4 deletions charts/testops/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -521,11 +521,11 @@
- name: ALLURE_REDIS_SESSIONTTL
value: {{ .Values.inactiveUserSessionDuration | quote }}
{{- if .Values.redis.sentinel.enabled }}
- name: SPRING_REDIS_SENTINEL_NODES
value: "{{ .Values.redis.sentinel.nodes }}"
- name: SPRING_REDIS_SENTINEL_MASTER
- name: SPRING_DATA_REDIS_SENTINEL_NODES
value: {{ join "," .Values.redis.sentinel.nodes | quote }}
- name: SPRING_DATA_REDIS_SENTINEL_MASTER
value: "{{ .Values.redis.sentinel.masterSet }}"
- name: SPRING_REDIS_SENTINEL_PASSWORD
- name: SPRING_DATA_REDIS_SENTINEL_PASSWORD
valueFrom:
secretKeyRef:
name: {{ template "testops.secret.name" . }}
Expand Down