Skip to content

Latest commit

 

History

History
447 lines (248 loc) · 28 KB

CHANGELOG.md

File metadata and controls

447 lines (248 loc) · 28 KB

Changelog

9.0.1 (2024-10-11)

Bug Fixes

  • grafana panels uses angular deprecated plugin (#90) (5c9cafb)

9.0.0 (2024-10-09)

⚠ BREAKING CHANGES

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

Features

  • point the Argo CD provider to the new repository (#88) (8fdd7ec)

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.

8.2.0 (2024-08-28)

Features

8.1.0 (2024-08-20)

Features

  • chart: minor update of dependencies on traefik chart (#83) (58b3f1c)

8.0.0 (2024-08-15)

⚠ BREAKING CHANGES

  • chart: major update of dependencies on traefik chart
    • The v30 of the chart includes a breaking change because the values of the Gateway API implementation have changed. This change does not affect us directly on the DevOps Stack, and since this is a very new feature I do not see it affecting any of our deployments.

Features

  • chart: major update of dependencies on traefik chart (1ba9afa)

7.0.0 (2024-07-10)

⚠ BREAKING CHANGES

  • chart: major update of dependencies on traefik chart (#77):

    • v26.1.0 -> v27.0.0:

      • if you were overriding port exposure behavior using the expose or exposeInternal flags, you should replace them with a service name to boolean mapping (check the official changelog for an example).
      • if you were previously using the service.internal value, you should migrate the values to the service.additionalServices.internal value instead; this should yield the same results, but make sure to carefully check for any changes!
      • resources that use the traefik.containo.us are definitely no longer supported; the other modules of the DevOps Stack have already been migrated, but make sure you make the changes on your side.
    • v27.0.2 -> v28.0.0:

      • multiple CRDs have been updated but the users of the DevOps Stack do not need to update them manually since Argo CD takes care of it;
      • the upstream team added the first experimental support for Traefik v3; a migration guide for your resources is available here;
      • this upgrade also introduces support to OpenTelemetry; although this is not a breaking change, it is noteworthy;
    • v28.3.0 -> v29.0.0:

      • there is change in the values that affects the way we activate the ServiceMonitor for Prometheus; we can now use an attribute enabled to activate it; see here;
      • Kubernetes Gateway support is no longer experimental;
      • the IngressRoute for the Traefik Dashboard is now disabled by default.

Features

  • chart: major update of dependencies on traefik chart (#77) (cb2daac)

6.3.0 (2024-04-17)

Features

  • add variable to set resources with default values (#76) (ed77f88)

6.2.0 (2024-03-01)

Features

  • make the dashboard deployment dynamic (#74) (8b99d6e)

6.1.1 (2024-02-23)

Bug Fixes

6.1.0 (2024-02-23)

Features

  • chart: minor update of dependencies on traefik chart (#69) (1d4d130)

6.0.0 (2024-02-23)

⚠️ BREAKING CHANGES

  • move global variables to the variant that requires them

    After the removal of the redirection middleware, we noticed that the variables cluster_name and base_domain were not used except in the AKS variant, as such, we relocated them specifically to that variant.

    As such, this is a breaking change for all the variants, with the exception of the AKS variant.

⚠️ WARNING

  • remove the middleware to allow configuration of the subdomain

    The addition of the variable subdomain on the other DevOps Stack modules posed some issues with the redirection middleware added by this module when the variable was set as an empty string. Consequently, we pondered on the utility of said middleware and we decided it is best to remove it.

    This is not a breaking change per se, but you need to make sure of 2 things:

    • you callback URLs on your OIDC configuration now need to include both the domain with and without the cluster name, otherwise you will have authentication errors.
    • if you any of your workload´s ingresses relied on the this middleware for redirection, make sure to adapt it to respond to both the domain with and without the cluster name.

Bug Fixes

  • make subdomain variable non-nullable (014bb29)
  • move global variables to the variant that requires them (657a829)
  • remove the middleware to allow configuration of the subdomain (37d7f4d)

5.0.0 (2024-01-15)

⚠ BREAKING CHANGES

  • aks: remove DNS resources from this module
  • remove the ArgoCD namespace variable
  • remove the namespace variable
  • hardcode the release name to remove the destination cluster
  • chart: major update of dependencies on traefik chart (#64): The 2 breaking changes noted on the official release notes are applicable to only the users that overload the deployment.podAnnotations or the experimental.plugins keys. The behavior of these keys has changed, as described in the PRs traefik/traefik-helm-chart#972 and traefik/traefik-helm-chart#961, respectively.

Features

  • aks: remove DNS resources from this module (19eb83a)
  • chart: major update of dependencies on traefik chart (#64) (d7e1327)

Bug Fixes

  • hardcode the release name to remove the destination cluster (18a4d45)
  • remove the ArgoCD namespace variable (524d6c2)
  • remove the namespace variable (3e7b33f)

4.1.0 (2023-11-10)

Features

  • add HTTP to HTTPS redirection with associated variable (574cd2b)

Bug Fixes

  • add propagation of dependency ids on the Scaleway variant (c52a812)
  • change Traefik CRD group to the one introduced in v23 (304f010)

4.0.0 (2023-11-02)

⚠ BREAKING CHANGES

  • chart: major update of dependencies on traefik chart (#60): if you are overloading the following values using the helm_values variable, please beware of the following breaking changes:

    • On redirectTo, ports.web.redirectTo=websecure should become ports.web.redirectTo.port=websecure. More details in this PR.
    • On gateway, all values are now flattened to experimental.kubernetesGateway. More details in this PR.

Features

  • chart: major update of dependencies on traefik chart (#60) (915831e)

3.1.0 (2023-10-19)

Features

  • add standard variables and variable to add labels to Argo CD app (c537d85)
  • add variables to set AppProject and destination cluster (882ebb7)

3.0.0 (2023-08-18)

⚠ BREAKING CHANGES

  • chart: major update of dependencies on traefik chart (#56):

    • v20 -> v21 - the changelog is not clear on what the breaking changes were...
    • v21 -> v22 - image.registry was introduced in the values.yaml and if someone is overriding image.repositoryon their code they may also need to set image.registry (otherwise does not affect the internal code of the module);
    • v22 -> v23 - the API Group of the CRDs was updated from *.traefik.containo.us to *.traefik.io; Argo CD is able to take care of this update automatically; note that for the time being, the chart deploys both versions of the API Group but this could change in the future, sou you need to update your workloads accordingly;
    • v23 -> v24 - healthchecksPort and healthchecksScheme has moved from ports.traefik to deployment;

Features

  • chart: major update of dependencies on traefik chart (#56) (1181b22)

2.0.1 (2023-08-09)

Bug Fixes

  • readd support to deactivate auto-sync which was broken by #52 (c1ac289)

2.0.0 (2023-07-11)

⚠ BREAKING CHANGES

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

Features

  • add support to oboukili/argocd v5 (#52) (dc9191f)

1.2.3 (2023-06-12)

Bug Fixes

  • KinD: avoid deferring data source reading when Helm values change (#50) (5ae76ca)

1.2.2 (2023-05-30)

Bug Fixes

1.2.1 (2023-05-26)

Bug Fixes

  • enable_service_monitor variable propagation from flavors to base module (#46) (5449546)

1.2.0 (2023-05-22)

Features

  • enable monitoring by default and add Grafana dashboard (#41) (b89897d)

1.1.0 (2023-05-17)

Features

  • add variable for replicas (#40) (fdc0613)
  • sks: add configuration to make Traefik work with new SKS module (#44) (50f4f8f)

1.0.0 (2023-03-24)

Documentation

  • add docs structure and PR template (#36) (37b30ab)

1.0.0-alpha.9 (2023-02-22)

Features

1.0.0-alpha.8 (2023-01-31)

Features

1.0.0-alpha.7 (2023-01-30)

Features

  • wait: add dependency to var app_autosync (#30) (430597e)

1.0.0-alpha.6 (2022-12-14)

Bug Fixes

  • main: enrich autosync var and default to true (#28) (5b5b169)

1.0.0-alpha.5 (2022-12-09)

Features

  • main: introduce a variable to set autosync (#25) (b418a72)

1.0.0-alpha.4 (2022-12-06)

Bug Fixes

1.0.0-alpha.3 (2022-12-05)

Features

  • chart: bump Chart version to support proxy-protocol (#16) (0530512)

1.0.0-alpha.2 (2022-12-01)

Bug Fixes

  • aks: homogenize rg naming convention between modules (bba2613)
  • aks: typo (e6778be)
  • separate DNS zone and cluster resource groups (95c9633)

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

⚠ BREAKING CHANGES

  • move Terraform module at repository root
  • sks: remove load-balancer (back into cluster module)
  • use var.cluster_info

Features

  • add aks profile (e21da39)
  • add eks profile (9910a51)
  • add SKS and NodePort support (7e1f79f)
  • add support of scaleway (b4ccc2e)
  • allow value overrides (fb09562)
  • make variables optional (633ea88)
  • merge with cloudposse/utils (e878600)
  • move profiles to submodules (13337a2)
  • pass helm values in HCL (ad36585)
  • pass profiles as a list (ee7a018)
  • sks: add base_domain default (10e849a)
  • sks: add nlb_ip_address output (7d28c88)
  • sks: create NLB (426b494)
  • sks: remove load-balancer (back into cluster module) (4f1a28b)
  • use argocd_namespace as variable (2eef211)

Bug Fixes

  • add extra-variables.tf (637fcdb)
  • aks: add resource_group_name variable (7582dd3)
  • aks: compute dns (5399f91)
  • aks: sym link to version so providers get declared (a6526f5)
  • bump to chart version 15 (9c2b44d)
  • do not delay Helm values evaluation (0ee90ec)
  • Fix infinite redirection (9f9b60b)
  • merge extra_yaml in app values (0819118)
  • README (c8ab992)
  • remove deprecated variable azure_dns_label_name (83acc01)
  • scaleway: add output to scaleway (8ca13d2)
  • sks: add versions.tf (ef39596)
  • use ClusterIP for eks (c1b83a6)
  • values.tmpl.yaml reference in sub-modules (e4e1084)
  • wait for app removel before deleting the project (c1c162c)
  • work around argocd terraform provider default values (88c5ccc)

Code Refactoring

  • move Terraform module at repository root (a1798b9)
  • use var.cluster_info (ee1cb82)

Continuous Integration

  • add central workflows including release-please (#14) (add1f51)