diff --git a/.gitlab-ci/pipeline.yaml b/.gitlab-ci/pipeline.yaml index 486b2ed378..79bcfba1b7 100644 --- a/.gitlab-ci/pipeline.yaml +++ b/.gitlab-ci/pipeline.yaml @@ -2,7 +2,7 @@ variables: ARGOCD_VERSION: "1.7.12" TERRAFORM_VERSION: "0.14.6" - CAMPTOCAMP_DEVOPS_STACK_VERSION: "0.25.0" + CAMPTOCAMP_DEVOPS_STACK_VERSION: "0.26.0" TF_ROOT: terraform stages: diff --git a/docs/antora.yml b/docs/antora.yml index 86290e0efb..828742037d 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,6 +1,6 @@ --- name: camptocamp-devops-stack title: Camptocamp’s DevOps Stack -version: 0.25.0 +version: 0.26.0 nav: - modules/ROOT/nav.adoc diff --git a/examples/eks-aws/.github/workflows/terraform.yml b/examples/eks-aws/.github/workflows/terraform.yml index 03ec433dd6..964dde82f2 100644 --- a/examples/eks-aws/.github/workflows/terraform.yml +++ b/examples/eks-aws/.github/workflows/terraform.yml @@ -14,7 +14,7 @@ jobs: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} AWS_REGION: us-east-1 - CAMPTOCAMP_DEVOPS_STACK_VERSION: 0.25.0 + CAMPTOCAMP_DEVOPS_STACK_VERSION: 0.26.0 TF_ROOT: terraform defaults: run: diff --git a/examples/eks-aws/.gitlab-ci.yml b/examples/eks-aws/.gitlab-ci.yml index e9afbeea27..d4a76fcfe9 100644 --- a/examples/eks-aws/.gitlab-ci.yml +++ b/examples/eks-aws/.gitlab-ci.yml @@ -1,3 +1,3 @@ --- include: - - https://raw.githubusercontent.com/camptocamp/camptocamp-devops-stack/v0.25.0/.gitlab-ci/pipeline.yaml + - https://raw.githubusercontent.com/camptocamp/camptocamp-devops-stack/v0.26.0/.gitlab-ci/pipeline.yaml diff --git a/examples/eks-aws/terraform/main.tf b/examples/eks-aws/terraform/main.tf index a02e422d0e..c4570b6d8f 100644 --- a/examples/eks-aws/terraform/main.tf +++ b/examples/eks-aws/terraform/main.tf @@ -1,7 +1,7 @@ locals { base_domain = "example.com" repo_url = "https://github.com/camptocamp/camptocamp-devops-stack.git" - target_revision = "v0.25.0" + target_revision = "v0.26.0" kubernetes_host = module.cluster.kubernetes_host kubernetes_cluster_ca_certificate = module.cluster.kubernetes_cluster_ca_certificate @@ -25,7 +25,7 @@ data "aws_iam_role" "eks_admin" { } module "cluster" { - source = "git::https://github.com/camptocamp/camptocamp-devops-stack.git//modules/eks/aws?ref=v0.25.0" + source = "git::https://github.com/camptocamp/camptocamp-devops-stack.git//modules/eks/aws?ref=v0.26.0" cluster_name = terraform.workspace cluster_endpoint_public_access_cidrs = local.cluster_endpoint_public_access_cidrs diff --git a/examples/k3s-docker-demo-app/terraform/main.tf b/examples/k3s-docker-demo-app/terraform/main.tf index 1d18320437..d78e365907 100644 --- a/examples/k3s-docker-demo-app/terraform/main.tf +++ b/examples/k3s-docker-demo-app/terraform/main.tf @@ -1,6 +1,6 @@ locals { repo_url = "https://github.com/camptocamp/camptocamp-devops-stack.git" - target_revision = "v0.25.0" + target_revision = "v0.26.0" base_domain = module.cluster.base_domain kubernetes_host = module.cluster.kubernetes_host @@ -10,7 +10,7 @@ locals { } module "cluster" { - source = "git::https://github.com/camptocamp/camptocamp-devops-stack.git//modules/k3s/docker?ref=v0.25.0" + source = "git::https://github.com/camptocamp/camptocamp-devops-stack.git//modules/k3s/docker?ref=v0.26.0" cluster_name = terraform.workspace node_count = 1 diff --git a/examples/k3s-libvirt-demo-app/terraform/main.tf b/examples/k3s-libvirt-demo-app/terraform/main.tf index 714fd3668f..0e0099e0e0 100644 --- a/examples/k3s-libvirt-demo-app/terraform/main.tf +++ b/examples/k3s-libvirt-demo-app/terraform/main.tf @@ -1,6 +1,6 @@ locals { repo_url = "https://github.com/camptocamp/camptocamp-devops-stack.git" - target_revision = "v0.25.0" + target_revision = "v0.26.0" base_domain = module.cluster.base_domain kubernetes_host = module.cluster.kubernetes_host @@ -10,7 +10,7 @@ locals { } module "cluster" { - source = "git::https://github.com/camptocamp/camptocamp-devops-stack.git//modules/k3s/libvirt?ref=v0.25.0" + source = "git::https://github.com/camptocamp/camptocamp-devops-stack.git//modules/k3s/libvirt?ref=v0.26.0" cluster_name = terraform.workspace node_count = 1