Update Azure/ACS deployment documentation.

This commit is contained in:
Jin Li 2017-09-18 18:06:10 -07:00
Родитель 1ff98b663e
Коммит f4deb62db2
2 изменённых файлов: 33 добавлений и 33 удалений

Просмотреть файл

@ -2,15 +2,15 @@
This document describes the procedure to deploy DL Workspace cluster on ACS. We are still improving the deployment procedure on ACS. Please contact the authors if you encounter any issues.
## Follow [this document](../DevEnvironment/README.md) to setup the dev environment of DLWorkspace. Login to your Azure subscription on your dev machine via:
0. Follow [this document](../../DevEnvironment/README.md) to setup the dev environment of DLWorkspace. Login to your Azure subscription on your dev machine via:
```
az login
```
## Please [configure](configure.md) your ACS cluster.
1. Please [configure](configure.md) your ACS cluster.
## Running deployment script on the dev machine under src/ClusterBootstrap, as follows:
2. Running deployment script on the dev machine under src/ClusterBootstrap, as follows:
```
./deploy.py acs
@ -18,39 +18,39 @@ az login
The deployment script executes the following commands in sequence.
* Setup basic K8S cluster on ACS
1. Setup basic K8S cluster on ACS
```
./deploy.py acs deploy
```
* Label nodels and deploy services:
2. Label nodels and deploy services:
```
./deploy.py acs postdeploy
```
* Mount storage on nodes:
3. Mount storage on nodes:
```
./deploy.py acs storagemount
```
* Install GPU drivers on nodes (if needed):
4. Install GPU drivers on nodes (if needed):
```
./deploy.py acs gpudrivers
```
* Install network plugin
5. Install network plugin
```
./deploy.py acs freeflow
```
* Build needed docker images and configuration files for restfulapi, jobmanager, and webui
6. Build needed docker images and configuration files for restfulapi, jobmanager, and webui
```
./deploy.py acs bldwebui
```
* Start DLWorkspace pods
7. Start DLWorkspace pods
```
./deploy.py acs restartwebui
```
## If you run into a deployment issue, please check [here](FAQ.md) first.
3. If you run into a deployment issue, please check [here](FAQ.md) first.

Просмотреть файл

@ -4,7 +4,7 @@ This document describes the procedure to deploy DL Workspace cluster on Azure. W
Please note that the procedure below doesn't deploy HDFS/Spark on DLWorkspace cluster on Azure. So Spark job execution is not available on Azure Cluster.
0. Follow [this document](../DevEnvironment/README.md) to setup the dev environment of DLWorkspace. Login to your Azure subscription on your dev machine via:
0. Follow [this document](../../DevEnvironment/README.md) to setup the dev environment of DLWorkspace. Login to your Azure subscription on your dev machine via:
```
az login