Skip to content

Commit afe1ed5

Browse files
authored
Merge pull request #342 from fluxcd/release-0.21.0
Release v0.21.0
2 parents 1d7726d + 0fb0b65 commit afe1ed5

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project are documented in this file.
44

5+
## 0.21.0
6+
7+
**Release date:** 2022-11-22
8+
9+
This prerelease includes flux2 [v0.37.0](https://github.com/fluxcd/flux2/releases/tag/v0.37.0).
10+
511
## 0.20.0
612

713
**Release date:** 2022-10-24

docs/data-sources/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ data "flux_install" "main" {
4141
- `network_policy` (Boolean) Deny ingress access to the toolkit controllers from other namespaces using network policies. Defaults to `true`.
4242
- `registry` (String) Container registry where the toolkit images are published. Defaults to `ghcr.io/fluxcd`.
4343
- `toleration_keys` (Set of String) List of toleration keys used to schedule the components pods onto nodes with matching taints.
44-
- `version` (String) Flux version. Defaults to `v0.36.0`.
44+
- `version` (String) Flux version. Defaults to `v0.37.0`.
4545
- `watch_all_namespaces` (Boolean) If true watch for custom resources in all namespaces. Defaults to `true`.
4646

4747
### Read-Only

pkg/provider/data_install.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ func DataInstall() *schema.Resource {
4747
Description: "Flux version.",
4848
Type: schema.TypeString,
4949
Optional: true,
50-
Default: "v0.36.0",
50+
Default: "v0.37.0",
5151
ValidateFunc: func(val interface{}, key string) ([]string, []error) {
5252
errs := []error{}
5353
v := val.(string)

0 commit comments

Comments
 (0)