diff --git a/charts/common/CHANGELOG.md b/charts/common/CHANGELOG.md index cdb4339d..d32e0e8a 100644 --- a/charts/common/CHANGELOG.md +++ b/charts/common/CHANGELOG.md @@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.5.1] + +### Added + +- Fixed a small typo in `values.yaml`: `ingress.tls.hostTpl` -> `ingress.tls.hostsTpl` + +## [2.5.0] + +### Added + +- Allow setting ingress values through Helm templates: + - `ingress.hosts.hostTpl` + - `ingress.tls.secretNameTpl` + - `ingress.tls.hostsTpl` + ## [2.4.0] ### Added @@ -84,6 +99,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 This is the last version before starting this changelog. All sorts of cool stuff was changed, but only `git log` remembers what that was :slightly_frowning_face: +[2.5.1]: https://github.com/k8s-at-home/charts/tree/common-2.5.1/charts/common + +[2.5.0]: https://github.com/k8s-at-home/charts/tree/common-2.5.0/charts/common + [2.4.0]: https://github.com/k8s-at-home/charts/tree/common-2.4.0/charts/common [2.3.0]: https://github.com/k8s-at-home/charts/tree/common-2.3.0/charts/common diff --git a/charts/common/Chart.yaml b/charts/common/Chart.yaml index 72d30844..0ce36fa3 100644 --- a/charts/common/Chart.yaml +++ b/charts/common/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: common description: Function library for k8s-at-home charts type: library -version: 2.5.0 +version: 2.5.1 keywords: - k8s-at-home - common diff --git a/charts/common/values.yaml b/charts/common/values.yaml index 10df27c8..bb80f9ff 100644 --- a/charts/common/values.yaml +++ b/charts/common/values.yaml @@ -191,7 +191,7 @@ ingress: # hosts: # - chart-example.local ## Or a tpl that is evaluated - # hostTpl: + # hostsTpl: # - '{{ include "common.names.fullname" . }}.{{ .Release.Namespace }}.{{ .Values.ingress.domainname }}' additionalIngresses: [] # - enabled: false