Rename cloudcfg to kubecfg

This commit is contained in:
Daniel Smith
2014-06-25 17:55:43 -07:00
parent 61b00739a3
commit c97c514742
22 changed files with 64 additions and 64 deletions

View File

@@ -15,7 +15,7 @@ To build Kubernetes you need to have access to a Docker installation through eit
* `make-binaries.sh`: This will compile all of the Kubernetes binaries in a Docker container
* `run-tests.sh`: This will run the Kubernetes unit tests in a Docker container
* `run-integration.sh`: This will build and run the integration test in a Docker container
* `make-cross.sh`: This will make all cross-compiled binaries (currently just cloudcfg).
* `make-cross.sh`: This will make all cross-compiled binaries (currently just kubecfg).
* `copy-output.sh`: This will copy the contents of `output/build` from any remote Docker container to the local `output/build`. Right now this is only necessary on Mac OS X with `boot2docker`.
* `make-clean.sh`: Clean out the contents of `output/build`.
* `shell.sh`: Drop into a `bash` shell in a build container with a snapshot of the current repo code.

View File

@@ -33,7 +33,7 @@ function make-binaries() {
apiserver
controller-manager
kubelet
cloudcfg
kubecfg
localkube"
ARCH_TARGET="${KUBE_TARGET}/${GOOS}/${GOARCH}"

View File

@@ -21,7 +21,7 @@ set -e
source $(dirname $0)/common.sh
readonly CROSS_BINARIES="
cloudcfg
kubecfg
"
for platform in ${KUBE_CROSSPLATFORMS}; do

View File

@@ -295,7 +295,7 @@ function push-images-to-gcs() {
function package-tarballs() {
mkdir -p "${RELEASE_DIR}"
# Find all of the built cloudcfg binaries
# Find all of the built kubecfg binaries
for platform in output/build/*/* ; do
echo $platform
local PLATFORM_TAG=$(echo $platform | awk -F / '{ printf "%s-%s", $3, $4 }')