From 65bb0cf2aae943ebca9ef6964eeb6287fd347c6c Mon Sep 17 00:00:00 2001 From: Hidde Beydals Date: Tue, 3 May 2022 18:43:55 +0200 Subject: [PATCH] Release v0.25.0 Signed-off-by: Hidde Beydals --- CHANGELOG.md | 24 ++++++++++++++++++++++++ config/manager/kustomization.yaml | 2 +- go.mod | 2 +- 3 files changed, 26 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bb6dd15..7325770d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,30 @@ All notable changes to this project are documented in this file. +## 0.25.0 + +**Release date:** 2022-05-03 + +This prerelease adds support for disallowing remote bases in Kustomize overlays +using `--no-remote-bases=true` (default: `false`). When this flag is enabled on +the controller, all resources must refer to local files included in the Source +Artifact, meaning only the Flux Sources can affect the cluster-state. Users +are encouraged to enable it on production systems for security and performance +reasons. + +In addition, support has been introduced for defining a KubeConfig Secret data +key in the `.spec.kubeConfig.SecretRef.key` (default: `value` or `value.yaml`), +and dependencies have been updated. + +Improvements: +- Support defining a KubeConfig Secret data key + [#615](https://github.com/fluxcd/kustomize-controller/pull/615) + [#645](https://github.com/fluxcd/kustomize-controller/pull/645) +- Disallow remote bases usage in Kustomize overlays + [#638](https://github.com/fluxcd/kustomize-controller/pull/638) +- decryptor: improve detection of in and out formats for Secret data fields + [#644](https://github.com/fluxcd/kustomize-controller/pull/644) + ## 0.24.4 **Release date:** 2022-04-28 diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index 5f862554..77461b8b 100644 --- a/config/manager/kustomization.yaml +++ b/config/manager/kustomization.yaml @@ -5,4 +5,4 @@ resources: images: - name: fluxcd/kustomize-controller newName: fluxcd/kustomize-controller - newTag: v0.24.4 + newTag: v0.25.0 diff --git a/go.mod b/go.mod index 160b030a..84657f16 100644 --- a/go.mod +++ b/go.mod @@ -12,7 +12,7 @@ require ( github.com/cyphar/filepath-securejoin v0.2.3 github.com/dimchansky/utfbom v1.1.1 github.com/drone/envsubst v1.0.3 - github.com/fluxcd/kustomize-controller/api v0.24.4 + github.com/fluxcd/kustomize-controller/api v0.25.0 github.com/fluxcd/pkg/apis/acl v0.0.3 github.com/fluxcd/pkg/apis/kustomize v0.3.3 github.com/fluxcd/pkg/apis/meta v0.13.0