From d3caf2ffff061964756273feeb9989b90f82970e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 9 Oct 2024 16:02:25 +0200 Subject: [PATCH] chore: release 13.0.0 (#134) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: release 13.0.0 * docs: update CHANGELOG.md * docs(terraform-docs): generate docs and write to README.adoc --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Gonçalo Heleno <33546359+lentidas@users.noreply.github.com> Co-authored-by: lentidas --- CHANGELOG.md | 79 ++++++++++++++++++++++++++++++++++++++++++++++++ README.adoc | 4 +-- aks/README.adoc | 4 +-- eks/README.adoc | 4 +-- kind/README.adoc | 4 +-- sks/README.adoc | 4 +-- variables.tf | 2 +- version.txt | 2 +- 8 files changed, 91 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a3bdbd..9b7a8b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,84 @@ # Changelog +## [13.0.0](https://github.com/camptocamp/devops-stack-module-kube-prometheus-stack/compare/v12.0.0...v13.0.0) (2024-10-09) + + +### ⚠ BREAKING CHANGES + +* point the Argo CD provider to the new repository ([#133](https://github.com/camptocamp/devops-stack-module-kube-prometheus-stack/issues/133)) + +### Features + +* point the Argo CD provider to the new repository ([#133](https://github.com/camptocamp/devops-stack-module-kube-prometheus-stack/issues/133)) ([f69deb2](https://github.com/camptocamp/devops-stack-module-kube-prometheus-stack/commit/f69deb2a68ff31972ce186970f28971e1d403179)) + +### Migrate provider source `oboukili` -> `argoproj-labs` + +We've tested the procedure found [here](https://github.com/argoproj-labs/terraform-provider-argocd?tab=readme-ov-file#migrate-provider-source-oboukili---argoproj-labs) and we think the order of the steps is not exactly right. This is the procedure we recommend (**note that this should be run manually on your machine and not on a CI/CD workflow**): + +1. First, make sure you are already using version 6.2.0 of the `oboukili/argocd` provider. + +1. Then, check which modules you have that are using the `oboukili/argocd` provider. + +```shell +$ terraform providers + +Providers required by configuration: +. +├── provider[registry.terraform.io/hashicorp/helm] 2.15.0 +├── (...) +└── provider[registry.terraform.io/oboukili/argocd] 6.2.0 + +Providers required by state: + + (...) + + provider[registry.terraform.io/oboukili/argocd] + + provider[registry.terraform.io/hashicorp/helm] +``` + +3. Afterwards, proceed to point **ALL* the DevOps Stack modules to the versions that have changed the source on their respective requirements. In case you have other personal modules that also declare `oboukili/argocd` as a requirement, you will also need to update them. + +4. Also update the required providers on your root module. If you've followed our examples, you should find that configuration on the `terraform.tf` file in the root folder. + +5. Execute the migration via `terraform state replace-provider`: + +```bash +$ terraform state replace-provider registry.terraform.io/oboukili/argocd registry.terraform.io/argoproj-labs/argocd +Terraform will perform the following actions: + + ~ Updating provider: + - registry.terraform.io/oboukili/argocd + + registry.terraform.io/argoproj-labs/argocd + +Changing 13 resources: + + module.argocd_bootstrap.argocd_project.devops_stack_applications + module.secrets.module.secrets.argocd_application.this + module.metrics-server.argocd_application.this + module.efs.argocd_application.this + module.loki-stack.module.loki-stack.argocd_application.this + module.thanos.module.thanos.argocd_application.this + module.cert-manager.module.cert-manager.argocd_application.this + module.kube-prometheus-stack.module.kube-prometheus-stack.argocd_application.this + module.argocd.argocd_application.this + module.traefik.module.traefik.module.traefik.argocd_application.this + module.ebs.argocd_application.this + module.helloworld_apps.argocd_application.this + module.helloworld_apps.argocd_project.this + +Do you want to make these changes? +Only 'yes' will be accepted to continue. + +Enter a value: yes + +Successfully replaced provider for 13 resources. +``` + +6. Perform a `terraform init -upgrade` to upgrade your local `.terraform` folder. + +7. Run a `terraform plan` or `terraform apply` and you should see that everything is OK and that no changes are necessary. + ## [12.0.0](https://github.com/camptocamp/devops-stack-module-kube-prometheus-stack/compare/v11.1.1...v12.0.0) (2024-08-22) diff --git a/README.adoc b/README.adoc index 9f53f07..fbf0eb4 100644 --- a/README.adoc +++ b/README.adoc @@ -120,7 +120,7 @@ Description: Override of target revision of the application chart. Type: `string` -Default: `"v12.0.0"` +Default: `"v13.0.0"` ==== [[input_cluster_issuer]] <> @@ -425,7 +425,7 @@ Description: The admin password for Grafana. |[[input_target_revision]] <> |Override of target revision of the application chart. |`string` -|`"v12.0.0"` +|`"v13.0.0"` |no |[[input_cluster_issuer]] <> diff --git a/aks/README.adoc b/aks/README.adoc index 9ec2501..d84c888 100644 --- a/aks/README.adoc +++ b/aks/README.adoc @@ -118,7 +118,7 @@ Description: Override of target revision of the application chart. Type: `string` -Default: `"v12.0.0"` +Default: `"v13.0.0"` ==== [[input_cluster_issuer]] <> @@ -437,7 +437,7 @@ object({ |[[input_target_revision]] <> |Override of target revision of the application chart. |`string` -|`"v12.0.0"` +|`"v13.0.0"` |no |[[input_cluster_issuer]] <> diff --git a/eks/README.adoc b/eks/README.adoc index 1ff5338..c05a27b 100644 --- a/eks/README.adoc +++ b/eks/README.adoc @@ -118,7 +118,7 @@ Description: Override of target revision of the application chart. Type: `string` -Default: `"v12.0.0"` +Default: `"v13.0.0"` ==== [[input_cluster_issuer]] <> @@ -433,7 +433,7 @@ object({ |[[input_target_revision]] <> |Override of target revision of the application chart. |`string` -|`"v12.0.0"` +|`"v13.0.0"` |no |[[input_cluster_issuer]] <> diff --git a/kind/README.adoc b/kind/README.adoc index ab2ebb4..d67eaa1 100644 --- a/kind/README.adoc +++ b/kind/README.adoc @@ -99,7 +99,7 @@ Description: Override of target revision of the application chart. Type: `string` -Default: `"v12.0.0"` +Default: `"v13.0.0"` ==== [[input_cluster_issuer]] <> @@ -396,7 +396,7 @@ object({ |[[input_target_revision]] <> |Override of target revision of the application chart. |`string` -|`"v12.0.0"` +|`"v13.0.0"` |no |[[input_cluster_issuer]] <> diff --git a/sks/README.adoc b/sks/README.adoc index e1338a2..1cb6ddc 100644 --- a/sks/README.adoc +++ b/sks/README.adoc @@ -240,7 +240,7 @@ Description: Override of target revision of the application chart. Type: `string` -Default: `"v12.0.0"` +Default: `"v13.0.0"` ==== [[input_cluster_issuer]] <> @@ -542,7 +542,7 @@ object({ |[[input_target_revision]] <> |Override of target revision of the application chart. |`string` -|`"v12.0.0"` +|`"v13.0.0"` |no |[[input_cluster_issuer]] <> diff --git a/variables.tf b/variables.tf index e3f0f62..ac3184b 100644 --- a/variables.tf +++ b/variables.tf @@ -40,7 +40,7 @@ variable "destination_cluster" { variable "target_revision" { description = "Override of target revision of the application chart." type = string - default = "v12.0.0" # x-release-please-version + default = "v13.0.0" # x-release-please-version } variable "cluster_issuer" { diff --git a/version.txt b/version.txt index 4044f90..02161ca 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -12.0.0 +13.0.0