From b26d1268aa7a8b01d3964d2cbda444d4789131bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Can=C3=A9vet?= Date: Thu, 17 Dec 2020 08:45:26 +0100 Subject: [PATCH] Release 0.19.0 --- docs/antora.yml | 2 +- docs/modules/ROOT/pages/CHANGELOG.adoc | 22 +++++++++++++++++++ docs/modules/ROOT/pages/new_project.adoc | 2 +- examples/eks-aws/.gitlab-ci.yml | 2 +- examples/eks-aws/terraform/main.tf | 4 ++-- examples/k3os-libvirt-demo-app/.gitlab-ci.yml | 2 +- .../k3os-libvirt-demo-app/terraform/main.tf | 4 ++-- examples/k3s-docker-demo-app/.gitlab-ci.yml | 2 +- .../k3s-docker-demo-app/terraform/main.tf | 4 ++-- 9 files changed, 33 insertions(+), 11 deletions(-) diff --git a/docs/antora.yml b/docs/antora.yml index d16dbed3ed..cd5cc29401 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,6 +1,6 @@ --- name: camptocamp-devops-stack title: Camptocamp’s DevOps stack -version: 0.18.0 +version: 0.19.0 nav: - modules/ROOT/nav.adoc diff --git a/docs/modules/ROOT/pages/CHANGELOG.adoc b/docs/modules/ROOT/pages/CHANGELOG.adoc index f8cff0086b..ad88bf3aed 100644 --- a/docs/modules/ROOT/pages/CHANGELOG.adoc +++ b/docs/modules/ROOT/pages/CHANGELOG.adoc @@ -1,5 +1,27 @@ = Changelog +== https://github.com/camptocamp/camptocamp-devops-stack/tree/v0.19.0[0.19.0] (2020-12-17) + +https://github.com/camptocamp/camptocamp-devops-stack/compare/v0.18.0...v0.19.0[Full Changelog] + +*Implemented enhancements:* + +* Enable automatic pruning of resources https://github.com/camptocamp/camptocamp-devops-stack/pull/400[#400] (https://github.com/mcanevet[mcanevet]) + +*Upgraded components:* + +* Upgrade dependencies for eks-aws https://github.com/camptocamp/camptocamp-devops-stack/pull/397[#397] (https://github.com/mcanevet[mcanevet]) +* Upgrade AAD Pod Identity to 1.7.1 https://github.com/camptocamp/camptocamp-devops-stack/pull/399[#399] (https://github.com/mcanevet[mcanevet]) + +*Fixed bugs:* + +* Don't set provider version in generic module https://github.com/camptocamp/camptocamp-devops-stack/pull/396[#396] (https://github.com/mcanevet[mcanevet]) + +*Documentation:* + +* Update new_project when releasing https://github.com/camptocamp/camptocamp-devops-stack/pull/382[#382] (https://github.com/raphink[raphink]) +* Add reference > authentication https://github.com/camptocamp/camptocamp-devops-stack/pull/383[#383] (https://github.com/raphink[raphink]) + == https://github.com/camptocamp/camptocamp-devops-stack/tree/v0.18.0[0.18.0] (2020-12-15) https://github.com/camptocamp/camptocamp-devops-stack/compare/v0.17.0...v0.18.0[Full Changelog] diff --git a/docs/modules/ROOT/pages/new_project.adoc b/docs/modules/ROOT/pages/new_project.adoc index 775887f1c5..3e5d685838 100644 --- a/docs/modules/ROOT/pages/new_project.adoc +++ b/docs/modules/ROOT/pages/new_project.adoc @@ -1,6 +1,6 @@ :project-name: camptocamp-devops-stack :url-repo: https://github.com/camptocamp/{project-name}.git -:version: 0.18.0 +:version: 0.19.0 == Create a new project diff --git a/examples/eks-aws/.gitlab-ci.yml b/examples/eks-aws/.gitlab-ci.yml index 3cc177376d..dfac46a939 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.18.0/.gitlab-ci/pipeline.yaml + - https://raw.githubusercontent.com/camptocamp/camptocamp-devops-stack/v0.19.0/.gitlab-ci/pipeline.yaml diff --git a/examples/eks-aws/terraform/main.tf b/examples/eks-aws/terraform/main.tf index 00fc911ae8..97c959d629 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.18.0" + target_revision = "v0.19.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.18.0" + source = "git::https://github.com/camptocamp/camptocamp-devops-stack.git//modules/eks-aws?ref=v0.19.0" cluster_name = terraform.workspace cluster_endpoint_public_access_cidrs = local.cluster_endpoint_public_access_cidrs diff --git a/examples/k3os-libvirt-demo-app/.gitlab-ci.yml b/examples/k3os-libvirt-demo-app/.gitlab-ci.yml index 3cc177376d..dfac46a939 100644 --- a/examples/k3os-libvirt-demo-app/.gitlab-ci.yml +++ b/examples/k3os-libvirt-demo-app/.gitlab-ci.yml @@ -1,3 +1,3 @@ --- include: - - https://raw.githubusercontent.com/camptocamp/camptocamp-devops-stack/v0.18.0/.gitlab-ci/pipeline.yaml + - https://raw.githubusercontent.com/camptocamp/camptocamp-devops-stack/v0.19.0/.gitlab-ci/pipeline.yaml diff --git a/examples/k3os-libvirt-demo-app/terraform/main.tf b/examples/k3os-libvirt-demo-app/terraform/main.tf index 435e7fb27e..43b3971a3a 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.18.0" + target_revision = "v0.19.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.18.0" + source = "git::https://github.com/camptocamp/camptocamp-devops-stack.git//modules/k3os-libvirt?ref=v0.19.0" cluster_name = terraform.workspace node_count = 1 diff --git a/examples/k3s-docker-demo-app/.gitlab-ci.yml b/examples/k3s-docker-demo-app/.gitlab-ci.yml index 3cc177376d..dfac46a939 100644 --- a/examples/k3s-docker-demo-app/.gitlab-ci.yml +++ b/examples/k3s-docker-demo-app/.gitlab-ci.yml @@ -1,3 +1,3 @@ --- include: - - https://raw.githubusercontent.com/camptocamp/camptocamp-devops-stack/v0.18.0/.gitlab-ci/pipeline.yaml + - https://raw.githubusercontent.com/camptocamp/camptocamp-devops-stack/v0.19.0/.gitlab-ci/pipeline.yaml diff --git a/examples/k3s-docker-demo-app/terraform/main.tf b/examples/k3s-docker-demo-app/terraform/main.tf index 6e6b57cfa0..72d60b4aea 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.18.0" + target_revision = "v0.19.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.18.0" + source = "git::https://github.com/camptocamp/camptocamp-devops-stack.git//modules/k3s-docker?ref=v0.19.0" cluster_name = terraform.workspace node_count = 1