From 72f82832b6f666a9fe8263f140880656a90ff3d1 Mon Sep 17 00:00:00 2001 From: Hidde Beydals Date: Wed, 24 Nov 2021 12:47:16 +0100 Subject: [PATCH] Release v0.8.0 Signed-off-by: Hidde Beydals --- CHANGELOG.md | 8 ++++++++ docs/data-sources/install.md | 2 +- pkg/provider/data_install.go | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 46aec86c..034bb2f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project are documented in this file. +## 0.8.0 + +**Release date:** 2021-11-24 + +This prerelease includes flux2 [v0.24.0](https://github.com/fluxcd/flux2/releases/tag/v0.24.0), +and allows for [enabling bootstrap customization of Flux components](https://github.com/fluxcd/terraform-provider-flux/pull/217) +through Terraform config. + ## 0.7.3 **Release date:** 2021-11-12 diff --git a/docs/data-sources/install.md b/docs/data-sources/install.md index 29a4afeb..8469d0e2 100644 --- a/docs/data-sources/install.md +++ b/docs/data-sources/install.md @@ -41,7 +41,7 @@ data "flux_install" "main" { - **network_policy** (Boolean) Deny ingress access to the toolkit controllers from other namespaces using network policies. Defaults to `true`. - **registry** (String) Container registry where the toolkit images are published. Defaults to `ghcr.io/fluxcd`. - **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 `v0.23.0`. +- **version** (String) Flux version. Defaults to `v0.24.0`. - **watch_all_namespaces** (Boolean) If true watch for custom resources in all namespaces. Defaults to `true`. ### Read-Only diff --git a/pkg/provider/data_install.go b/pkg/provider/data_install.go index 336d7463..26334a96 100644 --- a/pkg/provider/data_install.go +++ b/pkg/provider/data_install.go @@ -47,7 +47,7 @@ func DataInstall() *schema.Resource { Description: "Flux version.", Type: schema.TypeString, Optional: true, - Default: "v0.23.0", + Default: "v0.24.0", ValidateFunc: func(val interface{}, key string) ([]string, []error) { errs := []error{} v := val.(string)