Skip to content

Commit

Permalink
Fix annotations in puppetdb-pvc and puppetserver-pvc (puppetlabs#149)
Browse files Browse the repository at this point in the history
* Fix annotations in puppetdb-pvc
* Fix puppetserver-pvc annotation
* Add akiryushin as Contributor
* Bump chart
* Fix puppetserver-pvc
  • Loading branch information
akiryushin authored and davidphay committed Jan 27, 2023
1 parent e9e3f63 commit 4fbf4e2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ NOTE: The change log until version `v0.2.4` is auto-generated.
- Feat: Add puppetdb exporter (https://github.com/camptocamp/prometheus-puppetdb-exporter)
- Feat: starting to add unit test with Helm unittest
- Fix: issue with single master, `env` key was missing and raised an error
## [v7.2.2](https://github.com/puppetlabs/puppetserver-helm-chart/tree/v7.2.2) (2023-01-xx)
- Fix `storage.annotations` issue (https://github.com/puppetlabs/puppetserver-helm-chart/issues/148) apply code from PR https://github.com/puppetlabs/puppetserver-helm-chart/pull/149

## [v7.2.1](https://github.com/puppetlabs/puppetserver-helm-chart/tree/v7.2.1) (2023-01-23)
- Fix: remove `timeout [-t SECS]` change from BusyBox v1.29.3 to BusyBox v1.33.1 `timeout SECS`
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -510,3 +510,4 @@ kill %[job_numbers_above]
* [Kevin Harrington](https://github.com/ke5C2Fin), Contributor
* [Grégoire Menuel](https://github.com/gmenuel), Contributor
* [Jean-François Roche](https://github.com/jfroche), Contributor
* [Alexander Kiryushin](https://github.com/akiryushin), Contributor
2 changes: 1 addition & 1 deletion templates/puppetdb-pvc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ metadata:
"helm.sh/hook-weight": "0"
{{- end }}
{{- if .Values.storage.annotations }}
{{ toYaml .Values.storage.annotations }}
{{ toYaml .Values.storage.annotations | nindent 4 }}
{{- end }}
spec:
accessModes:
Expand Down
2 changes: 1 addition & 1 deletion templates/puppetserver-pvc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ metadata:
"helm.sh/hook-weight": "0"
{{- end }}
{{- if .Values.storage.annotations }}
{{ toYaml .Values.storage.annotations }}
{{ toYaml .Values.storage.annotations | nindent 4 }}
{{- end }}
spec:
accessModes:
Expand Down

0 comments on commit 4fbf4e2

Please sign in to comment.