Skip to content

Commit

Permalink
Bump gotenberg version 7.8.2 -> 7.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
MaikuMori committed May 26, 2023
1 parent fe4fc67 commit cae7b71
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 3 deletions.
5 changes: 5 additions & 0 deletions charts/gotenberg/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`.
Expand Down
4 changes: 2 additions & 2 deletions charts/gotenberg/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion charts/gotenberg/README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down Expand Up @@ -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 |
Expand Down
3 changes: 3 additions & 0 deletions charts/gotenberg/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions charts/gotenberg/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cae7b71

Please sign in to comment.