Skip to content

Commit

Permalink
Merge pull request #405 from fluxcd/release-0.25.0
Browse files Browse the repository at this point in the history
Release v0.25.0
  • Loading branch information
phillebaba authored Mar 9, 2023
2 parents e756147 + 7e65f23 commit 2349bd0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

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

## 0.25.0

**Release date:** 2023-03-09

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

This release contains a breaking configuration change. The git repository configuration including the credentials has been moved from the `flux_bootstrap_git` resource to the provider block. Detailed information can be found in the [documentation](./docs/guides/breaking-provider-configuration.md).

## 0.24.2

**Release date:** 2023-02-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 @@ -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.40.2`.
- `version` (String) Flux version. Defaults to `v0.41.0`.
- `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 docs/resources/bootstrap_git.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ resource "flux_bootstrap_git" "this" {
- `registry` (String) Container registry where the toolkit images are published. Defaults to `ghcr.io/fluxcd`.
- `secret_name` (String) Name of the secret the sync credentials can be found in or stored to. Defaults to `flux-system`.
- `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.40.2`.
- `version` (String) Flux version. Defaults to `v0.41.0`.
- `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 internal/utils/flux.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ limitations under the License.

package utils

const DefaultFluxVersion string = "v0.40.2"
const DefaultFluxVersion string = "v0.41.0"

0 comments on commit 2349bd0

Please sign in to comment.