From 5e1219368a53a41798e871b62980be8b595ac294 Mon Sep 17 00:00:00 2001 From: Sunny Date: Fri, 30 Sep 2022 14:38:21 +0530 Subject: [PATCH] Release v0.19.0 Includes Flux v0.35.0 Signed-off-by: Sunny --- CHANGELOG.md | 6 ++++++ docs/data-sources/install.md | 2 +- pkg/provider/data_install.go | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f11449fd..605b9369 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project are documented in this file. +## 0.19.0 + +**Release date:** 2022-09-30 + +This prerelease includes flux2 [v0.35.0](https://github.com/fluxcd/flux2/releases/tag/v0.35.0). + ## 0.18.0 **Release date:** 2022-09-12 diff --git a/docs/data-sources/install.md b/docs/data-sources/install.md index af987486..4e3a307a 100644 --- a/docs/data-sources/install.md +++ b/docs/data-sources/install.md @@ -42,7 +42,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.34.0`. +- `version` (String) Flux version. Defaults to `v0.35.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 48413882..c825a1e7 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.34.0", + Default: "v0.35.0", ValidateFunc: func(val interface{}, key string) ([]string, []error) { errs := []error{} v := val.(string)