Skip to content

Commit 9e880ed

Browse files
authored
api chart version 0.33.0 (#195)
1 parent 491477e commit 9e880ed

4 files changed

Lines changed: 16 additions & 1 deletion

File tree

charts/api/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
This chart does not yet follow SemVer.
44

5+
## 0.33.0
6+
- Add configuration values for complaint form email sender and recipient
7+
58
## 0.32.1
69
- Extend permissions to include ConfigMaps for Kubernetes ServiceAccount role
710

charts/api/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v1
22
appVersion: "1.0"
33
description: A Helm chart for the WBStack API
44
name: api
5-
version: 0.32.1
5+
version: 0.33.0
66
home: https://github.com/wbstack
77
maintainers:
88
- name: WBstack

charts/api/templates/_helpers.tpl

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,14 @@ Common lists of environment variables
9696
- name: WBSTACK_CONTACT_MAIL_SENDER
9797
value: {{ .Values.wbstack.contact.mail.sender | quote }}
9898
{{- end }}
99+
{{- if .Values.wbstack.complaint.mail.recipient }}
100+
- name: WBSTACK_COMPLAINT_MAIL_RECIPIENT
101+
value: {{ .Values.wbstack.complaint.mail.recipient | quote }}
102+
{{- end }}
103+
{{- if .Values.wbstack.complaint.mail.sender }}
104+
- name: WBSTACK_COMPLAINT_MAIL_SENDER
105+
value: {{ .Values.wbstack.complaint.mail.sender | quote }}
106+
{{- end }}
99107
{{- if .Values.wbstack.elasticSearch.enabledByDefault }}
100108
- name: WBSTACK_ELASTICSEARCH_ENABLED_BY_DEFAULT
101109
value: {{ .Values.wbstack.elasticSearch.enabledByDefault | quote }}

charts/api/values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,10 @@ wbstack:
9999
mail:
100100
recipient: someone@wikimedia.de
101101
sender: contact-<subject>@wikibase.cloud
102+
complaint:
103+
mail:
104+
recipient: someone@wikimedia.de
105+
sender: dsa@wikimedia.de
102106

103107
app:
104108
name:

0 commit comments

Comments
 (0)