Skip to content

Releases: camptocamp/devops-stack-module-loki-stack

v11.0.0

08 Jan 13:24
937b86b
Compare
Choose a tag to compare

11.0.0 (2025-01-08)

⚠ BREAKING CHANGES

  • replace eventHandler by Grafana Alloy (#123)

Features

  • replace eventHandler by Grafana Alloy (#123) (039abe8)

v10.0.0

09 Oct 14:03
25a16f3
Compare
Choose a tag to compare

10.0.0 (2024-10-09)

⚠ BREAKING CHANGES

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

Features

  • point the Argo CD provider to the new repository (#121) (5cd19c8)

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.

v9.0.0

14 Aug 13:57
b1103f9
Compare
Choose a tag to compare

9.0.0 (2024-08-14)

⚠ BREAKING CHANGES

  • sks: remove the cluster_id variable

Features

  • sks: remove the cluster_id variable (62f869e)

Bug Fixes

  • remove the working_directory attribute in the compactor config (0638108)

v8.2.0

15 Jul 14:00
Compare
Choose a tag to compare

8.2.0 (2024-07-15)

Features

  • chart: minor update of dependencies on loki-microservice chart (778a453)

v8.1.0

23 May 11:25
94a0f64
Compare
Choose a tag to compare

8.1.0 (2024-05-17)

Features

  • grafana-event-handler: add tenant id for event handler (#114) (985f8b4)

v8.0.0

23 Apr 09:51
a1750e0
Compare
Choose a tag to compare

8.0.0 (2024-04-23)

⚠ BREAKING CHANGES

  • eks: add option to create IAM role for the metrics storage
    • This is a breaking change because the attributes of the logs_storage variable has changed. Please check the README.adoc to see the differences.

Features

  • eks: add option to create IAM role for the metrics storage (b274598)

v7.2.0

16 Apr 15:10
326805b
Compare
Choose a tag to compare

7.2.0 (2024-04-16)

Features

  • add variable to set resources with default values (b736ecb)
  • enable caching for index writes (5fc2b2c)

v7.1.0

13 Mar 15:28
430f572
Compare
Choose a tag to compare

7.1.0 (2024-03-13)

Features

  • grafana-eventhandler: add affinity parameter to the Helm template (#98) (776c5db)

v7.0.1

22 Jan 15:09
40efe52
Compare
Choose a tag to compare

7.0.1 (2024-01-22)

Bug Fixes

  • aks: add dependencies to fix reading of storage account (#107) (5500537)

v7.0.0

18 Jan 17:07
949479a
Compare
Choose a tag to compare

7.0.0 (2024-01-18)

⚠ BREAKING CHANGES

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

Bug Fixes

  • aks: improve condition on variable validation and reword message (4a55c81)
  • aks: remove image tag because chart has been upgraded (31e74f7)
  • hardcode the release name to remove the destination cluster (61f2ea9)
  • remove the ArgoCD namespace variable (47b8551)
  • remove the namespace variable (cad5e08)