Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.0.1 #520

Merged
merged 1 commit into from
Jul 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

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

## 1.0.1

**Release date:** 2023-07-11

This release includes flux2 [v2.0.1](https:/fluxcd/flux2/releases/tag/v2.0.1).

Improvements:
- Update dependencies
[#519](https:/fluxcd/terraform-provider-flux/pull/519)
- Add test for missing configuration
[#515](https:/fluxcd/terraform-provider-flux/pull/515)

## 1.0.0

**Release date:** 2023-07-05
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`.
- `version` (String) Flux version. Defaults to `v2.0.1`.
- `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/provider/resource_bootstrap_git_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ func TestAccBootstrapGit_Upgrade(t *testing.T) {
ProtoV6ProviderFactories: testAccProtoV6ProviderFactories,
Steps: []resource.TestStep{
{
Config: bootstrapGitVersion(env, "v2.0.0-rc.1"),
Config: bootstrapGitVersion(env, "v2.0.0"),
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"
const DefaultFluxVersion string = "v2.0.1"