Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • to-be-continuous/gcloud
  • contrib-tbc/gcloud
  • xavier.francois/gcloud
  • vincbon/gcloud
  • another15y/tbc/gcloud
5 results
Show changes
Commits on Source (2)
## [1.6.2](https://gitlab.com/to-be-continuous/gcloud/compare/1.6.1...1.6.2) (2022-02-24)
### Bug Fixes
* **vault:** revert Vault JWT authentication not working ([6ec5784](https://gitlab.com/to-be-continuous/gcloud/commit/6ec5784257aa66ccf2b6fce88afd92c1a424942c))
## [1.6.1](https://gitlab.com/to-be-continuous/gcloud/compare/1.6.0...1.6.1) (2022-02-23)
......
......@@ -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.1'
ref: '1.6.2'
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.1'
ref: '1.6.2'
file: '/templates/gitlab-ci-gcloud.yml'
...
......@@ -375,11 +375,11 @@ With:
include:
# main template
- project: 'to-be-continuous/gcloud'
ref: '1.6.1'
ref: '1.6.2'
file: '/templates/gitlab-ci-gcloud.yml'
# Vault variant
- project: 'to-be-continuous/gcloud'
ref: '1.6.1'
ref: '1.6.2'
file: '/templates/gitlab-ci-gcloud-vault.yml'
variables:
......
# =====================================================================================================================
# === Vault template variant
# =====================================================================================================================
variables:
# variables have to be explicitly declared in the YAML to be exported to the service
VAULT_ROLE_ID: "$VAULT_ROLE_ID"
VAULT_SECRET_ID: "$VAULT_SECRET_ID"
.gcp-base:
services:
- name: "$CI_REGISTRY/to-be-continuous/tools/tracking:master"
command: ["--service", "gcloud", "1.6.1" ]
command: ["--service", "gcloud", "1.6.2" ]
- name: "$CI_REGISTRY/to-be-continuous/tools/vault-secrets-provider:master"
alias: "vault-secrets-provider"
......@@ -331,7 +331,7 @@ stages:
fi
}
if [[ "$TEMPLATE_CHECK_UPDATE_DISABLED" != "true" ]]; then check_for_update gcloud "1.6.1"; fi
if [[ "$TEMPLATE_CHECK_UPDATE_DISABLED" != "true" ]]; then check_for_update gcloud "1.6.2"; fi
# export tool functions (might be used in after_script)
export -f log_info log_warn log_error assert_defined awkenvsubst
......@@ -347,7 +347,7 @@ stages:
image: $GCP_CLI_IMAGE
services:
- name: "$CI_REGISTRY/to-be-continuous/tools/tracking:master"
command: ["--service", "gcloud", "1.6.1" ]
command: ["--service", "gcloud", "1.6.2" ]
before_script:
- *gcp-scripts
- install_ca_certs "${CUSTOM_CA_CERTS:-$DEFAULT_CA_CERTS}"
......