Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate away from google.com gcp project k8s-testimages #107

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ options:
substitution_option: ALLOW_LOOSE
steps:

- name: 'gcr.io/k8s-testimages/gcb-docker-gcloud:v20200422-b25d964'
- name: 'gcr.io/k8s-staging-test-infra/gcb-docker-gcloud:v20221214-1b4dd4d69a'
entrypoint: bash
env:
- TAG=$_GIT_TAG
- REGISTRY=gcr.io/k8s-staging-ingressconformance
args:
- -c
- |
gcloud auth configure-docker \
&& make build-image publish-image
- -c
- |
gcloud auth configure-docker \
&& make build-image publish-image

substitutions:
_GIT_TAG: "12345"
Expand Down
12 changes: 6 additions & 6 deletions images/echoserver/cloudbuild.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
options:
substitution_option: ALLOW_LOOSE
steps:
- name: 'gcr.io/k8s-testimages/gcb-docker-gcloud:v20220617-174ad91c3a'
- name: 'gcr.io/k8s-staging-test-infra/gcb-docker-gcloud:v20221214-1b4dd4d69a'
entrypoint: /buildx-entrypoint
args:
- build
- --tag=gcr.io/$PROJECT_ID/echoserver:$_GIT_TAG
- --platform=linux/amd64,linux/arm64
- --push
- .
- build
- --tag=gcr.io/$PROJECT_ID/echoserver:$_GIT_TAG
- --platform=linux/amd64,linux/arm64
- --push
- .
substitutions:
_GIT_TAG: "12345"
timeout: 1800s # allow up to 30min, as emulation can be slow
10 changes: 5 additions & 5 deletions images/reports/cloudbuild.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
options:
substitution_option: ALLOW_LOOSE
steps:
- name: 'gcr.io/k8s-testimages/gcb-docker-gcloud:v20200422-b25d964'
- name: 'gcr.io/k8s-staging-test-infra/gcb-docker-gcloud:v20221214-1b4dd4d69a'
entrypoint: bash
env:
- TAG=$_GIT_TAG
- BASE_REF=$_PULL_BASE_REF
- REGISTRY=gcr.io/k8s-staging-ingressconformance
thockin marked this conversation as resolved.
Show resolved Hide resolved
args:
- -c
- |
gcloud auth configure-docker \
&& make build-image publish-image
- -c
- |
gcloud auth configure-docker \
&& make build-image publish-image
substitutions:
_GIT_TAG: "12345"
_PULL_BASE_REF: "master"