From cb29884a69b12836033471d9aca429addde966b1 Mon Sep 17 00:00:00 2001 From: semantic-release-bot <semantic-release-bot@martynus.net> Date: Fri, 3 Sep 2021 10:11:24 +0000 Subject: [PATCH] chore(release): 2.0.0 [skip ci] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # [2.0.0](https://gitlab.com/to-be-continuous/helm/compare/1.4.2...2.0.0) (2021-09-03) ### Features * Change boolean variable behaviour ([7c72363](https://gitlab.com/to-be-continuous/helm/commit/7c72363c466beb98624d64c220bfa7c1445d4586)) ### BREAKING CHANGES * boolean variable now triggered on explicit 'true' value Signed-off-by: Cédric OLIVIER <cedric3.olivier@orange.com> --- README.md | 6 +++--- templates/gitlab-ci-helm-vault.yml | 2 +- templates/gitlab-ci-helm.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 6b12a01..29c3204 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ In order to include this template in your project, add the following to your `gi ```yaml include: - project: 'to-be-continuous/helm' - ref: '1.4.2' + ref: '2.0.0' file: '/templates/gitlab-ci-helm.yml' ``` @@ -327,11 +327,11 @@ With: include: # main template - project: 'to-be-continuous/helm' - ref: '1.4.2' + ref: '2.0.0' file: '/templates/gitlab-ci-helm.yml' # Vault variant - project: 'to-be-continuous/helm' - ref: '1.4.2' + ref: '2.0.0' file: '/templates/gitlab-ci-helm-vault.yml' variables: diff --git a/templates/gitlab-ci-helm-vault.yml b/templates/gitlab-ci-helm-vault.yml index 7535858..e5ab1e2 100644 --- a/templates/gitlab-ci-helm-vault.yml +++ b/templates/gitlab-ci-helm-vault.yml @@ -9,6 +9,6 @@ variables: .helm-base: services: - name: "$CI_REGISTRY/to-be-continuous/tools/tracking:master" - command: ["--service", "helm", "1.4.2" ] + command: ["--service", "helm", "2.0.0" ] - name: "$CI_REGISTRY/to-be-continuous/tools/vault-secrets-provider:master" alias: "vault-secrets-provider" diff --git a/templates/gitlab-ci-helm.yml b/templates/gitlab-ci-helm.yml index eed485a..4fde5d2 100644 --- a/templates/gitlab-ci-helm.yml +++ b/templates/gitlab-ci-helm.yml @@ -456,7 +456,7 @@ stages: fi } - if [[ "$TEMPLATE_CHECK_UPDATE_DISABLED" != "true" ]]; then check_for_update helm "1.4.2"; fi + if [[ "$TEMPLATE_CHECK_UPDATE_DISABLED" != "true" ]]; then check_for_update helm "2.0.0"; fi unscope_variables eval_all_secrets @@ -470,7 +470,7 @@ stages: entrypoint: [""] services: - name: "$CI_REGISTRY/to-be-continuous/tools/tracking:master" - command: ["--service", "helm", "1.4.2" ] + command: ["--service", "helm", "2.0.0" ] before_script: - *helm-scripts - install_ca_certs "${CUSTOM_CA_CERTS:-$DEFAULT_CA_CERTS}" -- GitLab