Skip to content

Commit

Permalink
Release 0.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mcanevet committed Feb 3, 2021
1 parent c32fb3d commit 4c8dc31
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
variables:
ARGOCD_VERSION: "1.7.11"
TERRAFORM_VERSION: "0.13.5"
CAMPTOCAMP_DEVOPS_STACK_VERSION: "0.21.1"
CAMPTOCAMP_DEVOPS_STACK_VERSION: "0.22.0"

stages:
- terraform
Expand Down
2 changes: 1 addition & 1 deletion docs/antora.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: camptocamp-devops-stack
title: Camptocamp’s DevOps stack
version: 0.21.1
version: 0.22.0
nav:
- modules/ROOT/nav.adoc
19 changes: 19 additions & 0 deletions docs/modules/ROOT/pages/CHANGELOG.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
= Changelog

== https://github.com/camptocamp/camptocamp-devops-stack/tree/v0.22.0[0.22.0] (2021-02-03)

https://github.com/camptocamp/camptocamp-devops-stack/compare/v0.21.1...v0.22.0[Full Changelog]

*Implemented enhancements:*

* Integration of thanos together with minio S3 buckets https://github.com/camptocamp/camptocamp-devops-stack/pull/430[#430] (https://github.com/pburgisser[pburgisser])
* Add aadpodidentity to Prometheus https://github.com/camptocamp/camptocamp-devops-stack/pull/432[#432] (https://github.com/mcanevet[mcanevet])
* Allow to create SecretProviderClass for Prometheus https://github.com/camptocamp/camptocamp-devops-stack/pull/433[#433] (https://github.com/mcanevet[mcanevet])

*Upgraded components:*

* Upgrade ArgoCD helm chart https://github.com/camptocamp/camptocamp-devops-stack/pull/429[#429] (https://github.com/mcanevet[mcanevet])

*Fixed Bugs*

* [k3s-docker] don't use insecure connection in helm provider https://github.com/camptocamp/camptocamp-devops-stack/pull/426[#426] (https://github.com/mcanevet[mcanevet])
* Fix wait for app of apps script https://github.com/camptocamp/camptocamp-devops-stack/pull/428[#428] (https://github.com/mcanevet[mcanevet])

== https://github.com/camptocamp/camptocamp-devops-stack/tree/v0.21.1[0.21.1] (2021-01-27)

https://github.com/camptocamp/camptocamp-devops-stack/compare/v0.21.0...v0.21.1[Full Changelog]
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/new_project.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
:project-name: camptocamp-devops-stack
:url-repo: https://github.com/camptocamp/{project-name}.git
:version: 0.21.1
:version: 0.22.0

== Create a new project

Expand Down
4 changes: 2 additions & 2 deletions examples/eks-aws/terraform/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
locals {
base_domain = "example.com"
repo_url = "https://github.com/camptocamp/camptocamp-devops-stack.git"
target_revision = "v0.21.1"
target_revision = "v0.22.0"

kubernetes_host = module.cluster.kubernetes_host
kubernetes_cluster_ca_certificate = module.cluster.kubernetes_cluster_ca_certificate
Expand All @@ -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.21.1"
source = "git::https://github.com/camptocamp/camptocamp-devops-stack.git//modules/eks/aws?ref=v0.22.0"

cluster_name = terraform.workspace
cluster_endpoint_public_access_cidrs = local.cluster_endpoint_public_access_cidrs
Expand Down
4 changes: 2 additions & 2 deletions examples/k3s-docker-demo-app/terraform/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
locals {
repo_url = "https://github.com/camptocamp/camptocamp-devops-stack.git"
target_revision = "v0.21.1"
target_revision = "v0.22.0"

base_domain = module.cluster.base_domain
kubernetes_host = module.cluster.kubernetes_host
Expand All @@ -10,7 +10,7 @@ locals {
}

module "cluster" {
source = "git::https://github.com/camptocamp/camptocamp-devops-stack.git//modules/k3s/docker?ref=v0.21.1"
source = "git::https://github.com/camptocamp/camptocamp-devops-stack.git//modules/k3s/docker?ref=v0.22.0"

cluster_name = terraform.workspace
node_count = 1
Expand Down
4 changes: 2 additions & 2 deletions examples/k3s-libvirt-demo-app/terraform/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
locals {
repo_url = "https://github.com/camptocamp/camptocamp-devops-stack.git"
target_revision = "v0.21.1"
target_revision = "v0.22.0"

base_domain = module.cluster.base_domain
kubernetes_host = module.cluster.kubernetes_host
Expand All @@ -10,7 +10,7 @@ locals {
}

module "cluster" {
source = "git::https://github.com/camptocamp/camptocamp-devops-stack.git//modules/k3s/libvirt?ref=v0.21.1"
source = "git::https://github.com/camptocamp/camptocamp-devops-stack.git//modules/k3s/libvirt?ref=v0.22.0"

cluster_name = terraform.workspace
node_count = 1
Expand Down

0 comments on commit 4c8dc31

Please sign in to comment.