Merge pull request #583 from fluxcd/release-0.28.0

Release v0.28.0
This commit is contained in:
Hidde Beydals 2022-12-20 15:57:34 +00:00 committed by GitHub
commit 6f0773d131
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 38 additions and 2 deletions

View File

@ -1,5 +1,41 @@
# Changelog # Changelog
## 0.28.0
**Release date:** 2022-12-20
This prerelease disables the caching of Secret and ConfigMap resources to
improve memory usage. To opt-out from this behaviour, start the controller
with: `--feature-gates=CacheSecretsAndConfigMaps=true`.
In addition, a new flag `--graceful-shutdown-timeout` has been added to
control the duration of the graceful shutdown period. The default value is
`-1` (disabled), to help prevent releases from being stuck due to the
controller being terminated before the Helm action has completed.
Helm has been updated to v3.10.3, which includes security fixes.
Fixes:
- Assign the value of `DisableOpenApiValidation` during upgrade
[#564](https://github.com/fluxcd/helm-controller/pull/564)
- build: Fix cifuzz and improve fuzz tests' reliability
[#565](https://github.com/fluxcd/helm-controller/pull/565)
- Minor typo in doc
[#566](https://github.com/fluxcd/helm-controller/pull/566)
- fuzz: Use build script from upstream and fix fuzzers
[#578](https://github.com/fluxcd/helm-controller/pull/578)
Improvements:
- Disable caching of Secrets and ConfigMaps
[#513](https://github.com/fluxcd/helm-controller/513)
- Allow overriding ctrl manager graceful shutdown timeout
[#570](https://github.com/fluxcd/helm-controller/pull/570)
[#582](https://github.com/fluxcd/helm-controller/pull/582)
- helm: Update SDK to v3.10.3
[#577](https://github.com/fluxcd/helm-controller/pull/577)
- Update source-controller and dependencies
[#581](https://github.com/fluxcd/helm-controller/pull/581)
## 0.27.0 ## 0.27.0
**Release date:** 2022-11-22 **Release date:** 2022-11-22

View File

@ -5,4 +5,4 @@ resources:
images: images:
- name: fluxcd/helm-controller - name: fluxcd/helm-controller
newName: fluxcd/helm-controller newName: fluxcd/helm-controller
newTag: v0.27.0 newTag: v0.28.0

2
go.mod
View File

@ -5,7 +5,7 @@ go 1.18
replace github.com/fluxcd/helm-controller/api => ./api replace github.com/fluxcd/helm-controller/api => ./api
require ( require (
github.com/fluxcd/helm-controller/api v0.27.0 github.com/fluxcd/helm-controller/api v0.28.0
github.com/fluxcd/pkg/apis/acl v0.1.0 github.com/fluxcd/pkg/apis/acl v0.1.0
github.com/fluxcd/pkg/apis/event v0.2.0 github.com/fluxcd/pkg/apis/event v0.2.0
github.com/fluxcd/pkg/apis/kustomize v0.7.0 github.com/fluxcd/pkg/apis/kustomize v0.7.0