Skip to content

Commit

Permalink
Merge pull request #812 from fluxcd/release-0.35.0
Browse files Browse the repository at this point in the history
Release v0.35.0
  • Loading branch information
hiddeco authored Mar 8, 2023
2 parents 367741b + 3bd45b5 commit e3f65fb
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,37 @@

All notable changes to this project are documented in this file.

## 0.35.0

**Release date:** 2023-03-08

This prerelease adds support for disabling the cache of the `kstatus` status
poller, which is used to determine the health of the resources applied by the
controller. To disable the cache, configure the Deployment of the controller
with `--feature-gates=DisableStatusPollerCache=true`.

This may have a positive impact on memory usage on large clusters with many
objects, at the cost of an increased number of API calls.

In addition, `klog` has been configured to log using the same logger as the
rest of the controller (providing a consistent log format), and the controller
will reveal validation errors when force applying resources with immutable field
changes.

Lastly, the controller is now built using Go `1.20`, and the dependencies have
been updated to their latest versions.

Improvements:
- api: update description LastAppliedRevision
[#798](https://github.com/fluxcd/kustomize-controller/pull/798)
- Update Go to 1.20
[#806](https://github.com/fluxcd/kustomize-controller/pull/806)
- Update dependencies
[#807](https://github.com/fluxcd/kustomize-controller/pull/807)
[#811](https://github.com/fluxcd/kustomize-controller/pull/811)
- Use `logger.SetLogger` to also configure `klog`
[#809](https://github.com/fluxcd/kustomize-controller/pull/809)

## 0.34.0

**Release date:** 2023-02-17
Expand Down
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ resources:
images:
- name: fluxcd/kustomize-controller
newName: fluxcd/kustomize-controller
newTag: v0.34.0
newTag: v0.35.0
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ require (
github.com/aws/aws-sdk-go-v2/service/sts v1.18.5
github.com/cyphar/filepath-securejoin v0.2.3
github.com/dimchansky/utfbom v1.1.1
github.com/fluxcd/kustomize-controller/api v0.34.0
github.com/fluxcd/kustomize-controller/api v0.35.0
github.com/fluxcd/pkg/apis/acl v0.1.0
github.com/fluxcd/pkg/apis/event v0.4.1
github.com/fluxcd/pkg/apis/kustomize v0.8.1
Expand Down

0 comments on commit e3f65fb

Please sign in to comment.