Skip to content

Latest commit

 

History

History
211 lines (111 loc) · 10.3 KB

CHANGELOG.md

File metadata and controls

211 lines (111 loc) · 10.3 KB

Changelog

4.0.0 (2024-10-09)

⚠ BREAKING CHANGES

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

Features

  • point the Argo CD provider to the new repository (#39) (8b9453e)

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.

3.6.0 (2024-08-29)

Features

  • chart: minor update of dependencies on ebs-csi-driver chart (#36) (585fd86)

3.5.0 (2024-08-20)

Features

  • chart: minor update of dependencies on ebs-csi-driver chart (#33) (d9d113e)

3.4.1 (2024-08-14)

Bug Fixes

  • re-set the EBS storage class as the default (0424d2c)

3.4.0 (2024-07-10)

Features

  • chart: minor update of dependencies on ebs-csi-driver chart (#30) (c64bda9)

3.3.0 (2024-06-19)

Features

  • chart: minor update of dependencies on ebs-csi-driver chart (#26) (bcaa648)

3.2.0 (2024-04-16)

Features

  • add variable to set resources with default values (#27) (9c10157)

3.1.0 (2024-02-23)

Features

  • chart: minor update of dependencies on ebs-csi-driver chart (#22) (746fce9)

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 (5a01293)
  • remove the ArgoCD namespace variable (b881f16)

2.4.0 (2023-11-02)

Features

  • chart: minor update of dependencies on ebs-csi-driver chart (#19) (bc14dfa)

2.3.0 (2023-10-19)

Features

  • add standard variables and variable to add labels to Argo CD app (02aff70)
  • add variables to set AppProject and destination cluster (143598b)

2.2.0 (2023-08-18)

Features

  • chart: minor update of dependencies on ebs-csi-driver chart (#16) (6e8e29e)

2.1.0 (2023-08-10)

Features

  • chart: minor update of dependencies on ebs-csi-driver chart (#14) (e692e52)

2.0.1 (2023-08-09)

Bug Fixes

  • readd support to deactivate auto-sync which was broken by #10 (10e7fe4)

2.0.0 (2023-07-11)

⚠ BREAKING CHANGES

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

Features

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

1.0.2 (2023-05-30)

Bug Fixes

1.0.1 (2023-03-17)

Documentation

  • add Antora Docs folder structure (#4) (b2e3a07)

1.0.0 (2023-03-08)

Features

  • first commit (43e3668)
  • first implementation of the EBS CSI driver (#2) (2cc1ec6)