From e0542e7be9c6b8a78ea51534c62175f5db3a64b3 Mon Sep 17 00:00:00 2001 From: WrenIX Date: Thu, 27 Feb 2025 10:54:45 +0100 Subject: [PATCH] fix(stalwart-mail): add global (and improve docs) --- stalwart-mail/Chart.yaml | 2 +- stalwart-mail/README.md | 12 ++++++------ stalwart-mail/values.yaml | 9 +++++---- 3 files changed, 12 insertions(+), 11 deletions(-) diff --git a/stalwart-mail/Chart.yaml b/stalwart-mail/Chart.yaml index ce6ce3b..9b435c2 100644 --- a/stalwart-mail/Chart.yaml +++ b/stalwart-mail/Chart.yaml @@ -3,7 +3,7 @@ name: stalwart-mail description: Helm Chart for Stalwart Mail Server - Secure & Modern All-in-One Mail Server (IMAP, JMAP, SMTP) icon: https://stalw.art/img/apple-touch-icon.png type: application -version: 0.0.25 +version: 0.0.26 # renovate: image=docker.io/stalwartlabs/mail-server appVersion: "0.11.6" maintainers: diff --git a/stalwart-mail/README.md b/stalwart-mail/README.md index cf7be3a..b446d1d 100644 --- a/stalwart-mail/README.md +++ b/stalwart-mail/README.md @@ -7,7 +7,7 @@ description: "Helm Chart for Stalwart Mail Server - Secure & Modern All-in-One M # stalwart-mail -![Version: 0.0.25](https://img.shields.io/badge/Version-0.0.25-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.11.6](https://img.shields.io/badge/AppVersion-0.11.6-informational?style=flat-square) +![Version: 0.0.26](https://img.shields.io/badge/Version-0.0.26-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.11.6](https://img.shields.io/badge/AppVersion-0.11.6-informational?style=flat-square) Helm Chart for Stalwart Mail Server - Secure & Modern All-in-One Mail Server (IMAP, JMAP, SMTP) @@ -136,10 +136,10 @@ helm uninstall stalwart-mail-release | fullnameOverride | string | `""` | | | global.image.pullPolicy | string | `nil` | if set it will overwrite all pullPolicy | | global.image.registry | string | `nil` | if set it will overwrite all registry entries | -| image.pullPolicy | string | `"IfNotPresent"` | | -| image.registry | string | `"docker.io"` | | -| image.repository | string | `"stalwartlabs/mail-server"` | | -| image.tag | string | `""` | Overrides the image tag whose default is the chart appVersion. | +| image.pullPolicy | string | `"IfNotPresent"` | This sets the pull policy for images. (could be overwritten by global.image.pullPolicy) | +| image.registry | string | `"docker.io"` | image registry (could be overwritten by global.image.registry) | +| image.repository | string | `"stalwartlabs/mail-server"` | image repository | +| image.tag | string | `""` | image tag - Overrides the image tag whose default is the chart appVersion. | | imagePullSecrets | list | `[]` | | | ingress.annotations | object | `{}` | | | ingress.className | string | `""` | | @@ -166,7 +166,7 @@ helm uninstall stalwart-mail-release | prometheus.servicemonitor.labels | object | `{}` | | | readinessProbe.httpGet.path | string | `"/healthz/ready"` | | | readinessProbe.httpGet.port | string | `"http"` | | -| replicaCount | int | `1` | | +| replicaCount | int | `1` | replicas | | resources | object | `{}` | | | secrets.env.METRICS_SECRET | string | `"scrape_metrics_password"` | | | secrets.env.METRICS_USERNAME | string | `"scrape_metrics_user"` | | diff --git a/stalwart-mail/values.yaml b/stalwart-mail/values.yaml index 29efe2e..347c8c3 100644 --- a/stalwart-mail/values.yaml +++ b/stalwart-mail/values.yaml @@ -1,6 +1,3 @@ -# Default values for stalwart. -# This is a YAML-formatted file. -# Declare variables to be passed into your templates. global: image: # -- if set it will overwrite all registry entries @@ -8,13 +5,17 @@ global: # -- if set it will overwrite all pullPolicy pullPolicy: +# -- replicas replicaCount: 1 image: + # -- image registry (could be overwritten by global.image.registry) registry: docker.io + # -- image repository repository: stalwartlabs/mail-server + # -- This sets the pull policy for images. (could be overwritten by global.image.pullPolicy) pullPolicy: IfNotPresent - # -- Overrides the image tag whose default is the chart appVersion. + # -- image tag - Overrides the image tag whose default is the chart appVersion. tag: "" imagePullSecrets: []