From 730b6699aa1389edca19fb6b462ec03dd01e9cf9 Mon Sep 17 00:00:00 2001 From: semantic-release-bot <semantic-release-bot@martynus.net> Date: Sun, 1 May 2022 12:16:51 +0000 Subject: [PATCH] chore(release): 1.7.0 [skip ci] # [1.7.0](https://gitlab.com/to-be-continuous/gcloud/compare/1.6.2...1.7.0) (2022-05-01) ### Features * configurable tracking image ([8a34c53](https://gitlab.com/to-be-continuous/gcloud/commit/8a34c537990e9fcbf9a0a9a7cac602d54bc6bfb8)) --- CHANGELOG.md | 7 +++++++ README.md | 8 ++++---- templates/gitlab-ci-gcloud-vault.yml | 2 +- templates/gitlab-ci-gcloud.yml | 2 +- 4 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5579152..cb6eb08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [1.7.0](https://gitlab.com/to-be-continuous/gcloud/compare/1.6.2...1.7.0) (2022-05-01) + + +### Features + +* configurable tracking image ([8a34c53](https://gitlab.com/to-be-continuous/gcloud/commit/8a34c537990e9fcbf9a0a9a7cac602d54bc6bfb8)) + ## [1.6.2](https://gitlab.com/to-be-continuous/gcloud/compare/1.6.1...1.6.2) (2022-02-24) diff --git a/README.md b/README.md index dba7fa7..2d6a7d8 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ In order to include this template in your project, add the following to your `gi ```yaml include: - project: 'to-be-continuous/gcloud' - ref: '1.6.2' + ref: '1.7.0' file: '/templates/gitlab-ci-gcloud.yml' ``` @@ -240,7 +240,7 @@ Let's imagine a backend service: include: # Include Google Cloud template - project: 'to-be-continuous/gcloud' - ref: '1.6.2' + ref: '1.7.0' file: '/templates/gitlab-ci-gcloud.yml' ... @@ -375,11 +375,11 @@ With: include: # main template - project: 'to-be-continuous/gcloud' - ref: '1.6.2' + ref: '1.7.0' file: '/templates/gitlab-ci-gcloud.yml' # Vault variant - project: 'to-be-continuous/gcloud' - ref: '1.6.2' + ref: '1.7.0' file: '/templates/gitlab-ci-gcloud-vault.yml' variables: diff --git a/templates/gitlab-ci-gcloud-vault.yml b/templates/gitlab-ci-gcloud-vault.yml index e13883c..fafa347 100644 --- a/templates/gitlab-ci-gcloud-vault.yml +++ b/templates/gitlab-ci-gcloud-vault.yml @@ -9,6 +9,6 @@ variables: .gcp-base: services: - name: "$TBC_TRACKING_IMAGE" - command: ["--service", "gcloud", "1.6.2" ] + command: ["--service", "gcloud", "1.7.0" ] - name: "$CI_REGISTRY/to-be-continuous/tools/vault-secrets-provider:master" alias: "vault-secrets-provider" diff --git a/templates/gitlab-ci-gcloud.yml b/templates/gitlab-ci-gcloud.yml index c1205c5..b95e48b 100644 --- a/templates/gitlab-ci-gcloud.yml +++ b/templates/gitlab-ci-gcloud.yml @@ -338,7 +338,7 @@ stages: image: $GCP_CLI_IMAGE services: - name: "$TBC_TRACKING_IMAGE" - command: ["--service", "gcloud", "1.6.2" ] + command: ["--service", "gcloud", "1.7.0" ] before_script: - *gcp-scripts - install_ca_certs "${CUSTOM_CA_CERTS:-$DEFAULT_CA_CERTS}" -- GitLab