Skip to content

Commit 2349bd0

Browse files
authored
Merge pull request #405 from fluxcd/release-0.25.0
Release v0.25.0
2 parents e756147 + 7e65f23 commit 2349bd0

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.md

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

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

5+
## 0.25.0
6+
7+
**Release date:** 2023-03-09
8+
9+
This prerelease includes flux2 [v0.41.0](https://github.com/fluxcd/flux2/releases/tag/v0.41.0).
10+
11+
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).
12+
513
## 0.24.2
614

715
**Release date:** 2023-02-28

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.40.2`.
44+
- `version` (String) Flux version. Defaults to `v0.41.0`.
4545
- `watch_all_namespaces` (Boolean) If true watch for custom resources in all namespaces. Defaults to `true`.
4646

4747
### Read-Only

docs/resources/bootstrap_git.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ resource "flux_bootstrap_git" "this" {
4242
- `registry` (String) Container registry where the toolkit images are published. Defaults to `ghcr.io/fluxcd`.
4343
- `secret_name` (String) Name of the secret the sync credentials can be found in or stored to. Defaults to `flux-system`.
4444
- `toleration_keys` (Set of String) List of toleration keys used to schedule the components pods onto nodes with matching taints.
45-
- `version` (String) Flux version. Defaults to `v0.40.2`.
45+
- `version` (String) Flux version. Defaults to `v0.41.0`.
4646
- `watch_all_namespaces` (Boolean) If true watch for custom resources in all namespaces. Defaults to `true`.
4747

4848
### Read-Only

internal/utils/flux.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ limitations under the License.
1616

1717
package utils
1818

19-
const DefaultFluxVersion string = "v0.40.2"
19+
const DefaultFluxVersion string = "v0.41.0"

0 commit comments

Comments
 (0)