Skip to content

Latest commit

 

History

History
218 lines (124 loc) · 11.3 KB

CHANGELOG.md

File metadata and controls

218 lines (124 loc) · 11.3 KB

Changelog

4.0.0 (2024-10-09)

⚠ BREAKING CHANGES

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

Features

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

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.1.1 (2024-03-01)

Bug Fixes

  • remove legacy ingress annotations (#33) (ede4ddb)

3.1.0 (2024-02-23)

Features

  • add a subdomain variable (fa10461)

Bug Fixes

  • also make the oidc_bootstrap's subdomain variable nullable (18f9435)
  • make subdomain variable non-nullable (7fa7e35)
  • remove annotation for the redirection middleware (ab0171c)

3.0.0 (2024-01-19)

⚠ BREAKING CHANGES

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

Bug Fixes

  • change the default cluster issuer and disabling of TLS verification (e58d8e8)
  • hardcode the release name to remove the destination cluster (b395213)
  • remove the ArgoCD namespace variable (2443680)
  • remove the namespace variable (a434bb1)

2.1.0 (2023-10-19)

Features

  • add standard variables and variable to add labels to Argo CD app (f564ec5)
  • add variables to set AppProject and destination cluster (8510db2)

2.0.1 (2023-08-09)

Bug Fixes

  • readd support to deactivate auto-sync which was broken by #20 (#22) (f1ebfff)

2.0.0 (2023-07-11)

⚠ BREAKING CHANGES

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

Features

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

1.1.1 (2023-05-30)

Bug Fixes

  • add default argocd_namespace (66588ca)

1.1.0 (2023-05-15)

Features

  • oidc_bootstrap: add policy scope to authenticate on MinIO module (#16) (b93a756)

1.0.2 (2023-04-06)

Bug Fixes

  • remove hard curl verison dependency (#12) (d427d9c)

1.0.1 (2023-03-08)

Bug Fixes

  • change to looser versions constraints as per best practices (#10) (817baef)

1.0.0 (2023-02-22)

Features

  • upgrade operator and revamp module (#6) (d8f2232)

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

⚠ BREAKING CHANGES

  • move Terraform module at repository root
  • use var.cluster_info

Features

Bug Fixes

  • add keycloak-operator (8f15d82)
  • allow keycloak-operator helm chart in project (fd8a45b)
  • charts: use ingress v1 (c7356b7)
  • default namespace is keycloak (75d8636)
  • do not delay Helm values evaluation (4950816)
  • helm values (862fcdd)
  • no helm prefix (64cb638)
  • README (4b1f29c)
  • wait for operator to ensure CRDs (6befb7c)

Code Refactoring

  • move Terraform module at repository root (2ff3ed2)
  • use var.cluster_info (a49d9ed)

Continuous Integration

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