Build Kubernetes, etcd and flannel for arm64 and ppc64le

This commit is contained in:
Lucas Käldström
2016-04-14 07:29:10 +03:00
parent ae57644172
commit 4559a84d3b
15 changed files with 136 additions and 116 deletions

View File

@@ -19,11 +19,14 @@ FROM golang:1.6.0
ENV GOARM 6
ENV KUBE_DYNAMIC_CROSSPLATFORMS \
armel
armel \
arm64 \
ppc64el
ENV KUBE_CROSSPLATFORMS \
linux/386 \
linux/arm \
linux/arm linux/arm64 \
linux/ppc64le \
darwin/amd64 darwin/386 \
windows/amd64 windows/386

View File

@@ -20,7 +20,7 @@ TAG = $(shell cat VERSION)
build:
docker build -t gcr.io/google_containers/$(IMAGE):$(TAG) .
push: build
push: build
gcloud docker --server=gcr.io push gcr.io/google_containers/$(IMAGE):$(TAG)
all: push
all: push

View File

@@ -1 +1 @@
v1.6.0-1
v1.6.0-2