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
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: 15.2.5
version: 15.3.0
appVersion: 6.5.2-22
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
7 changes: 7 additions & 0 deletions zammad/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,13 @@ S3 access URL
value: "http://{{ .Values.minio.auth.rootUser }}:{{ .Values.minio.auth.rootPassword }}@{{ include "zammad.fullname" . }}-minio:9000/zammad?region=zammad&force_path_style=true"
{{- end -}}
{{- end -}}
{{- if .Values.secrets.s3.useExisting -}}
- name: S3_URL
valueFrom:
secretKeyRef:
name: {{ .Values.secrets.s3.secretName }}
key: {{ .Values.secrets.s3.secretKey }}
{{- end -}}
{{- end -}}
{{- end -}}

Expand Down
4 changes: 4 additions & 0 deletions zammad/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ secrets:
useExisting: false
secretKey: redis-password
secretName: redis-pass
s3:
useExisting: false
secretKey: s3-url
secretName: s3-url

securityContext:
fsGroup: 1000
Expand Down
Loading