Skip to content

Commit

Permalink
Release 0.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mcanevet committed Dec 17, 2020
1 parent 222dc0b commit b26d126
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 11 deletions.
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.18.0
version: 0.19.0
nav:
- modules/ROOT/nav.adoc
22 changes: 22 additions & 0 deletions docs/modules/ROOT/pages/CHANGELOG.adoc
Original file line number Diff line number Diff line change
@@ -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]
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.18.0
:version: 0.19.0

== Create a new project

Expand Down
2 changes: 1 addition & 1 deletion examples/eks-aws/.gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -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
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.18.0"
target_revision = "v0.19.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.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
Expand Down
2 changes: 1 addition & 1 deletion examples/k3os-libvirt-demo-app/.gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions examples/k3os-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.18.0"
target_revision = "v0.19.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/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
Expand Down
2 changes: 1 addition & 1 deletion examples/k3s-docker-demo-app/.gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -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
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.18.0"
target_revision = "v0.19.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.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
Expand Down

0 comments on commit b26d126

Please sign in to comment.