Skip to content

Commit

Permalink
Call hack/prow.sh from cloudbuild
Browse files Browse the repository at this point in the history
  • Loading branch information
wongma7 committed Dec 17, 2020
1 parent 30c5f38 commit 0b6bcf3
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 33 deletions.
38 changes: 5 additions & 33 deletions cloudbuild.yaml
Original file line number Diff line number Diff line change
@@ -1,37 +1,9 @@
timeout: 1200s
steps:
- name: gcr.io/cloud-builders/docker
args:
- run
- --rm
- --privileged
- multiarch/qemu-user-static
- --reset
- -p
- "yes"
- name: gcr.io/cloud-builders/docker
- name: gcr.io/k8s-testimages/gcb-docker-gcloud:v20200421-a2bf5f8
entrypoint: ./hack/prow.sh
env:
- DOCKER_CLI_EXPERIMENTAL=enabled
- GIT_TAG=${_GIT_TAG}
- PULL_BASE_REF=${_PULL_BASE_REF}
- REGISTRY_NAME=gcr.io/${_STAGING_PROJECT}
- HOME=/root
args:
- buildx
- build
- --tag=gcr.io/k8s-staging-provider-aws/aws-ebs-csi-driver:$_GIT_TAG
- --tag=gcr.io/k8s-staging-provider-aws/aws-ebs-csi-driver:latest
- --platform=linux/arm64,linux/amd64
- --output="type=image,push=true"
- .
- --target=debian-base
- name: gcr.io/cloud-builders/docker
env:
- DOCKER_CLI_EXPERIMENTAL=enabled
- HOME=/root
args:
- buildx
- build
- --tag=gcr.io/k8s-staging-provider-aws/aws-ebs-csi-driver:$_GIT_TAG-amazonlinux
- --tag=gcr.io/k8s-staging-provider-aws/aws-ebs-csi-driver:latest-amazonlinux
- --platform=linux/arm64,linux/amd64
- --output="type=image,push=true"
- .
- --target=amazonlinux
55 changes: 55 additions & 0 deletions hack/prow.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
#!/bin/bash

# Copyright 2019 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

set -euxo pipefail

loudecho() {
echo "###"
echo "## ${1}"
echo "#"
}

loudecho "Register gcloud as a Docker credential helper."
# Required for "docker buildx build --push".
# See https://github.com/kubernetes-csi/csi-release-tools/blob/master/prow.sh#L1243
gcloud auth configure-docker

loudecho "Set up Docker Buildx"
# See https://github.com/docker/setup-buildx-action
# and https://github.com/kubernetes-csi/csi-release-tools/blob/master/build.make#L132
DOCKER_CLI_EXPERIMENTAL=enabled
export DOCKER_CLI_EXPERIMENTAL
docker buildx create --use --name multiarchimage-buildertest

loudecho "Set up QEMU"
# See https://github.com/docker/setup-qemu-action
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes

loudecho "Build and push debian target"
docker buildx build \
--tag=gcr.io/k8s-staging-provider-aws/aws-ebs-csi-driver:"${GIT_TAG}" \
--tag=gcr.io/k8s-staging-provider-aws/aws-ebs-csi-driver:latest \
--platform=linux/arm64,linux/amd64 \
--output="type=image,push=true" . \
--target=debian-base

loudecho "Build and push amazonlinux target"
docker buildx build \
--tag=gcr.io/k8s-staging-provider-aws/aws-ebs-csi-driver:"${GIT_TAG}"-amazonlinux \
--tag=gcr.io/k8s-staging-provider-aws/aws-ebs-csi-driver:latest-amazonlinux \
--platform=linux/arm64,linux/amd64 \
--output="type=image,push=true" . \
--target=amazonlinux

0 comments on commit 0b6bcf3

Please sign in to comment.