From a9d5f7f94dc7d2d985b54e8640cdbe9a10fee850 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 30 Dec 2024 20:56:34 +0000 Subject: [PATCH] ci: release chart 0.2.0 [skip ci] Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- postal/Chart.yaml | 2 +- postal/README.md | 5 ++++- values.schema.json | 20 ++++++++++++++++++++ 3 files changed, 25 insertions(+), 2 deletions(-) diff --git a/postal/Chart.yaml b/postal/Chart.yaml index 6b88233..630ab7c 100644 --- a/postal/Chart.yaml +++ b/postal/Chart.yaml @@ -16,7 +16,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.3 +version: 0.2.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/postal/README.md b/postal/README.md index 6529bae..7d73ca1 100644 --- a/postal/README.md +++ b/postal/README.md @@ -1,6 +1,6 @@ # postal -![Version: 0.1.3](https://img.shields.io/badge/Version-0.1.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.3.4](https://img.shields.io/badge/AppVersion-3.3.4-informational?style=flat-square) +![Version: 0.2.0](https://img.shields.io/badge/Version-0.2.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.3.4](https://img.shields.io/badge/AppVersion-3.3.4-informational?style=flat-square) A Helm chart for Kubernetes @@ -55,6 +55,9 @@ A Helm chart for Kubernetes | image.repository | string | `"ghcr.io/postalserver/postal"` | | | image.tag | string | `""` | | | jobs.initialize.affinity | object | `{}` | | +| jobs.initialize.annotations."helm.sh/hook" | string | `"post-install,post-upgrade"` | | +| jobs.initialize.annotations."helm.sh/hook-delete-policy" | string | `"before-hook-creation"` | | +| jobs.initialize.annotations."helm.sh/hook-weight" | string | `"1"` | | | jobs.initialize.autoscaling.enabled | bool | `false` | | | jobs.initialize.autoscaling.maxReplicas | int | `100` | | | jobs.initialize.autoscaling.minReplicas | int | `1` | | diff --git a/values.schema.json b/values.schema.json index dba719a..638ad63 100644 --- a/values.schema.json +++ b/values.schema.json @@ -64,9 +64,15 @@ "maximumHoldExpiryDays": { "type": "integer" }, + "railsSecretKey": { + "type": "string" + }, "secretName": { "type": "string" }, + "signingKey": { + "type": "string" + }, "smtpHostname": { "type": "string" }, @@ -125,6 +131,20 @@ "properties": {}, "type": "object" }, + "annotations": { + "properties": { + "helm.sh/hook": { + "type": "string" + }, + "helm.sh/hook-delete-policy": { + "type": "string" + }, + "helm.sh/hook-weight": { + "type": "string" + } + }, + "type": "object" + }, "autoscaling": { "properties": { "enabled": {