5.0.0 (2024-10-09)
- point the Argo CD provider to the new repository (#37)
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):
-
First, make sure you are already using version 6.2.0 of the
oboukili/argocd
provider. -
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]
-
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. -
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. -
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.
-
Perform a
terraform init -upgrade
to upgrade your local.terraform
folder. -
Run a
terraform plan
orterraform apply
and you should see that everything is OK and that no changes are necessary.
4.0.0 (2024-08-20)
- chart: major update of dependencies on efs-csi-driver chart (#32)
- The major version bump is related to the replacement of
stunnel
byefs-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.
- The major version bump is related to the replacement of
3.2.1 (2024-08-07)
3.2.0 (2024-04-17)
3.1.0 (2024-02-23)
3.0.0 (2024-01-19)
- remove the ArgoCD namespace variable
- hardcode the release name to remove the destination cluster
- hardcode the release name to remove the destination cluster (c64e00b)
- remove the ArgoCD namespace variable (c897ac4)
2.4.0 (2023-11-02)
2.3.0 (2023-10-19)
- 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)
2.1.0 (2023-08-10)
2.0.1 (2023-08-09)
2.0.0 (2023-07-11)
- add support to oboukili/argocd >= v5 (#14)
1.0.2 (2023-05-30)
- add missing provider (ead06ca)