From faf35da8e51b44f0d7000a62922b0d2434aadb87 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 14:49:35 +0200 Subject: [PATCH] chore: bump chart version to '0.1.58' (#54) --- CHANGELOG.md | 2 ++ Makefile | 2 +- README.md | 4 ++-- variables.tf | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fe405e..675ba05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ ## [Unreleased] +- chore: bump chart version to '0.1.58' +- chore: Update changelog for refs/heads/main ([#53](https://github.com/spotinst/terraform-ocean-kubernetes-controller/issues/53)) diff --git a/Makefile b/Makefile index 26c0845..bdee148 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ .PHONY: generate generate: @echo "Generating README..." - @docker run --rm -v "$(shell pwd):/terraform-docs" quay.io/terraform-docs/terraform-docs:0.17.0 markdown table /terraform-docs + @docker run --rm -v "$(shell pwd):/terraform-docs" --platform "linux/amd64" quay.io/terraform-docs/terraform-docs:0.17.0 markdown table /terraform-docs @echo "Generating CHANGELOG..." @docker run --rm -v "$(shell pwd):/workdir" quay.io/git-chglog/git-chglog -o CHANGELOG.md diff --git a/README.md b/README.md index 78448d7..a3b310e 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ module "kubernetes-controller" { |------|-------------|------|---------|:--------:| | [base\_url](#input\_base\_url) | Specifies the base URL to be used by the HTTP client | `string` | `null` | no | | [ca\_bundle\_secret\_name](#input\_ca\_bundle\_secret\_name) | Overrides the default secret name for custom CA bundle | `string` | `null` | no | -| [chart\_version](#input\_chart\_version) | Specifies the version of the Helm chart to be installed | `string` | `"0.1.57"` | no | +| [chart\_version](#input\_chart\_version) | Specifies the version of the Helm chart to be installed | `string` | `"0.1.58"` | no | | [cluster\_identifier](#input\_cluster\_identifier) | Specifies the cluster identifier | `string` | `null` | no | | [config\_map\_name](#input\_config\_map\_name) | Overrides the default configmap name | `string` | `null` | no | | [controller\_image](#input\_controller\_image) | Specifies the Docker image name for the Ocean Controller that should be deployed | `string` | `null` | no | @@ -60,7 +60,7 @@ module "kubernetes-controller" { | Name | Version | |------|---------| -| [helm](#provider\_helm) | >= 2.12.1 | +| [helm](#provider\_helm) | 2.12.1 | ## Requirements | Name | Version | diff --git a/variables.tf b/variables.tf index 5a63730..b9c1218 100644 --- a/variables.tf +++ b/variables.tf @@ -1,7 +1,7 @@ variable "chart_version" { type = string description = "Specifies the version of the Helm chart to be installed" - default = "0.1.57" + default = "0.1.58" nullable = false }