Skip to content

Latest commit

 

History

History
238 lines (125 loc) · 11.1 KB

CHANGELOG.md

File metadata and controls

238 lines (125 loc) · 11.1 KB

Changelog

4.0.0 (2024-10-09)

⚠ BREAKING CHANGES

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

Features

  • point the Argo CD provider to the new repository (#44) (9cd1936)

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.9.0 (2024-10-07)

Features

  • rules: remove LonghornVolumeActualSpaceUsedWarning (8d17364)

3.8.0 (2024-09-04)

Features

  • move recurring jobs to their own resources (4a441d2)

Bug Fixes

  • remove attribute causing issues when bootstrapping cluster (57c311d)

3.7.0 (2024-08-20)

Features

  • chart: minor update of dependencies on longhorn chart (#37) (83c1de8)

3.6.0 (2024-06-18)

Features

  • chart: patch update of dependencies on longhorn chart (#33) (b14477e)

3.5.0 (2024-04-16)

Features

  • upgrade OAuth Proxy image version (6e6ce6f)

Bug Fixes

  • fix upgrade check which was broken by the chart v1.6.0 (72d6223)

3.4.0 (2024-03-01)

Features

  • chart: minor update of dependencies on longhorn chart (#28) (32b3a96)

3.3.1 (2024-03-01)

Bug Fixes

  • remove legacy ingress annotations (c1613f6)

3.3.0 (2024-02-23)

Features

  • add a subdomain variable (0515a54)

Bug Fixes

  • make subdomain variable non-nullable (9e98d8c)
  • remove annotation for the redirection middleware (a1ed297)

3.2.1 (2024-01-26)

Bug Fixes

  • conditional issue with persistence defaultClass helm variable (#25) (f879d01)

3.2.0 (2024-01-26)

Features

  • add automatic filesystem trim feature using recurringjob (8c3647c)
  • add variable for additional alerts labels (9dbf9aa)

3.1.0 (2024-01-25)

Features

  • chart: minor update of dependencies on longhorn chart (#12) (d26a8fd)

3.0.0 (2024-01-19)

⚠ BREAKING CHANGES

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

Bug Fixes

  • change the default cluster issuer (c09df57)
  • hardcode the release name to remove the destination cluster (1759d38)
  • remove the ArgoCD namespace variable (2893a68)
  • remove the namespace variable (841175e)

2.3.0 (2023-10-19)

Features

  • add standard variables and variable to add labels to Argo CD app (8ec1b98)
  • add variables to set AppProject and destination cluster (74d6627)
  • update OAuth2-Proxy version (a817040)

2.2.0 (2023-08-23)

Features

  • parameterize backup and replicas settings and tweak default values (9ba0c11)

2.1.1 (2023-08-09)

Bug Fixes

  • readd support to deactivate auto-sync which was broken by #6 (8e26944)

2.1.0 (2023-07-19)

Features

  • add toleration variable to deploy Longhorn on tainted nodes (#8) (d8f458c)

2.0.0 (2023-07-11)

⚠ BREAKING CHANGES

  • add support to oboukili/argocd v5 (#6)

Features

  • add support to oboukili/argocd v5 (#6) (a1d25e5)

1.0.0 (2023-06-28)

Features

  • initial module implementation (#1) (99d1afb)