Skip to content

Commit

Permalink
Merge pull request #315 from fluxcd/release-0.15.3
Browse files Browse the repository at this point in the history
Release v0.15.3
  • Loading branch information
stefanprodan authored Jun 30, 2022
2 parents 0543419 + 0260ec2 commit b1b00f5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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

## 0.15.3

**Release date:** 2022-06-28

This prerelease includes flux2 [v0.31.3](https:/fluxcd/flux2/releases/tag/v0.31.3).

## 0.15.2

**Release date:** 2022-06-28
Expand Down
2 changes: 1 addition & 1 deletion docs/data-sources/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.31.2`.
- `version` (String) Flux version. Defaults to `v0.31.3`.
- `watch_all_namespaces` (Boolean) If true watch for custom resources in all namespaces. Defaults to `true`.

### Read-Only
Expand Down
2 changes: 1 addition & 1 deletion pkg/provider/data_install.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func DataInstall() *schema.Resource {
Description: "Flux version.",
Type: schema.TypeString,
Optional: true,
Default: "v0.31.2",
Default: "v0.31.3",
ValidateFunc: func(val interface{}, key string) ([]string, []error) {
errs := []error{}
v := val.(string)
Expand Down

0 comments on commit b1b00f5

Please sign in to comment.