fix(stalwart-mail): update AppVersion v0.8.5 + support probes
This commit is contained in:
parent
54b216eca3
commit
3462a1a93b
4 changed files with 65 additions and 5 deletions
|
@ -3,9 +3,9 @@ name: stalwart-mail
|
||||||
description: Helm Chart for Stalwart Mail Server - Secure & Modern All-in-One Mail Server (IMAP, JMAP, SMTP)
|
description: Helm Chart for Stalwart Mail Server - Secure & Modern All-in-One Mail Server (IMAP, JMAP, SMTP)
|
||||||
icon: https://stalw.art/home/apple-touch-icon.png
|
icon: https://stalw.art/home/apple-touch-icon.png
|
||||||
type: application
|
type: application
|
||||||
version: 0.0.10
|
version: 0.0.11
|
||||||
# renovate: image=docker.io/stalwartlabs/mail-server
|
# renovate: image=docker.io/stalwartlabs/mail-server
|
||||||
appVersion: "0.8.1"
|
appVersion: "0.8.5"
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: WrenIX
|
- name: WrenIX
|
||||||
url: https://wrenix.eu
|
url: https://wrenix.eu
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
|
|
||||||
= stalwart-mail
|
= stalwart-mail
|
||||||
|
|
||||||
image::https://img.shields.io/badge/Version-0.0.10-informational?style=flat-square[Version: 0.0.10]
|
image::https://img.shields.io/badge/Version-0.0.11-informational?style=flat-square[Version: 0.0.11]
|
||||||
image::https://img.shields.io/badge/Version-application-informational?style=flat-square[Type: application]
|
image::https://img.shields.io/badge/Version-application-informational?style=flat-square[Type: application]
|
||||||
image::https://img.shields.io/badge/AppVersion-0.8.1-informational?style=flat-square[AppVersion: 0.8.1]
|
image::https://img.shields.io/badge/AppVersion-0.8.5-informational?style=flat-square[AppVersion: 0.8.5]
|
||||||
== Maintainers
|
== Maintainers
|
||||||
|
|
||||||
.Maintainers
|
.Maintainers
|
||||||
|
@ -159,6 +159,16 @@ helm uninstall stalwart-mail-release
|
||||||
| `"internal"`
|
| `"internal"`
|
||||||
|
|
|
|
||||||
|
|
||||||
|
| config.server.listener.http.bind[0]
|
||||||
|
| string
|
||||||
|
| `"[::]:80"`
|
||||||
|
|
|
||||||
|
|
||||||
|
| config.server.listener.http.protocol
|
||||||
|
| string
|
||||||
|
| `"http"`
|
||||||
|
|
|
||||||
|
|
||||||
| config.server.listener.https.bind[0]
|
| config.server.listener.https.bind[0]
|
||||||
| string
|
| string
|
||||||
| `"[::]:443"`
|
| `"[::]:443"`
|
||||||
|
@ -439,6 +449,16 @@ helm uninstall stalwart-mail-release
|
||||||
| `[]`
|
| `[]`
|
||||||
|
|
|
|
||||||
|
|
||||||
|
| livenessProbe.httpGet.path
|
||||||
|
| string
|
||||||
|
| `"/healthz/live"`
|
||||||
|
|
|
||||||
|
|
||||||
|
| livenessProbe.httpGet.port
|
||||||
|
| string
|
||||||
|
| `"http"`
|
||||||
|
|
|
||||||
|
|
||||||
| nameOverride
|
| nameOverride
|
||||||
| string
|
| string
|
||||||
| `""`
|
| `""`
|
||||||
|
@ -499,6 +519,16 @@ helm uninstall stalwart-mail-release
|
||||||
| `{}`
|
| `{}`
|
||||||
|
|
|
|
||||||
|
|
||||||
|
| readinessProbe.httpGet.path
|
||||||
|
| string
|
||||||
|
| `"/healthz/ready"`
|
||||||
|
|
|
||||||
|
|
||||||
|
| readinessProbe.httpGet.port
|
||||||
|
| string
|
||||||
|
| `"http"`
|
||||||
|
|
|
||||||
|
|
||||||
| replicaCount
|
| replicaCount
|
||||||
| int
|
| int
|
||||||
| `1`
|
| `1`
|
||||||
|
@ -529,6 +559,11 @@ helm uninstall stalwart-mail-release
|
||||||
| `"SingleStack"`
|
| `"SingleStack"`
|
||||||
| other option is RequireDualStack
|
| other option is RequireDualStack
|
||||||
|
|
||||||
|
| service.ports.http
|
||||||
|
| int
|
||||||
|
| `80`
|
||||||
|
|
|
||||||
|
|
||||||
| service.ports.https
|
| service.ports.https
|
||||||
| int
|
| int
|
||||||
| `443`
|
| `443`
|
||||||
|
|
|
@ -36,7 +36,7 @@ spec:
|
||||||
- name: {{ .Chart.Name }}
|
- name: {{ .Chart.Name }}
|
||||||
securityContext:
|
securityContext:
|
||||||
{{- toYaml .Values.securityContext | nindent 12 }}
|
{{- toYaml .Values.securityContext | nindent 12 }}
|
||||||
{{- with .Values.image}}
|
{{- with .Values.image }}
|
||||||
image: "{{ coalesce $.Values.global.image.registry .registry }}/{{ .repository }}:{{ .tag | default (printf "v%s" $.Chart.AppVersion) }}"
|
image: "{{ coalesce $.Values.global.image.registry .registry }}/{{ .repository }}:{{ .tag | default (printf "v%s" $.Chart.AppVersion) }}"
|
||||||
imagePullPolicy: {{ coalesce $.Values.global.image.pullPolicy .pullPolicy }}
|
imagePullPolicy: {{ coalesce $.Values.global.image.pullPolicy .pullPolicy }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -53,6 +53,18 @@ spec:
|
||||||
containerPort: {{ $port }}
|
containerPort: {{ $port }}
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- with .Values.livenessProbe }}
|
||||||
|
livenessProbe:
|
||||||
|
{{- toYaml . | nindent 12 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.readinessProbe }}
|
||||||
|
livenessProbe:
|
||||||
|
{{- toYaml . | nindent 12 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.startupProbe }}
|
||||||
|
livenessProbe:
|
||||||
|
{{- toYaml . | nindent 12 }}
|
||||||
|
{{- end }}
|
||||||
resources:
|
resources:
|
||||||
{{- toYaml .Values.resources | nindent 12 }}
|
{{- toYaml .Values.resources | nindent 12 }}
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
|
|
|
@ -54,6 +54,9 @@ config:
|
||||||
sieve:
|
sieve:
|
||||||
bind: ["[::]:4190"]
|
bind: ["[::]:4190"]
|
||||||
protocol: "managesieve"
|
protocol: "managesieve"
|
||||||
|
http:
|
||||||
|
protocol: "http"
|
||||||
|
bind: ["[::]:80"]
|
||||||
https:
|
https:
|
||||||
protocol: "http"
|
protocol: "http"
|
||||||
bind: ["[::]:443"]
|
bind: ["[::]:443"]
|
||||||
|
@ -163,8 +166,18 @@ service:
|
||||||
pop3: 110
|
pop3: 110
|
||||||
pop3s: 995
|
pop3s: 995
|
||||||
sieve: 4190
|
sieve: 4190
|
||||||
|
http: 80
|
||||||
https: 443
|
https: 443
|
||||||
|
|
||||||
|
livenessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /healthz/live
|
||||||
|
port: http
|
||||||
|
readinessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /healthz/ready
|
||||||
|
port: http
|
||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
enabled: false
|
enabled: false
|
||||||
className: ""
|
className: ""
|
||||||
|
|
Loading…
Add table
Reference in a new issue