Skip to content

Commit

Permalink
Merge pull request #491 from fluxcd/release-1.0.0-rc.5
Browse files Browse the repository at this point in the history
Release v1.0.0-rc.5
  • Loading branch information
hiddeco authored Jun 1, 2023
2 parents ac327a5 + 5ffe674 commit 9c8106c
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

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

## 1.0.0-rc.5

**Release date:** 2023-06-01

This release includes flux2 [v2.0.0-rc.5](https://github.com/fluxcd/flux2/releases/tag/v2.0.0-rc.5).

Flux `v2.0.0-rc.5` addresses a regression that was introduced in `v2.0.0-rc.4`.
This regression caused a disruption in the compatibility with Git servers
utilizing v2 of the wire protocol, such as Azure Devops and AWS CodeCommit.

## 1.0.0-rc.4

**Release date:** 2023-05-29
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 `v2.0.0-rc.3`.
- `version` (String) Flux version. Defaults to `v2.0.0-rc.5`.
- `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" {
- `secret_name` (String) Name of the secret the sync credentials can be found in or stored to. Defaults to `flux-system`.
- `timeouts` (Attributes) (see [below for nested schema](#nestedatt--timeouts))
- `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 `v2.0.0-rc.3`.
- `version` (String) Flux version. Defaults to `v2.0.0-rc.5`.
- `watch_all_namespaces` (Boolean) If true watch for custom resources in all namespaces. Defaults to `true`.

### Read-Only
Expand Down
4 changes: 3 additions & 1 deletion internal/provider/resource_bootstrap_git_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ import (
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/tools/clientcmd"
"sigs.k8s.io/kind/pkg/cluster"

"github.com/fluxcd/terraform-provider-flux/internal/utils"
)

const (
Expand Down Expand Up @@ -233,7 +235,7 @@ func TestAccBootstrapGit_Upgrade(t *testing.T) {
),
},
{
Config: bootstrapGitVersion(env, "v2.0.0-rc.3"),
Config: bootstrapGitVersion(env, utils.DefaultFluxVersion),
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttrSet("flux_bootstrap_git.this", "repository_files.flux-system/kustomization.yaml"),
resource.TestCheckResourceAttrSet("flux_bootstrap_git.this", "repository_files.flux-system/gotk-components.yaml"),
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 = "v2.0.0-rc.3"
const DefaultFluxVersion string = "v2.0.0-rc.5"

0 comments on commit 9c8106c

Please sign in to comment.