feat(stalwart): add support for DKIM RSA keys and update app to 0.8.5

This commit is contained in:
Tommy 2024-07-30 12:11:56 +02:00
parent 98e1c3c525
commit 468de3096b
Signed by: tommy
SSH key fingerprint: SHA256:1LWgQT3QPHIT29plS8jjXc3S1FcE/4oGvsx3Efxs6Uc
2 changed files with 19 additions and 2 deletions

View file

@ -1,8 +1,8 @@
apiVersion: v2 apiVersion: v2
name: stalwart-mail name: stalwart-mail
description: Stalwart is a JMAP, IMAP4 and SMTP server description: Stalwart is a JMAP, IMAP4 and SMTP server
version: 0.2.2 version: 0.2.3
appVersion: 0.8.1 appVersion: 0.8.5
maintainers: maintainers:
- name: Tommy Skaug - name: Tommy Skaug
email: tommy@skaug.me email: tommy@skaug.me

View file

@ -35,6 +35,18 @@ spec:
- containerPort: 143 - containerPort: 143
- containerPort: 993 - containerPort: 993
- containerPort: 4190 - containerPort: 4190
livenessProbe:
httpGet:
path: /healthz/live
port: 8080
initialDelaySeconds: 30
periodSeconds: 10
readinessProbe:
httpGet:
path: /healthz/ready
port: 8080
initialDelaySeconds: 5
periodSeconds: 10
env: env:
- name: STALWART_POSTGRES_HOST - name: STALWART_POSTGRES_HOST
valueFrom: valueFrom:
@ -86,6 +98,11 @@ spec:
secretKeyRef: secretKeyRef:
name: {{ .Values.existingSecret }} name: {{ .Values.existingSecret }}
key: STALWART_DKIM_ED_KEY key: STALWART_DKIM_ED_KEY
- name: STALWART_DKIM_RSA_KEY
valueFrom:
secretKeyRef:
name: {{ .Values.existingSecret }}
key: STALWART_DKIM_RSA_KEY
{{- if .Values.extraEnvSecret }} {{- if .Values.extraEnvSecret }}
envFrom: envFrom:
- secretRef: - secretRef: