Skip to content

Commit 7e405e0

Browse files
committed
Fix golang/go#9344 for heapster and make downloaded binaries executable
1 parent b4e07f3 commit 7e405e0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

images/kubernetesonarm/build/build.sh

+3-4
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,11 @@ docker build -t kubernetesonarm/build .
77

88
# Then copy out the binaries
99
CID=$(docker run -d kubernetesonarm/build /bin/bash)
10-
BIN="../_bin"
11-
OUT="$BIN/latest"
10+
BIN=$(pwd)/../_bin
11+
OUT=$BIN/latest
1212

1313
# If there is a latest version, move to build date
14-
if [ -d "$OUT" ]
15-
then
14+
if [[ -d "$OUT" ]]; then
1615
# Now is the variable $BUILD_DATE available, which is the latest build date
1716
source "$OUT/version.sh"
1817

images/kubernetesonarm/build/inbuild.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ elif [[ $K8S_VERSION == "v1.2"* ]]; then
8787
echo "Building a v1.2.x branch of kubernetes. Downloading official binaries."
8888
curl -sSL https://storage.googleapis.com/kubernetes-release/release/${K8S_VERSION}/bin/linux/arm/hyperkube > $OUTPUT_DIR/hyperkube
8989
curl -sSL https://storage.googleapis.com/kubernetes-release/release/${K8S_VERSION}/bin/linux/arm/kubectl > $OUTPUT_DIR/kubectl
90+
chmod +x $OUTPUT_DIR/hyperkube $OUTPUT_DIR/kubectl
9091
else
9192
echo "Building an old branch of kubernetes. Not supported."
9293
exit
@@ -177,8 +178,8 @@ echo "exechealthz built"
177178
curl -sSL https://github.com/kubernetes/heapster/archive/$HEAPSTER_VERSION.tar.gz | tar -C $HEAPSTER_DIR -xz --strip-components=1
178179
cd $HEAPSTER_DIR
179180

180-
CGO_ENABLED=0 godep go build ./...
181-
CGO_ENABLED=0 godep go build
181+
CGO_ENABLED=0 godep go build -a -installsuffix cgo ./...
182+
CGO_ENABLED=0 godep go build -a -installsuffix cgo
182183

183184
cp heapster $OUTPUT_DIR
184185
echo "heapster built"

0 commit comments

Comments
 (0)