Skip to content

Commit b6dc78a

Browse files
committed
Update golang scripts
1 parent 50201ec commit b6dc78a

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

golang/build-kubernetes.sh

+7-12
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,9 @@
1616

1717
set -euxo pipefail
1818

19-
# Initialize necessary environment variables and git identity.
19+
# Initialize necessary environment variables.
2020
function init {
2121
export GOROOT=$ROOT_DIR/golang
22-
git config --global user.email "[email protected]"
23-
git config --global user.name "k8s scalability"
2422
}
2523

2624
function build_kube_cross {
@@ -58,18 +56,15 @@ WORKDIR $GOPATH#' default/Dockerfile
5856
}
5957

6058
function build_kubernetes {
61-
cd $ROOT_DIR/k8s.io/kubernetes/build/build-image
62-
63-
# Change the base image of kube-build to our own kube-cross image.
64-
sed -i 's#FROM .*#FROM gcr.io/k8s-testimages/kube-cross-amd64:latest-go-master-debian-default#' Dockerfile
65-
6659
cd $ROOT_DIR/k8s.io/kubernetes
67-
# Commit changes - needed to not create a "dirty" build, so we can push the
68-
# build to <bucket>/ci directory and update latest.txt file.
69-
git commit -am "Upgrade cross Dockerfile to use kube-cross with newest golang"
7060

7161
# Build Kubernetes using our kube-cross image.
72-
make quick-release
62+
# Also pass GOTOOLCHAIN=local to make sure kube-build
63+
# uses the golang version built locally in build-go.sh.
64+
make quick-release \
65+
GOTOOLCHAIN=local \
66+
KUBE_CROSS_IMAGE=gcr.io/k8s-testimages/kube-cross-amd64 \
67+
KUBE_CROSS_VERSION=latest-go-master-debian-default
7368
}
7469

7570
init

golang/push.sh

+6-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,9 @@ set -euxo pipefail
1818

1919
# Push Kubernetes build to GCS.
2020
cd $ROOT_DIR/k8s.io/kubernetes
21-
../release/push-build.sh --nomock --ci --bucket=$GCS_BUCKET --private-bucket
21+
../release/push-build.sh \
22+
--nomock \
23+
--ci \
24+
--bucket=$GCS_BUCKET \
25+
--private-bucket \
26+
--version-suffix=$(date +%s)

0 commit comments

Comments
 (0)