diff --git a/CHANGELOG.md b/CHANGELOG.md index 14a2f939..5a9c922c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project are documented in this file. +## 1.2.3 + +**Release date:** 2024-02-05 + +This release includes flux2 [v2.2.3](https://github.com/fluxcd/flux2/releases/tag/v2.2.3). + ## 1.2.2 **Release date:** 2023-12-19 diff --git a/docs/resources/bootstrap_git.md b/docs/resources/bootstrap_git.md index f77106e6..5f279c77 100644 --- a/docs/resources/bootstrap_git.md +++ b/docs/resources/bootstrap_git.md @@ -43,7 +43,7 @@ resource "flux_bootstrap_git" "this" { - `secret_name` (String) Name of the secret the sync credentials can be found in or stored to. Defaults to `flux-system`. - `timeouts` (Attributes) (see [below for nested schema](#nestedatt--timeouts)) - `toleration_keys` (Set of String) List of toleration keys used to schedule the components pods onto nodes with matching taints. -- `version` (String) Flux version. Defaults to `v2.2.2`. +- `version` (String) Flux version. Defaults to `v2.2.3`. - `watch_all_namespaces` (Boolean) If true watch for custom resources in all namespaces. Defaults to `true`. ### Read-Only diff --git a/internal/utils/flux.go b/internal/utils/flux.go index b3201954..573e466c 100644 --- a/internal/utils/flux.go +++ b/internal/utils/flux.go @@ -16,4 +16,4 @@ limitations under the License. package utils -const DefaultFluxVersion string = "v2.2.2" +const DefaultFluxVersion string = "v2.2.3"