feat(stalwart): add support for DKIM RSA keys and update app to 0.8.5
This commit is contained in:
parent
98e1c3c525
commit
468de3096b
2 changed files with 19 additions and 2 deletions
|
@ -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
|
||||||
|
|
|
@ -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:
|
||||||
|
|
Loading…
Reference in a new issue