From cff9c2f94c4d64d52e090613f5abb62bd74e5f0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20K=C3=A4ldstr=C3=B6m?= Date: Mon, 14 Dec 2015 20:44:12 +0200 Subject: [PATCH] Don't restrict kube2sky to build only for amd64, make possible for arm too --- cluster/addons/dns/kube2sky/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/addons/dns/kube2sky/Makefile b/cluster/addons/dns/kube2sky/Makefile index 6217a709cca..ebdc2c89de9 100644 --- a/cluster/addons/dns/kube2sky/Makefile +++ b/cluster/addons/dns/kube2sky/Makefile @@ -10,7 +10,7 @@ PREFIX = gcr.io/google_containers all: container kube2sky: kube2sky.go - GOOS=linux GOARCH=amd64 CGO_ENABLED=0 godep go build -a -installsuffix cgo --ldflags '-w' ./kube2sky.go + GOOS=linux CGO_ENABLED=0 godep go build -a -installsuffix cgo --ldflags '-w' ./kube2sky.go container: kube2sky docker build -t $(PREFIX)/kube2sky:$(TAG) .