Skip to content
Open
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
2 changes: 1 addition & 1 deletion zammad/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: zammad
version: 16.4.2
version: 16.4.3
appVersion: 7.1.0-0017
description: Zammad is a web based open source helpdesk/customer support system with many features to manage customer communication via several channels like telephone, facebook, twitter, chat and e-mails.
home: https://zammad.org
Expand Down
4 changes: 0 additions & 4 deletions zammad/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -204,11 +204,7 @@ Redis Variables
# sentinel
{{- if .Values.zammadConfig.redis.sentinel.enabled }}
- name: REDIS_SENTINELS
{{- if .Values.zammadConfig.redis.enabled }}
value: "{{ .Release.Name }}-redis"

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This cannot get dropped, instead you can just change the name that is used here to point to another service.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably value: "{{ .Release.Name }}-redis-sentinel"

{{- else }}
value: "{{ join "," .Values.zammadConfig.redis.sentinel.sentinels }}"
{{- end }}
- name: REDIS_SENTINEL_NAME
value: "{{ .Values.zammadConfig.redis.sentinel.masterName | default "mymaster" }}"
{{- if .Values.zammadConfig.redis.sentinel.username }}
Expand Down
2 changes: 1 addition & 1 deletion zammad/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ zammadConfig:
sentinel:
enabled: false # set to true to enable Redis Sentinel
sentinels:
- zammad-redis:26379
- zammad-redis-sentinel:26379
masterName: mymaster
# leave empty if no username is required
username:
Expand Down
Loading