Commit 4289ba12 authored by Bertrand Goareguer's avatar Bertrand Goareguer Committed by Cédric OLIVIER
Browse files

fix: "Add registry name in all Docker images"

parent 607032b5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -218,7 +218,7 @@ The Google Cloud template uses some global configuration used throughout all job

| Name                     | description                            | default value     |
| ------------------------ | -------------------------------------- | ----------------- |
| `GCP_CLI_IMAGE`          | the Docker image used to run Google Cloud CLI commands| `google/cloud-sdk:latest` |
| `GCP_CLI_IMAGE`          | the Docker image used to run Google Cloud CLI commands| `gcr.io/google.com/cloudsdktool/cloud-sdk:latest` |
| :lock: `GCP_KEY_FILE`    | Default [Service Account key file](https://cloud.google.com/bigquery/docs/authentication/service-account-file) | _none_ |
| `GCP_OIDC_PROVIDER`      | Default Workload Identity Provider associated with GitLab to [authenticate with OpenID Connect](https://docs.gitlab.com/ee/ci/cloud_services/google_cloud/) | none|
| `GCP_OIDC_ACCOUNT`       | Default Service Account to which impersonate with OpenID Connect authentication | none  |
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
    {
      "name": "GCP_CLI_IMAGE",
      "description": "The Docker image used to run Google Cloud CLI commands",
      "default": "google/cloud-sdk:latest"
      "default": "gcr.io/google.com/cloudsdktool/cloud-sdk:latest"
    },
    {
      "name": "GCP_KEY_FILE",
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ variables:
  TBC_TRACKING_IMAGE: "$CI_REGISTRY/to-be-continuous/tools/tracking:master"

  # Default Docker image (can be overridden)
  GCP_CLI_IMAGE: "google/cloud-sdk:latest"
  GCP_CLI_IMAGE: "gcr.io/google.com/cloudsdktool/cloud-sdk:latest"

  GCP_SCRIPTS_DIR: "."