mirror of
https://github.com/kubernetes-sigs/external-dns.git
synced 2025-08-06 17:46:57 +02:00
Merge pull request #4103 from jkroepke/avoid-restarts
helm: Avoid unnecessary pod restart on each helm chart version
This commit is contained in:
commit
7f3c10d652
@ -25,6 +25,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
- Added the option to explicitly enable or disable service account token automounting. ([#3983](https://github.com/kubernetes-sigs/external-dns/pull/3983)) [@gilles-gosuin](https://github.com/gilles-gosuin)
|
- Added the option to explicitly enable or disable service account token automounting. ([#3983](https://github.com/kubernetes-sigs/external-dns/pull/3983)) [@gilles-gosuin](https://github.com/gilles-gosuin)
|
||||||
- Added the option to configure revisionHistoryLimit on the K8s Deployment resource. ([#4008](https://github.com/kubernetes-sigs/external-dns/pull/4008)) [@arnisoph](https://github.com/arnisoph)
|
- Added the option to configure revisionHistoryLimit on the K8s Deployment resource. ([#4008](https://github.com/kubernetes-sigs/external-dns/pull/4008)) [@arnisoph](https://github.com/arnisoph)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Avoid unnecessary pod restart on each helm chart version. ([#4103](https://github.com/kubernetes-sigs/external-dns/pull/4103)) [@jkroepke](https://github.com/jkroepke)
|
||||||
|
|
||||||
## [v1.13.1] - 2023-09-07
|
## [v1.13.1] - 2023-09-07
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -29,7 +29,7 @@ spec:
|
|||||||
{{- if or .Values.secretConfiguration.enabled .Values.podAnnotations }}
|
{{- if or .Values.secretConfiguration.enabled .Values.podAnnotations }}
|
||||||
annotations:
|
annotations:
|
||||||
{{- if .Values.secretConfiguration.enabled }}
|
{{- if .Values.secretConfiguration.enabled }}
|
||||||
checksum/secret: {{ include (print $.Template.BasePath "/secret.yaml") . | sha256sum }}
|
checksum/secret: {{ tpl (toYaml .Values.secretConfiguration.data) . | sha256sum }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.podAnnotations }}
|
{{- with .Values.podAnnotations }}
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
|
Loading…
Reference in New Issue
Block a user