diff --git a/CHANGELOG.md b/CHANGELOG.md index dbd0a7a6..0cc5f6a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,14 @@ All notable changes to this project are documented in this file. -## 0.6.0 +## 0.7.0 + +**Release date:** 2021-11-05 + +This prerelease includes flux2 [v0.21.1](https://github.com/fluxcd/flux2/releases/tag/v0.21.1), +and adds support for defining Tag, SemVer and Commit references in `data.flux_sync`. + +## 0.6.1 **Release date:** 2021-11-01 diff --git a/docs/data-sources/install.md b/docs/data-sources/install.md index 87672660..ab18c447 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.20.1`. +- **version** (String) Flux version. Defaults to `v0.21.1`. - **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 036504e8..0c2908c1 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.20.1", + Default: "v0.21.1", ValidateFunc: func(val interface{}, key string) ([]string, []error) { errs := []error{} v := val.(string)