File tree 2 files changed +6
-6
lines changed
images/kubernetesonarm/build
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -7,12 +7,11 @@ docker build -t kubernetesonarm/build .
7
7
8
8
# Then copy out the binaries
9
9
CID=$( docker run -d kubernetesonarm/build /bin/bash)
10
- BIN=" ../_bin"
11
- OUT=" $BIN /latest"
10
+ BIN=$( pwd ) / ../_bin
11
+ OUT=$BIN /latest
12
12
13
13
# If there is a latest version, move to build date
14
- if [ -d " $OUT " ]
15
- then
14
+ if [[ -d " $OUT " ]]; then
16
15
# Now is the variable $BUILD_DATE available, which is the latest build date
17
16
source " $OUT /version.sh"
18
17
Original file line number Diff line number Diff line change @@ -87,6 +87,7 @@ elif [[ $K8S_VERSION == "v1.2"* ]]; then
87
87
echo " Building a v1.2.x branch of kubernetes. Downloading official binaries."
88
88
curl -sSL https://storage.googleapis.com/kubernetes-release/release/${K8S_VERSION} /bin/linux/arm/hyperkube > $OUTPUT_DIR /hyperkube
89
89
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
90
91
else
91
92
echo " Building an old branch of kubernetes. Not supported."
92
93
exit
@@ -177,8 +178,8 @@ echo "exechealthz built"
177
178
curl -sSL https://github.com/kubernetes/heapster/archive/$HEAPSTER_VERSION .tar.gz | tar -C $HEAPSTER_DIR -xz --strip-components=1
178
179
cd $HEAPSTER_DIR
179
180
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
182
183
183
184
cp heapster $OUTPUT_DIR
184
185
echo " heapster built"
You can’t perform that action at this time.
0 commit comments