mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
601 B
31 lines
601 B
9 years ago
|
# Pushing DM
|
||
|
|
||
|
This details the requirements and steps for doing a DM push.
|
||
|
|
||
|
## Prerequisites
|
||
|
|
||
|
In order to build and push DM, you must:
|
||
|
|
||
|
* be an editor or owner on the GCP project `dm-k8s-testing`
|
||
|
* have `docker` installed and runnable in your current environment
|
||
|
* have `gcloud` installed
|
||
|
* have `gsutil` installed
|
||
|
|
||
|
## Pushing
|
||
|
|
||
|
To build and push the service containers:
|
||
|
|
||
|
```
|
||
|
$ cd ${GOPATH}/src/github.com/kubernetes/deployment-manager
|
||
|
$ export PROJECT=dm-k8s-testing
|
||
|
$ make push
|
||
|
```
|
||
|
|
||
|
To push the client binaries, run the following for both Mac OS X and Linux
|
||
|
environments:
|
||
|
|
||
|
```
|
||
|
$ hack/dm-push.sh
|
||
|
```
|
||
|
|