diff --git a/charts/gotenberg/CHANGELOG.md b/charts/gotenberg/CHANGELOG.md index fcc15fb..638f755 100644 --- a/charts/gotenberg/CHANGELOG.md +++ b/charts/gotenberg/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.4.3 + +- Add `chromium.failedStartsThreshold` value. +- Bump `gotenberg` version `7.8.2` -> `7.8.3`. + ## 0.4.2 - Bump `gotenberg` version `7.8.1` -> `7.8.2`. diff --git a/charts/gotenberg/Chart.yaml b/charts/gotenberg/Chart.yaml index fa8c966..8a558f0 100644 --- a/charts/gotenberg/Chart.yaml +++ b/charts/gotenberg/Chart.yaml @@ -16,13 +16,13 @@ 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.4.2' +version: '0.4.3' # 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 # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: '7.8.2' +appVersion: '7.8.3' keywords: - gotenberg diff --git a/charts/gotenberg/README.md b/charts/gotenberg/README.md index 80f1fe4..5ab97d2 100644 --- a/charts/gotenberg/README.md +++ b/charts/gotenberg/README.md @@ -1,7 +1,7 @@ # Gotenberg [![Artifact Hub](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/gotenberg)](https://artifacthub.io/packages/search?repo=gotenberg) -![Version: 0.4.2](https://img.shields.io/badge/Version-0.4.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 7.8.2](https://img.shields.io/badge/AppVersion-7.8.2-informational?style=flat-square) +![Version: 0.4.3](https://img.shields.io/badge/Version-0.4.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 7.8.3](https://img.shields.io/badge/AppVersion-7.8.3-informational?style=flat-square) This is a HELM chart for Gotenberg. @@ -65,6 +65,7 @@ helm upgrade my-release maikumori/gotenberg --install | chromium.disableJavaScript | bool | `false` | Disable JavaScript | | chromium.disableRoutes | bool | `false` | Disable the routes | | chromium.disableWebSecurity | bool | `false` | Don't enforce the same-origin policy | +| chromium.failedStartsThreshold | string | `""` | Set the number of consecutive failed starts after which the module is considered unhealthy - 0 means ignore (default 5) | | chromium.hostResolverRules | string | `""` | Set custom mappings to the host resolver | | chromium.ignoreCertificateErrors | bool | `false` | Ignore the certificate errors | | chromium.incognito | bool | `false` | Start Chromium with incognito mode | diff --git a/charts/gotenberg/templates/deployment.yaml b/charts/gotenberg/templates/deployment.yaml index 806adf0..0147355 100644 --- a/charts/gotenberg/templates/deployment.yaml +++ b/charts/gotenberg/templates/deployment.yaml @@ -85,6 +85,9 @@ spec: {{- if .Values.chromium.disableRoutes }} - --chromium-disable-routes {{- end }} + {{- if .Values.chromium.failedStartsThreshold }} + - --chromium-failed-starts-threshold={{ .Values.chromium.failedStartsThreshold }} + {{- end }} {{- if .Values.libreOffice.disableRoutes }} - --libreoffice-disable-routes diff --git a/charts/gotenberg/values.yaml b/charts/gotenberg/values.yaml index f0e014e..691ee6b 100644 --- a/charts/gotenberg/values.yaml +++ b/charts/gotenberg/values.yaml @@ -128,6 +128,8 @@ chromium: disableJavaScript: false # -- Disable the routes disableRoutes: false + # -- Set the number of consecutive failed starts after which the module is considered unhealthy - 0 means ignore (default 5) + failedStartsThreshold: '' # The LibreOffice module interacts with LibreOffice to convert documents to PDF, thanks to unoconv. # https://gotenberg.dev/docs/modules/libreoffice