Skip to content

Commit

Permalink
Merge pull request #272 from fluxcd/release-v0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hiddeco authored Mar 24, 2022
2 parents 2659811 + 3561585 commit dc16077
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,31 @@

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

## 0.12.0

**Release date:** 2022-03-23

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

Flux v0.28 comes with breaking changes, new features, and bug fixes.
Please see the [Upgrade Flux to the Source v1beta2 API](https:/fluxcd/flux2/discussions/2567)
discussion for more details.

### Breaking changes

With the introduction of Source v1beta2, there is a breaking change that
requires a manual state update.

All that is required is to remove the `kubectl_manifest` resource for the
GitRepository manifest. This will cause the kubectl provider to overwrite the
existing manifest.

```shell
terraform state rm 'kubectl_manifest.sync["source.toolkit.fluxcd.io/v1beta1/gitrepository/flux-system/flux-system"]'
```

Future versions of the provider will solve this long term.

## 0.11.3

**Release date:** 2022-03-15
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 @@ -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.27.4`.
- `version` (String) Flux version. Defaults to `v0.28.2`.
- `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.27.4",
Default: "v0.28.2",
ValidateFunc: func(val interface{}, key string) ([]string, []error) {
errs := []error{}
v := val.(string)
Expand Down

0 comments on commit dc16077

Please sign in to comment.