Skip to content

Latest commit

 

History

History
208 lines (110 loc) · 10.4 KB

CHANGELOG.md

File metadata and controls

208 lines (110 loc) · 10.4 KB

Changelog

5.0.0 (2024-10-09)

⚠ BREAKING CHANGES

  • point the Argo CD provider to the new repository (#37)

Features

  • point the Argo CD provider to the new repository (#37) (3c3b79e)

Migrate provider source oboukili -> argoproj-labs

We've tested the procedure found here 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.

  2. Then, check which modules you have that are using the oboukili/argocd provider.

$ 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]
  1. 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.

  2. 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.

  3. Execute the migration via terraform state replace-provider:

$ 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.
  1. Perform a terraform init -upgrade to upgrade your local .terraform folder.

  2. Run a terraform plan or terraform apply and you should see that everything is OK and that no changes are necessary.

4.0.0 (2024-08-20)

⚠ BREAKING CHANGES

  • chart: major update of dependencies on efs-csi-driver chart (#32)
    • The major version bump is related to the replacement of stunnel by efs-utils 2.0.0 on the underlying container image. Consequently, its version has been bumped to version 2.x.y and so the chart had a major bump also. Check the official changelog for the container image here.

Features

  • chart: major update of dependencies on efs-csi-driver chart (#32) (f252ac4)

3.2.1 (2024-08-07)

Bug Fixes

  • change IAM role policy to allow dynamic volume provisioning (#34) (2d258fb)

3.2.0 (2024-04-17)

Features

  • add variable to set resources with default values (#31) (74c4327)

3.1.0 (2024-02-23)

Features

  • chart: patch update of dependencies on efs-csi-driver chart (#26) (cf5d811)

3.0.0 (2024-01-19)

⚠ BREAKING CHANGES

  • remove the ArgoCD namespace variable
  • hardcode the release name to remove the destination cluster

Bug Fixes

  • hardcode the release name to remove the destination cluster (c64e00b)
  • remove the ArgoCD namespace variable (c897ac4)

2.4.0 (2023-11-02)

Features

  • chart: minor update of dependencies on efs-csi-driver chart (#23) (23721ce)

2.3.0 (2023-10-19)

Features

  • add standard variables and variable to add labels to Argo CD app (4fb47a7)
  • add variables to set AppProject and destination cluster (7d70210)

2.2.0 (2023-08-22)

Features

  • chart: patch update of dependencies on efs-csi-driver chart (#20) (58983a9)

2.1.0 (2023-08-10)

Features

  • chart: minor update of dependencies on efs-csi-driver chart (#18) (2cd7e3e)

2.0.1 (2023-08-09)

Bug Fixes

  • readd support to deactivate auto-sync which was broken by #14 (55636df)

2.0.0 (2023-07-11)

⚠ BREAKING CHANGES

  • add support to oboukili/argocd >= v5 (#14)

Features

  • add support to oboukili/argocd >= v5 (#14) (754e1e6)

1.0.2 (2023-05-30)

Bug Fixes

1.0.1 (2023-03-17)

Documentation

  • add Antora Docs folder structure (#8) (aba054f)

1.0.0 (2023-03-08)

Features

  • revamp module similarly to other modules (#4) (ffc6119)

1.0.0-alpha.2 (2023-02-23)

Features

  • add variable for controller role arn annotation (#5) (8f29881)

1.0.0-alpha.1 (2022-11-18)

Continuous Integration

  • add central workflows including release-please (#2) (4ed65b1)