Created
February 18, 2016 22:27
-
-
Save mikedanese/3d6476308fa2ee0dee92 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 11d7ff0ddf413f1cb8939dce19bc94ed4d956145 Mon Sep 17 00:00:00 2001 | |
From: Mike Danese <[email protected]> | |
Date: Thu, 18 Feb 2016 14:25:50 -0800 | |
Subject: [PATCH] linux fastbuild | |
--- | |
build/common.sh | 2 -- | |
hack/lib/golang.sh | 10 ---------- | |
2 files changed, 12 deletions(-) | |
diff --git a/build/common.sh b/build/common.sh | |
index 4c2b8b2..0c4fe95 100755 | |
--- a/build/common.sh | |
+++ b/build/common.sh | |
@@ -136,7 +136,6 @@ kube::build::get_docker_wrapped_binaries() { | |
# The set of addons images that should be prepopulated on linux/amd64 | |
readonly KUBE_ADDON_PATHS=( | |
gcr.io/google_containers/pause:2.0 | |
- gcr.io/google_containers/kube-registry-proxy:0.3 | |
) | |
# --------------------------------------------------------------------------- | |
@@ -961,7 +960,6 @@ function kube::release::package_kube_manifests_tarball() { | |
local salt_dir="${KUBE_ROOT}/cluster/saltbase/salt" | |
cp "${salt_dir}/fluentd-es/fluentd-es.yaml" "${release_stage}/" | |
cp "${salt_dir}/fluentd-gcp/fluentd-gcp.yaml" "${release_stage}/" | |
- cp "${salt_dir}/kube-registry-proxy/kube-registry-proxy.yaml" "${release_stage}/" | |
cp "${salt_dir}/kube-proxy/kube-proxy.manifest" "${release_stage}/" | |
cp "${salt_dir}/etcd/etcd.manifest" "${release_stage}/trusty" | |
cp "${salt_dir}/kube-scheduler/kube-scheduler.manifest" "${release_stage}/trusty" | |
diff --git a/hack/lib/golang.sh b/hack/lib/golang.sh | |
index e7df21e..d526ba1 100755 | |
--- a/hack/lib/golang.sh | |
+++ b/hack/lib/golang.sh | |
@@ -50,7 +50,6 @@ readonly KUBE_SERVER_BINARIES=("${KUBE_SERVER_TARGETS[@]##*/}") | |
# The server platform we are building on. | |
readonly KUBE_SERVER_PLATFORMS=( | |
linux/amd64 | |
- linux/arm | |
) | |
# The set of client targets that we are building for all platforms | |
@@ -64,12 +63,6 @@ readonly KUBE_CLIENT_BINARIES_WIN=("${KUBE_CLIENT_BINARIES[@]/%/.exe}") | |
# in 'build/build-image/cross/Dockerfile'. However, it's only a bit faster since go 1.5, not mandatory | |
readonly KUBE_CLIENT_PLATFORMS=( | |
linux/amd64 | |
- linux/386 | |
- linux/arm | |
- darwin/amd64 | |
- darwin/386 | |
- windows/amd64 | |
- windows/386 | |
) | |
# The set of test targets that we are building for all platforms | |
@@ -111,9 +104,6 @@ readonly KUBE_TEST_PORTABLE=( | |
# Which platforms we should compile test targets for. Not all client platforms need these tests | |
readonly KUBE_TEST_PLATFORMS=( | |
linux/amd64 | |
- darwin/amd64 | |
- windows/amd64 | |
- linux/arm | |
) | |
# Gigabytes desired for parallel platform builds. 11 is fairly | |
-- | |
2.7.0.rc3.207.g0ac5344 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment