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
name: stalwart-mail
description: Stalwart is a JMAP, IMAP4 and SMTP server
version: 0.2.2
appVersion: 0.8.1
version: 0.2.3
appVersion: 0.8.5
maintainers:
- name: Tommy Skaug
email: tommy@skaug.me

View file

@ -35,6 +35,18 @@ spec:
- containerPort: 143
- containerPort: 993
- 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:
- name: STALWART_POSTGRES_HOST
valueFrom:
@ -86,6 +98,11 @@ spec:
secretKeyRef:
name: {{ .Values.existingSecret }}
key: STALWART_DKIM_ED_KEY
- name: STALWART_DKIM_RSA_KEY
valueFrom:
secretKeyRef:
name: {{ .Values.existingSecret }}
key: STALWART_DKIM_RSA_KEY
{{- if .Values.extraEnvSecret }}
envFrom:
- secretRef: