diff --git a/.gitlab-ci/pipeline.yaml b/.gitlab-ci/pipeline.yaml index 54f8bb47bb..65f23aecce 100644 --- a/.gitlab-ci/pipeline.yaml +++ b/.gitlab-ci/pipeline.yaml @@ -2,7 +2,7 @@ variables: ARGOCD_VERSION: "1.7.6" TERRAFORM_VERSION: "0.13.5" - CAMPTOCAMP_DEVOPS_STACK_VERSION: "0.13.0" + CAMPTOCAMP_DEVOPS_STACK_VERSION: "0.14.0" stages: - terraform diff --git a/docs/antora.yml b/docs/antora.yml index 2d350f3b65..f8751a6d6f 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,6 +1,6 @@ --- name: camptocamp-devops-stack title: Camptocamp’s DevOps stack -version: 0.13.0 +version: 0.14.0 nav: - modules/ROOT/nav.adoc diff --git a/examples/eks-aws/.gitlab-ci.yml b/examples/eks-aws/.gitlab-ci.yml index 3ffdd8f8f1..7c04e0f637 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.13.0/.gitlab-ci/pipeline.yaml + - https://raw.githubusercontent.com/camptocamp/camptocamp-devops-stack/v0.14.0/.gitlab-ci/pipeline.yaml diff --git a/examples/eks-aws/terraform/main.tf b/examples/eks-aws/terraform/main.tf index 286c70b196..4b061ecccf 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.13.0" + target_revision = "v0.14.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.13.0" + source = "git::https://github.com/camptocamp/camptocamp-devops-stack.git//modules/eks-aws?ref=v0.14.0" cluster_name = terraform.workspace cluster_endpoint_public_access_cidrs = local.cluster_endpoint_public_access_cidrs diff --git a/examples/k3os-libvirt-demo-app/terraform/main.tf b/examples/k3os-libvirt-demo-app/terraform/main.tf index b9efece4ae..25835d86e1 100644 --- a/examples/k3os-libvirt-demo-app/terraform/main.tf +++ b/examples/k3os-libvirt-demo-app/terraform/main.tf @@ -1,6 +1,6 @@ locals { repo_url = "https://github.com/camptocamp/camptocamp-devops-stack.git" - target_revision = "v0.13.0" + target_revision = "v0.14.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/k3os-libvirt?ref=v0.13.0" + source = "git::https://github.com/camptocamp/camptocamp-devops-stack.git//modules/k3os-libvirt?ref=v0.14.0" cluster_name = terraform.workspace node_count = 1 diff --git a/examples/k3s-docker-demo-app/terraform/main.tf b/examples/k3s-docker-demo-app/terraform/main.tf index a33ed03c77..a9cced433c 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.13.0" + target_revision = "v0.14.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.13.0" + source = "git::https://github.com/camptocamp/camptocamp-devops-stack.git//modules/k3s-docker?ref=v0.14.0" cluster_name = terraform.workspace node_count = 1