Skip to content

Commit 0cc7e8d

Browse files
committed
bump cloudbuild docker image
1 parent 68bb62d commit 0cc7e8d

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

cloudbuild.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ options:
66
substitution_option: ALLOW_LOOSE
77

88
steps:
9-
- name: 'gcr.io/k8s-staging-test-infra/gcb-docker-gcloud:v20221214-1b4dd4d69a'
9+
- name: "gcr.io/k8s-staging-test-infra/gcb-docker-gcloud:latest"
1010
entrypoint: make
1111
env:
1212
- GCE_PD_CSI_STAGING_IMAGE=gcr.io/${_STAGING_PROJECT}/gcp-compute-persistent-disk-csi-driver
@@ -18,9 +18,9 @@ steps:
1818
- build-and-push-multi-arch
1919

2020
substitutions:
21-
_STAGING_PROJECT: 'k8s-staging-cloud-provider-gcp'
22-
_PULL_BASE_REF: 'master'
21+
_STAGING_PROJECT: "k8s-staging-cloud-provider-gcp"
22+
_PULL_BASE_REF: "master"
2323

2424
tags:
25-
- 'gcp-compute-persistent-disk-csi-driver'
25+
- "gcp-compute-persistent-disk-csi-driver"
2626
- ${_PULL_BASE_REF}

release-tools/cloudbuild.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,22 @@ steps:
2626
# The image must contain bash and curl. Ideally it should also contain
2727
# the desired version of Go (currently defined in release-tools/prow.sh),
2828
# but that just speeds up the build and is not required.
29-
- name: 'gcr.io/k8s-staging-test-infra/gcb-docker-gcloud:v20210917-12df099d55'
29+
- name: "gcr.io/k8s-staging-test-infra/gcb-docker-gcloud:latest"
3030
entrypoint: ./.cloudbuild.sh
3131
env:
32-
- GIT_TAG=${_GIT_TAG}
33-
- PULL_BASE_REF=${_PULL_BASE_REF}
34-
- REGISTRY_NAME=gcr.io/${_STAGING_PROJECT}
35-
- HOME=/root
32+
- GIT_TAG=${_GIT_TAG}
33+
- PULL_BASE_REF=${_PULL_BASE_REF}
34+
- REGISTRY_NAME=gcr.io/${_STAGING_PROJECT}
35+
- HOME=/root
3636
substitutions:
3737
# _GIT_TAG will be filled with a git-based tag for the image, of the form vYYYYMMDD-hash, and
3838
# can be used as a substitution.
39-
_GIT_TAG: '12345'
39+
_GIT_TAG: "12345"
4040
# _PULL_BASE_REF will contain the ref that was pushed to trigger this build -
4141
# a branch like 'master' or 'release-0.2', or a tag like 'v0.2'.
42-
_PULL_BASE_REF: 'master'
42+
_PULL_BASE_REF: "master"
4343
# The default gcr.io staging project for Kubernetes-CSI
4444
# (=> https://console.cloud.google.com/gcr/images/k8s-staging-sig-storage/GLOBAL).
4545
# Might be overridden in the Prow build job for a repo which wants
4646
# images elsewhere.
47-
_STAGING_PROJECT: 'k8s-staging-sig-storage'
47+
_STAGING_PROJECT: "k8s-staging-sig-storage"

0 commit comments

Comments
 (0)