Merge pull request #527 from technosophos/fix/dm-references

fix(*): replace occurrences of Deployment Manager
pull/530/head
Matt Butcher 9 years ago
commit 2d131e9189

@ -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.

@ -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

@ -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.

@ -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

@ -1,2 +1,2 @@
// Package pkg contains all libraries for Deployment Manager
// Package pkg contains all libraries for Helm.
package pkg

@ -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.

Loading…
Cancel
Save