Skip to content

Commit

Permalink
Merge pull request #27 from redzioch/master
Browse files Browse the repository at this point in the history
Fix typo in `.Values.prometheus`
  • Loading branch information
MaikuMori authored Jan 31, 2024
2 parents c6cd940 + f2b2e96 commit fb9670d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 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

## 1.0.1

- Fix typo in `.Values.prometheus.namespace`. (Thanks to Szczepan Rędzioch | [@redzioch](https://github.com/redzioch))
- Bump `gotenberg` version `8.0.1` -> `8.0.2`.

## 1.0.0

- Bump `gotenberg` version `7.10.1` -> `8.0.1`.
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: "1.0.0"
version: "1.0.1"

# 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.0.1"
appVersion: "8.0.2"

keywords:
- gotenberg
Expand Down
4 changes: 2 additions & 2 deletions 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: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 8.0.1](https://img.shields.io/badge/AppVersion-8.0.1-informational?style=flat-square)
![Version: 1.0.1](https://img.shields.io/badge/Version-1.0.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 8.0.2](https://img.shields.io/badge/AppVersion-8.0.2-informational?style=flat-square)

This is a HELM chart for Gotenberg.

Expand Down Expand Up @@ -102,7 +102,7 @@ helm upgrade my-release maikumori/gotenberg --install
| prometheus.collectInterval | string | `""` | Set the interval for collecting modules' metrics (default 1s) |
| prometheus.disableCollect | bool | `false` | Disable the collect of metrics |
| prometheus.disableRouterLogging | bool | `false` | Disable the route logging |
| prometheus.namespece | string | `""` | Set the namespace of modules' metrics (default "gotenberg") |
| prometheus.namespace | string | `""` | Set the namespace of modules' metrics (default "gotenberg") |
| replicaCount | int | `1` | |
| resources | object | `{}` | |
| securityContext.privileged | bool | `false` | |
Expand Down
2 changes: 1 addition & 1 deletion charts/gotenberg/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ prometheus:
# -- Set the interval for collecting modules' metrics (default 1s)
collectInterval: ""
# -- Set the namespace of modules' metrics (default "gotenberg")
namespece: ""
namespace: ""
# -- Disable the collect of metrics
disableCollect: false
# -- Disable the route logging
Expand Down

0 comments on commit fb9670d

Please sign in to comment.