Skip to content

Commit

Permalink
Bump gotenberg from 8.5.1 to 8.6.0, add HTTPS support
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasgeiler authored and MaikuMori committed Jun 5, 2024
1 parent bad180b commit 27e7598
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 4 deletions.
8 changes: 8 additions & 0 deletions charts/gotenberg/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.5.0

- Bump `gotenberg` version `8.5.1` -> `8.6.0`.
- Add values for the following flags:

- `--api-tls-cert-file`
- `--api-tls-key-file`

## 1.4.0

- Add ability to create and configure `PodDisruptionBudget` (Thanks to Aurel Canciu | [@relu](https://github.com/relu))
Expand Down
6 changes: 3 additions & 3 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: "1.4.0"

version: "1.5.0"
g
# 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: "8.5.1"
appVersion: "8.6.0"

keywords:
- gotenberg
Expand Down
4 changes: 3 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/helm/maikumori/gotenberg)
![Version: 1.4.0](https://img.shields.io/badge/Version-1.4.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 8.5.1](https://img.shields.io/badge/AppVersion-8.5.1-informational?style=flat-square)
![Version: 1.5.0](https://img.shields.io/badge/Version-1.5.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 8.6.0](https://img.shields.io/badge/AppVersion-8.6.0-informational?style=flat-square)

This is a HELM chart for Gotenberg.

Expand Down Expand Up @@ -56,6 +56,8 @@ helm upgrade my-release maikumori/gotenberg --install
| api.port | int | `3000` | Set the port on which the API should listen (default 3000) |
| api.rootPath | string | `""` | Set the root path of the API - for service discovery via URL paths (default "/") |
| api.timeout | string | `""` | Set the time limit for requests (default 30s) |
| api.tlsCertFile | string | `""` | Path to the TLS/SSL certificate file - for HTTPS support (default "") |
| api.tlsKeyFile | string | `""` | Path to the TLS/SSL key file - for HTTPS support (default "") |
| api.traceHeader | string | `""` | Set the header name to use for identifying requests (default "Gotenberg-Trace") |
| autoscaling.enabled | bool | `false` | |
| autoscaling.maxReplicas | int | `100` | |
Expand Down
6 changes: 6 additions & 0 deletions charts/gotenberg/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ spec:
args:
- gotenberg
- --api-port={{ .Values.api.port }}
{{- if .Values.api.tlsCertFile }}
- --api-tls-cert-file={{ .Values.api.tlsCertFile }}
{{- end }}
{{- if .Values.api.tlsKeyFile }}
- --api-tls-key-file={{ .Values.api.tlsKeyFile }}
{{- end }}
{{- if .Values.api.timeout }}
- --api-timeout={{ .Values.api.timeout }}
{{- end }}
Expand Down
4 changes: 4 additions & 0 deletions charts/gotenberg/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,10 @@ ingress:
api:
# -- Set the port on which the API should listen (default 3000)
port: 3000
# -- Path to the TLS/SSL certificate file - for HTTPS support (default "")
tlsCertFile: ""
# -- Path to the TLS/SSL key file - for HTTPS support (default "")
tlsKeyFile: ""
# -- Set the time limit for requests (default 30s)
timeout: ""
# -- Set the root path of the API - for service discovery via URL paths (default "/")
Expand Down

0 comments on commit 27e7598

Please sign in to comment.