diff --git a/README.md b/README.md
index 12e19e2ccae7802179d301c6cf4511d198ef63fd..de61f517d59c1ec31402969592b4418465877647 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 f1fb22eff22d428e9bcb283a17b7e0734a888eab..8a962fc2974cd89f8cdf4a36df2a8663cac75c2d 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 0a16c1c761b3c2990a9ad352fe9a89e56543c723..40ebaee37a893676da080b2a2ec4ac5272739ed6 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 d067ad25b59aa214984b51e3ba14ee32388f2e6b..84bce786da37f8dc29dbfd8fe23d7bc74f946cc8 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 <<EOF
 
-dm is now available in your current directory.
+helm is now available in your current directory.
 
-Before using it, please install the Deployment Manager service in your
+Before using it, please install the Helm service in your
 kubernetes cluster by running
 
-  $ kubectl create -f install.yaml
+  $ helm server install
 
 To get started, run:
 
-  $ ./dm
+  $ helm help
 
 EOF
 
diff --git a/pkg/doc.go b/pkg/doc.go
index 9d78a47aaa90e75c860126b02057741c4f21519a..17fad34d3a2749b029dc0064a3d32c15e5b61bdf 100644
--- a/pkg/doc.go
+++ b/pkg/doc.go
@@ -1,2 +1,2 @@
-// Package pkg contains all libraries for Deployment Manager
+// Package pkg contains all libraries for Helm.
 package pkg
diff --git a/pkg/version/version.go b/pkg/version/version.go
index edcdf52caf3b34b049660cb07e52da4465ca2f31..91711dae5f79b45adceb4ae78c76b38aa1eabf56 100644
--- a/pkg/version/version.go
+++ b/pkg/version/version.go
@@ -14,9 +14,10 @@ See the License for the specific language governing permissions and
 limitations under the License.
 */
 
+// Package version represents the current version of the project.
 package version
 
-// Version is the current version of the Deployment Manager.
+// Version is the current version of the Helm.
 // Update this whenever making a new release.
 // The version is of the format Major.Minor.Patch
 // Increment major number for new feature additions and behavioral changes.