Skip to content

Commit

Permalink
Release 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mcanevet committed Nov 18, 2020
1 parent 37da7db commit e97af0d
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .gitlab-ci/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ mr:terraform:plan:
variables:
CLUSTER_NAME: $CI_MERGE_REQUEST_TARGET_BRANCH_NAME
script:
- wget -O- https://raw.githubusercontent.com/camptocamp/camptocamp-devops-stack/v0.9.0/scripts/plan.sh | sh
- wget -O- https://raw.githubusercontent.com/camptocamp/camptocamp-devops-stack/v0.10.0/scripts/plan.sh | sh
allow_failure: true
rules:
- if: '$CI_MERGE_REQUEST_ID'
Expand All @@ -29,7 +29,7 @@ pb:terraform:apply:
variables:
CLUSTER_NAME: $CI_COMMIT_REF_NAME
script:
- wget -O- https://raw.githubusercontent.com/camptocamp/camptocamp-devops-stack/v0.9.0/scripts/provision.sh | sh
- wget -O- https://raw.githubusercontent.com/camptocamp/camptocamp-devops-stack/v0.10.0/scripts/provision.sh | sh
environment:
name: cluster/$CI_COMMIT_REF_NAME
on_stop: pb:terraform:destroy
Expand All @@ -47,7 +47,7 @@ pb:terraform:destroy:
variables:
CLUSTER_NAME: $CI_COMMIT_REF_NAME
script:
- wget -O- https://raw.githubusercontent.com/camptocamp/camptocamp-devops-stack/v0.9.0/scripts/destroy.sh | sh
- wget -O- https://raw.githubusercontent.com/camptocamp/camptocamp-devops-stack/v0.10.0/scripts/destroy.sh | sh
environment:
name: cluster/$CI_COMMIT_REF_NAME
action: stop
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.9.0
version: 0.10.0
nav:
- modules/ROOT/nav.adoc
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/CHANGELOG.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= Changelog

== https://github.com/camptocamp/camptocamp-devops-stack/tree/v0.10.0[0.10.0] (unreleased)
== https://github.com/camptocamp/camptocamp-devops-stack/tree/v0.10.0[0.10.0] (2020-11-18)

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

Expand Down
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/release.adoc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
== Release

* Update `docs/modules/ROOT/pages/CHANGELOG.adoc`
* Update the version number (e.g. `v0.9.0`) in the following files (mandatory): https://github.com/camptocamp/camptocamp-devops-stack/blob/master/docs/antora.yml#L4[antora.yml] https://github.com/camptocamp/camptocamp-devops-stack/blob/master/.gitlab-ci/pipeline.yaml[.gitlab-ci/pipeline.yaml]
* Update the version number (e.g. `v0.9.0`) in the following files (mandatory): https://github.com/camptocamp/camptocamp-devops-stack/blob/master/docs/antora.yml#L4[docs/antora.yml] https://github.com/camptocamp/camptocamp-devops-stack/blob/master/.gitlab-ci/pipeline.yaml[.gitlab-ci/pipeline.yaml]
* Optionally update the version number in the following files: https://github.com/camptocamp/camptocamp-devops-stack/blob/master/examples/eks-aws/.gitlab-ci.yml[examples/eks-aws/.gitlab-ci.yml] https://github.com/camptocamp/camptocamp-devops-stack/blob/master/modules/eks-aws/main.tf[examples/eks-aws/terraform/main.tf] https://github.com/camptocamp/camptocamp-devops-stack/blob/master/modules/k3os-libvirt/main.tf[examples/k3os-libvirt-demo-app/terraform/main.tf] https://github.com/camptocamp/camptocamp-devops-stack/blob/master/modules/k3s-docker/main.tf[examples/k3s-docker-demo-app/terraform/main.tf]
* Create a pull request with the updated version. Once it has been reviewed and approved, merge it to `master`
* Tag the merged commit (e.g. `v0.9.0`)
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.9.0/.gitlab-ci/pipeline.yaml
- https://raw.githubusercontent.com/camptocamp/camptocamp-devops-stack/v0.10.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.9.0"
target_revision = "v0.10.0"

kubernetes_host = module.cluster.kubernetes_host
kubernetes_cluster_ca_certificate = module.cluster.kubernetes_cluster_ca_certificate
Expand Down Expand Up @@ -34,7 +34,7 @@ data "aws_iam_role" "eks_admin" {
}

module "cluster" {
source = "git::https://github.com/camptocamp/camptocamp-devops-stack.git//modules/eks-aws?ref=v0.9.0"
source = "git::https://github.com/camptocamp/camptocamp-devops-stack.git//modules/eks-aws?ref=v0.10.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/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.9.0"
target_revision = "v0.10.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.9.0"
source = "git::https://github.com/camptocamp/camptocamp-devops-stack.git//modules/k3os-libvirt?ref=v0.10.0"

cluster_name = terraform.workspace
node_count = 1
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.9.0"
target_revision = "v0.10.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.9.0"
source = "git::https://github.com/camptocamp/camptocamp-devops-stack.git//modules/k3s-docker?ref=v0.10.0"

cluster_name = terraform.workspace
node_count = 1
Expand Down

0 comments on commit e97af0d

Please sign in to comment.