diff --git a/README.md b/README.md index 12e19e2cc..de61f517d 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ From a Linux or Mac OS X client: $ git clone https://github.com/kubernetes/deployment-manager.git $ cd deployment-manager $ make build -$ bin/helm dm install +$ bin/helm server install ``` That's it. You can now use `kubectl` to see DM running in your cluster: @@ -55,10 +55,10 @@ kubectl proxy --port=8001 --namespace=dm & ## Uninstalling Helm from Kubernetes -You can uninstall Deployment Manager using the same configuration: +You can uninstall Helm using the same configuration: ``` -helm dm uninstall +helm server uninstall ``` ## Installing Charts @@ -69,7 +69,7 @@ To quickly deploy a chart, you can use the Helm command line tool: $ helm deploy CHARTNAME ``` -## Design of Deployment Manager +## Design of Helm There is a more detailed [design document](docs/design/design.md) available. diff --git a/cmd/doc.go b/cmd/doc.go index f1fb22eff..8a962fc29 100644 --- a/cmd/doc.go +++ b/cmd/doc.go @@ -14,5 +14,5 @@ See the License for the specific language governing permissions and limitations under the License. */ -// Package cmd contains the executables for Deployment Manager. +// Package cmd contains the executables for Helm. package cmd diff --git a/cmd/manager/repository/repository.go b/cmd/manager/repository/repository.go index 0a16c1c76..40ebaee37 100644 --- a/cmd/manager/repository/repository.go +++ b/cmd/manager/repository/repository.go @@ -21,7 +21,7 @@ import ( "github.com/kubernetes/helm/pkg/common" ) -// Repository manages storage for all Deployment Manager entities, as well as +// Repository manages storage for all Helm entities, as well as // the common operations to store, access and manage them. type Repository interface { // Deployments. diff --git a/get-install.sh b/get-install.sh index d067ad25b..84bce786d 100755 --- a/get-install.sh +++ b/get-install.sh @@ -16,12 +16,12 @@ set -euo pipefail DEFAULT_TAG=v1.2 -DEFAULT_BINARY=${GOPATH}/bin/dm +DEFAULT_BINARY=${GOPATH}/bin/helm DEFAULT_PLATFORM=$(uname | tr '[:upper:]' '[:lower:]') DEFAULT_ARCH=$(uname -m) STORAGE_URL=http://get-dm.storage.googleapis.com -ZIP=dm-${TAG:-${DEFAULT_TAG}}-${PLATFORM:-${DEFAULT_PLATFORM}}-${ARCH:-${DEFAULT_ARCH}}.zip +ZIP=helm-${TAG:-${DEFAULT_TAG}}-${PLATFORM:-${DEFAULT_PLATFORM}}-${ARCH:-${DEFAULT_ARCH}}.zip echo "Downloading ${ZIP}..." curl -Ls "${STORAGE_URL}/${ZIP}" -O @@ -29,20 +29,20 @@ curl -Ls "${STORAGE_URL}/${ZIP}" -O unzip -qo ${ZIP} rm ${ZIP} -chmod +x dm +chmod +x helm cat <