From c97c514742c6ed020b1e7a312b724033817cd380 Mon Sep 17 00:00:00 2001 From: Daniel Smith Date: Wed, 25 Jun 2014 17:55:43 -0700 Subject: [PATCH] Rename cloudcfg to kubecfg --- README.md | 12 ++--- build/README.md | 2 +- build/build-image/common.sh | 2 +- build/build-image/make-cross.sh | 2 +- build/common.sh | 2 +- cluster/{cloudcfg.sh => kubecfg.sh} | 4 +- .../cloudcfg.go => kubecfg/kubecfg.go} | 44 +++++++++---------- examples/guestbook/guestbook.md | 24 +++++----- hack/build-go.sh | 2 +- hack/e2e-test.sh | 2 +- hack/local-up.sh | 2 +- hack/localcfg.sh | 6 +-- pkg/{cloudcfg => kubecfg}/doc.go | 6 +-- .../cloudcfg.go => kubecfg/kubecfg.go} | 2 +- .../kubecfg_test.go} | 2 +- pkg/{cloudcfg => kubecfg}/parse.go | 2 +- pkg/{cloudcfg => kubecfg}/parse_test.go | 2 +- pkg/{cloudcfg => kubecfg}/proxy_server.go | 2 +- .../proxy_server_test.go | 2 +- pkg/{cloudcfg => kubecfg}/resource_printer.go | 2 +- .../resource_printer_test.go | 2 +- release/release.sh | 2 +- 22 files changed, 64 insertions(+), 64 deletions(-) rename cluster/{cloudcfg.sh => kubecfg.sh} (86%) rename cmd/{cloudcfg/cloudcfg.go => kubecfg/kubecfg.go} (80%) rename pkg/{cloudcfg => kubecfg}/doc.go (77%) rename pkg/{cloudcfg/cloudcfg.go => kubecfg/kubecfg.go} (99%) rename pkg/{cloudcfg/cloudcfg_test.go => kubecfg/kubecfg_test.go} (99%) rename pkg/{cloudcfg => kubecfg}/parse.go (98%) rename pkg/{cloudcfg => kubecfg}/parse_test.go (99%) rename pkg/{cloudcfg => kubecfg}/proxy_server.go (99%) rename pkg/{cloudcfg => kubecfg}/proxy_server_test.go (98%) rename pkg/{cloudcfg => kubecfg}/resource_printer.go (99%) rename pkg/{cloudcfg => kubecfg}/resource_printer_test.go (99%) diff --git a/README.md b/README.md index 181beff33a..249a52f076 100644 --- a/README.md +++ b/README.md @@ -49,22 +49,22 @@ hack/dev-build-and-up.sh Once you have your instances up and running, the `build-go.sh` script sets up your Go workspace and builds the Go components. -The `cloudcfg.sh` script spins up two containers, running [Nginx](http://nginx.org/en/) and with port 80 mapped to 8080: +The `kubecfg.sh` script spins up two containers, running [Nginx](http://nginx.org/en/) and with port 80 mapped to 8080: ``` cd kubernetes hack/build-go.sh -cluster/cloudcfg.sh -p 8080:80 run dockerfile/nginx 2 myNginx +cluster/kubecfg.sh -p 8080:80 run dockerfile/nginx 2 myNginx ``` To stop the containers: ``` -cluster/cloudcfg.sh stop myNginx +cluster/kubecfg.sh stop myNginx ``` To delete the containers: ``` -cluster/cloudcfg.sh rm myNginx +cluster/kubecfg.sh rm myNginx ``` ### Running a container (more complete version) @@ -75,7 +75,7 @@ Assuming you've run `hack/dev-build-and-up.sh` and `hack/build-go.sh`: ``` cd kubernetes -cluster/cloudcfg.sh -c api/examples/pod.json create /pods +cluster/kubecfg.sh -c api/examples/pod.json create /pods ``` Where pod.json contains something like: @@ -112,7 +112,7 @@ cd kubernetes hack/local-up.sh ``` -This will build and start a lightweight local cluster, consisting of a master and a single minion. Type Control-C to shut it down. While it's running, you can use `hack/localcfg.sh` in place of `cluster/cloudcfg.sh` to talk to it. +This will build and start a lightweight local cluster, consisting of a master and a single minion. Type Control-C to shut it down. While it's running, you can use `hack/localcfg.sh` in place of `cluster/kubecfg.sh` to talk to it. ## Where to go next? [Detailed example application](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/examples/guestbook/guestbook.md) diff --git a/build/README.md b/build/README.md index cf759f7a4a..0991cb71ce 100644 --- a/build/README.md +++ b/build/README.md @@ -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. diff --git a/build/build-image/common.sh b/build/build-image/common.sh index e2b205b329..c6ecbcdedc 100644 --- a/build/build-image/common.sh +++ b/build/build-image/common.sh @@ -33,7 +33,7 @@ function make-binaries() { apiserver controller-manager kubelet - cloudcfg + kubecfg localkube" ARCH_TARGET="${KUBE_TARGET}/${GOOS}/${GOARCH}" diff --git a/build/build-image/make-cross.sh b/build/build-image/make-cross.sh index b1c987d4d1..5864392ee3 100755 --- a/build/build-image/make-cross.sh +++ b/build/build-image/make-cross.sh @@ -21,7 +21,7 @@ set -e source $(dirname $0)/common.sh readonly CROSS_BINARIES=" - cloudcfg + kubecfg " for platform in ${KUBE_CROSSPLATFORMS}; do diff --git a/build/common.sh b/build/common.sh index 864d3c3e83..b4b1e7bea5 100644 --- a/build/common.sh +++ b/build/common.sh @@ -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 }') diff --git a/cluster/cloudcfg.sh b/cluster/kubecfg.sh similarity index 86% rename from cluster/cloudcfg.sh rename to cluster/kubecfg.sh index 4a7e4b6b22..ec79268499 100755 --- a/cluster/cloudcfg.sh +++ b/cluster/kubecfg.sh @@ -18,9 +18,9 @@ source $(dirname $0)/util.sh -CLOUDCFG=$(dirname $0)/../output/go/cloudcfg +CLOUDCFG=$(dirname $0)/../output/go/kubecfg if [ ! -x $CLOUDCFG ]; then - echo "Could not find cloudcfg binary. Run hack/build-go.sh to build it." + echo "Could not find kubecfg binary. Run hack/build-go.sh to build it." exit 1 fi diff --git a/cmd/cloudcfg/cloudcfg.go b/cmd/kubecfg/kubecfg.go similarity index 80% rename from cmd/cloudcfg/cloudcfg.go rename to cmd/kubecfg/kubecfg.go index fba391c750..2358c95bbd 100644 --- a/cmd/cloudcfg/cloudcfg.go +++ b/cmd/kubecfg/kubecfg.go @@ -27,7 +27,7 @@ import ( "time" kube_client "github.com/GoogleCloudPlatform/kubernetes/pkg/client" - "github.com/GoogleCloudPlatform/kubernetes/pkg/cloudcfg" + "github.com/GoogleCloudPlatform/kubernetes/pkg/kubecfg" "github.com/GoogleCloudPlatform/kubernetes/pkg/util" "github.com/golang/glog" ) @@ -52,15 +52,15 @@ var ( ) func usage() { - fmt.Fprint(os.Stderr, `usage: cloudcfg -h [-c config/file.json] [-p :,..., :] + fmt.Fprint(os.Stderr, `usage: kubecfg -h [-c config/file.json] [-p :,..., :] Kubernetes REST API: - cloudcfg [OPTIONS] get|list|create|delete|update + kubecfg [OPTIONS] get|list|create|delete|update Manage replication controllers: - cloudcfg [OPTIONS] stop|rm|rollingupdate - cloudcfg [OPTIONS] run - cloudcfg [OPTIONS] resize + kubecfg [OPTIONS] stop|rm|rollingupdate + kubecfg [OPTIONS] run + kubecfg [OPTIONS] resize Options: `) @@ -76,7 +76,7 @@ func readConfig(storage string) []byte { if err != nil { glog.Fatalf("Unable to read %v: %#v\n", *config, err) } - data, err = cloudcfg.ToWireFormat(data, storage) + data, err = kubecfg.ToWireFormat(data, storage) if err != nil { glog.Fatalf("Error parsing %v as an object for %v: %#v\n", *config, storage, err) } @@ -112,7 +112,7 @@ func main() { var auth *kube_client.AuthInfo if secure { - auth, err = cloudcfg.LoadAuthInfo(*authConfig) + auth, err = kubecfg.LoadAuthInfo(*authConfig) if err != nil { glog.Fatalf("Error loading auth: %#v", err) } @@ -120,7 +120,7 @@ func main() { if *proxy { glog.Info("Starting to serve on localhost:8001") - server := cloudcfg.NewProxyServer(*www, *httpServer, auth) + server := kubecfg.NewProxyServer(*www, *httpServer, auth) glog.Fatal(server.Serve()) } @@ -140,7 +140,7 @@ func main() { func executeAPIRequest(method string, auth *kube_client.AuthInfo) bool { parseStorage := func() string { if len(flag.Args()) != 2 { - glog.Fatal("usage: cloudcfg [OPTIONS] get|list|create|update|delete ") + glog.Fatal("usage: kubecfg [OPTIONS] get|list|create|update|delete ") } return strings.Trim(flag.Arg(1), "/") } @@ -172,13 +172,13 @@ func executeAPIRequest(method string, auth *kube_client.AuthInfo) bool { return false } - var printer cloudcfg.ResourcePrinter + var printer kubecfg.ResourcePrinter if *json { - printer = &cloudcfg.IdentityPrinter{} + printer = &kubecfg.IdentityPrinter{} } else if *yaml { - printer = &cloudcfg.YAMLPrinter{} + printer = &kubecfg.YAMLPrinter{} } else { - printer = &cloudcfg.HumanReadablePrinter{} + printer = &kubecfg.HumanReadablePrinter{} } if err = printer.PrintObj(obj, os.Stdout); err != nil { @@ -193,7 +193,7 @@ func executeAPIRequest(method string, auth *kube_client.AuthInfo) bool { func executeControllerRequest(method string, auth *kube_client.AuthInfo) bool { parseController := func() string { if len(flag.Args()) != 2 { - glog.Fatal("usage: cloudcfg [OPTIONS] stop|rm|rollingupdate ") + glog.Fatal("usage: kubecfg [OPTIONS] stop|rm|rollingupdate ") } return flag.Arg(1) } @@ -203,14 +203,14 @@ func executeControllerRequest(method string, auth *kube_client.AuthInfo) bool { var err error switch method { case "stop": - err = cloudcfg.StopController(parseController(), c) + err = kubecfg.StopController(parseController(), c) case "rm": - err = cloudcfg.DeleteController(parseController(), c) + err = kubecfg.DeleteController(parseController(), c) case "rollingupdate": - err = cloudcfg.Update(parseController(), c, *updatePeriod) + err = kubecfg.Update(parseController(), c, *updatePeriod) case "run": if len(flag.Args()) != 4 { - glog.Fatal("usage: cloudcfg [OPTIONS] run ") + glog.Fatal("usage: kubecfg [OPTIONS] run ") } image := flag.Arg(1) replicas, err := strconv.Atoi(flag.Arg(2)) @@ -218,18 +218,18 @@ func executeControllerRequest(method string, auth *kube_client.AuthInfo) bool { if err != nil { glog.Fatalf("Error parsing replicas: %#v", err) } - err = cloudcfg.RunController(image, name, replicas, c, *portSpec, *servicePort) + err = kubecfg.RunController(image, name, replicas, c, *portSpec, *servicePort) case "resize": args := flag.Args() if len(args) < 3 { - glog.Fatal("usage: cloudcfg resize ") + glog.Fatal("usage: kubecfg resize ") } name := args[1] replicas, err := strconv.Atoi(args[2]) if err != nil { glog.Fatalf("Error parsing replicas: %#v", err) } - err = cloudcfg.ResizeController(name, replicas, c) + err = kubecfg.ResizeController(name, replicas, c) default: return false } diff --git a/examples/guestbook/guestbook.md b/examples/guestbook/guestbook.md index 53d5051754..f010d9b7df 100644 --- a/examples/guestbook/guestbook.md +++ b/examples/guestbook/guestbook.md @@ -37,16 +37,16 @@ Create a file named `redis-master.json` describing a single pod, which runs a re } ``` -Once you have that pod file, you can create the redis pod in your Kubernetes cluster using the `cloudcfg` CLI: +Once you have that pod file, you can create the redis pod in your Kubernetes cluster using the `kubecfg` CLI: ```shell -$ cluster/cloudcfg.sh -c examples/guestbook/redis-master.json create /pods +$ cluster/kubecfg.sh -c examples/guestbook/redis-master.json create /pods ``` Once that's up you can list the pods in the cluster, to verify that the master is running: ```shell -cluster/cloudcfg.sh list /pods +cluster/kubecfg.sh list /pods ``` You'll see a single redis master pod. It will also display the machine that the pod is running on. @@ -87,10 +87,10 @@ The pod that you created in Step One has the label `name=redis-master`. The sele This will cause all pods to see the redis master apparently running on localhost:10000. -Once you have that service description, you can create the service with the `cloudcfg` cli: +Once you have that service description, you can create the service with the `kubecfg` cli: ```shell -$ cluster/cloudcfg.sh -c examples/guestbook/redis-master-service.json create /services +$ cluster/kubecfg.sh -c examples/guestbook/redis-master-service.json create /services Name Label Query Port ---------- ---------- ---------- redismaster name=redis-master 10000 @@ -127,7 +127,7 @@ Create a file named `redis-slave-controller.json` that contains: Then you can create the service by running: ```shell -$ cluster/cloudcfg.sh -c examples/guestbook/redis-slave-controller.json create /replicationControllers +$ cluster/kubecfg.sh -c examples/guestbook/redis-slave-controller.json create /replicationControllers Name Image(s) Selector Replicas ---------- ---------- ---------- ---------- redisSlaveController brendanburns/redis-slave name=redisslave 2 @@ -142,7 +142,7 @@ redis-server --slaveof $SERVICE_HOST $REDISMASTER_SERVICE_PORT Once that's up you can list the pods in the cluster, to verify that the master and slaves are running: ```shell -$ cluster/cloudcfg.sh list /pods +$ cluster/kubecfg.sh list /pods Name Image(s) Host Labels ---------- ---------- ---------- ---------- redis-master-2 dockerfile/redis kubernetes-minion-3.c.briandpe-api.internal name=redis-master @@ -169,12 +169,12 @@ Just like the master, we want to have a service to proxy connections to the read } ``` -This time the selector for the service is `name=redis-slave`, because that identifies the pods running redis slaves. It may also be helpful to set labels on your service itself--as we've done here--to make it easy to locate them with the `cloudcfg -l "label=value" list sevices` command. +This time the selector for the service is `name=redis-slave`, because that identifies the pods running redis slaves. It may also be helpful to set labels on your service itself--as we've done here--to make it easy to locate them with the `kubecfg -l "label=value" list sevices` command. -Now that you have created the service specification, create it in your cluster with the `cloudcfg` CLI: +Now that you have created the service specification, create it in your cluster with the `kubecfg` CLI: ```shell -$ cluster/cloudcfg.sh -c examples/guestbook/redis-slave-service.json create /services +$ cluster/kubecfg.sh -c examples/guestbook/redis-slave-service.json create /services Name Label Query Port ---------- ---------- ---------- redisslave name=redisslave 10001 @@ -210,7 +210,7 @@ Create a file named `frontend-controller.json`: With this file, you can turn up your frontend with: ```shell -$ cluster/cloudcfg.sh -c examples/guestbook/frontend-controller.json create /replicationControllers +$ cluster/kubecfg.sh -c examples/guestbook/frontend-controller.json create /replicationControllers Name Image(s) Selector Replicas ---------- ---------- ---------- ---------- frontendController brendanburns/php-redis name=frontend 3 @@ -219,7 +219,7 @@ frontendController brendanburns/php-redis name=frontend 3 Once that's up you can list the pods in the cluster, to verify that the master, slaves and frontends are running: ```shell -$ cluster/cloudcfg.sh list /pods +$ cluster/kubecfg.sh list /pods Name Image(s) Host Labels ---------- ---------- ---------- ---------- redis-master-2 dockerfile/redis kubernetes-minion-3.c.briandpe-api.internal name=redis-master diff --git a/hack/build-go.sh b/hack/build-go.sh index a3bc6eb883..cc901e6e6a 100755 --- a/hack/build-go.sh +++ b/hack/build-go.sh @@ -22,7 +22,7 @@ source $(dirname $0)/config-go.sh cd "${KUBE_TARGET}" -BINARIES="proxy integration apiserver controller-manager kubelet cloudcfg localkube" +BINARIES="proxy integration apiserver controller-manager kubelet kubecfg localkube" if [ $# -gt 0 ]; then BINARIES="$@" diff --git a/hack/e2e-test.sh b/hack/e2e-test.sh index faca4e9a2b..d4d5314d18 100755 --- a/hack/e2e-test.sh +++ b/hack/e2e-test.sh @@ -35,7 +35,7 @@ set -e # Use testing config export KUBE_CONFIG_FILE="config-test.sh" export KUBE_REPO_ROOT="$(dirname $0)/.." -export CLOUDCFG="${KUBE_REPO_ROOT}/cluster/cloudcfg.sh" +export CLOUDCFG="${KUBE_REPO_ROOT}/cluster/kubecfg.sh" source "${KUBE_REPO_ROOT}/cluster/util.sh" ${KUBE_REPO_ROOT}/hack/build-go.sh diff --git a/hack/local-up.sh b/hack/local-up.sh index 7cd2b11004..4b241bc2fe 100755 --- a/hack/local-up.sh +++ b/hack/local-up.sh @@ -28,7 +28,7 @@ set -e ( source $(dirname $0)/config-go.sh cd "${KUBE_TARGET}" - BINARIES="cloudcfg localkube" + BINARIES="kubecfg localkube" for b in $BINARIES; do echo "+++ Building ${b}" go build "${KUBE_GO_PACKAGE}"/cmd/${b} diff --git a/hack/localcfg.sh b/hack/localcfg.sh index 620106fd1b..d0c7c458fe 100755 --- a/hack/localcfg.sh +++ b/hack/localcfg.sh @@ -14,12 +14,12 @@ # See the License for the specific language governing permissions and # limitations under the License. -# This file is exactly like cloudcfg.sh, but it talks to a local master +# This file is exactly like kubecfg.sh, but it talks to a local master # (which you're assumed to be running with localkube.sh). -CLOUDCFG=$(dirname $0)/../output/go/cloudcfg +CLOUDCFG=$(dirname $0)/../output/go/kubecfg if [ ! -x $CLOUDCFG ]; then - echo "Could not find cloudcfg binary. Run hack/build-go.sh to build it." + echo "Could not find kubecfg binary. Run hack/build-go.sh to build it." exit 1 fi diff --git a/pkg/cloudcfg/doc.go b/pkg/kubecfg/doc.go similarity index 77% rename from pkg/cloudcfg/doc.go rename to pkg/kubecfg/doc.go index 0613f6c404..ac9e21eb49 100644 --- a/pkg/cloudcfg/doc.go +++ b/pkg/kubecfg/doc.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -// Package cloudcfg is a set of libraries that are used by the cloudcfg command line tool. +// Package kubecfg is a set of libraries that are used by the kubecfg command line tool. // They are separated out into a library to support unit testing. Most functionality should -// be included in this package, and the main cloudcfg should really just be an entry point. -package cloudcfg +// be included in this package, and the main kubecfg should really just be an entry point. +package kubecfg diff --git a/pkg/cloudcfg/cloudcfg.go b/pkg/kubecfg/kubecfg.go similarity index 99% rename from pkg/cloudcfg/cloudcfg.go rename to pkg/kubecfg/kubecfg.go index 916cf5b900..cd398a87c6 100644 --- a/pkg/cloudcfg/cloudcfg.go +++ b/pkg/kubecfg/kubecfg.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package cloudcfg +package kubecfg import ( "encoding/json" diff --git a/pkg/cloudcfg/cloudcfg_test.go b/pkg/kubecfg/kubecfg_test.go similarity index 99% rename from pkg/cloudcfg/cloudcfg_test.go rename to pkg/kubecfg/kubecfg_test.go index e8e57d4128..a5c0e0a273 100644 --- a/pkg/cloudcfg/cloudcfg_test.go +++ b/pkg/kubecfg/kubecfg_test.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package cloudcfg +package kubecfg import ( "encoding/json" diff --git a/pkg/cloudcfg/parse.go b/pkg/kubecfg/parse.go similarity index 98% rename from pkg/cloudcfg/parse.go rename to pkg/kubecfg/parse.go index 831153fe7e..21b2abc72b 100644 --- a/pkg/cloudcfg/parse.go +++ b/pkg/kubecfg/parse.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package cloudcfg +package kubecfg import ( "fmt" diff --git a/pkg/cloudcfg/parse_test.go b/pkg/kubecfg/parse_test.go similarity index 99% rename from pkg/cloudcfg/parse_test.go rename to pkg/kubecfg/parse_test.go index 34eec876b0..12d6a33c0d 100644 --- a/pkg/cloudcfg/parse_test.go +++ b/pkg/kubecfg/parse_test.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package cloudcfg +package kubecfg import ( "testing" diff --git a/pkg/cloudcfg/proxy_server.go b/pkg/kubecfg/proxy_server.go similarity index 99% rename from pkg/cloudcfg/proxy_server.go rename to pkg/kubecfg/proxy_server.go index 040ce865e7..a832febb24 100644 --- a/pkg/cloudcfg/proxy_server.go +++ b/pkg/kubecfg/proxy_server.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package cloudcfg +package kubecfg import ( "fmt" diff --git a/pkg/cloudcfg/proxy_server_test.go b/pkg/kubecfg/proxy_server_test.go similarity index 98% rename from pkg/cloudcfg/proxy_server_test.go rename to pkg/kubecfg/proxy_server_test.go index 4cf90aa0a5..26af91ac07 100644 --- a/pkg/cloudcfg/proxy_server_test.go +++ b/pkg/kubecfg/proxy_server_test.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package cloudcfg +package kubecfg import ( "io/ioutil" diff --git a/pkg/cloudcfg/resource_printer.go b/pkg/kubecfg/resource_printer.go similarity index 99% rename from pkg/cloudcfg/resource_printer.go rename to pkg/kubecfg/resource_printer.go index 1ccf2de2c5..c2a260877c 100644 --- a/pkg/cloudcfg/resource_printer.go +++ b/pkg/kubecfg/resource_printer.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package cloudcfg +package kubecfg import ( "encoding/json" diff --git a/pkg/cloudcfg/resource_printer_test.go b/pkg/kubecfg/resource_printer_test.go similarity index 99% rename from pkg/cloudcfg/resource_printer_test.go rename to pkg/kubecfg/resource_printer_test.go index 77c4beaa42..873927e554 100644 --- a/pkg/cloudcfg/resource_printer_test.go +++ b/pkg/kubecfg/resource_printer_test.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package cloudcfg +package kubecfg import ( "bytes" diff --git a/release/release.sh b/release/release.sh index 62ecf112ba..6405ff2a74 100755 --- a/release/release.sh +++ b/release/release.sh @@ -92,7 +92,7 @@ set_tag $RELEASE_FULL_TAG_PATH $RELEASE_FULL_PATH echo "Release pushed ($RELEASE_PREFIX$RELEASE_NAME)." -# This isn't quite working right now. Need to figure out packaging the cloudcfg tool. +# This isn't quite working right now. Need to figure out packaging the kubecfg tool. # echo " Launch with:" # echo # echo " curl -s -L ${RELEASE_FULL_PATH/gs:\/\//http://storage.googleapis.com/}/launch-kubernetes.sh | bash"