...
1# See https://cloud.google.com/cloud-build/docs/build-config
2timeout: 1200s
3options:
4 substitution_option: ALLOW_LOOSE
5 machineType: 'N1_HIGHCPU_8'
6steps:
7 - name: 'gcr.io/k8s-staging-test-infra/gcb-docker-gcloud:v20230623-56e06d7c18'
8 entrypoint: 'bash'
9 dir: ./build/pause
10 env:
11 - DOCKER_CLI_EXPERIMENTAL=enabled
12 - REGISTRY=gcr.io/$PROJECT_ID
13 - IMAGE=gcr.io/$PROJECT_ID/pause
14 - HOME=/root
15 args:
16 - '-c'
17 - |
18 gcloud auth configure-docker \
19 && docker buildx create --name img-builder --use \
20 && make all-push
View as plain text