From 001b31db39a0ec0941986df32b53cb80f4102488 Mon Sep 17 00:00:00 2001 From: Stefan Prodan Date: Tue, 19 Sep 2023 15:24:24 +0300 Subject: [PATCH] Release v1.1.1 Signed-off-by: Stefan Prodan --- CHANGELOG.md | 6 ++++++ docs/resources/bootstrap_git.md | 2 +- internal/utils/flux.go | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b42e7b5..5b27d150 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project are documented in this file. +## 1.1.1 + +**Release date:** 2023-09-19 + +This release includes flux2 [v2.1.1](https://github.com/fluxcd/flux2/releases/tag/v2.1.1). + ## 1.1.0 **Release date:** 2023-08-24 diff --git a/docs/resources/bootstrap_git.md b/docs/resources/bootstrap_git.md index 9d44af21..1a1de5bc 100644 --- a/docs/resources/bootstrap_git.md +++ b/docs/resources/bootstrap_git.md @@ -42,7 +42,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.1.0`. +- `version` (String) Flux version. Defaults to `v2.1.1`. - `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 c6c8095c..4e0079db 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.1.0" +const DefaultFluxVersion string = "v2.1.1"