diff options
author | Jenkins <jenkins@review.openstack.org> | 2016-12-08 02:59:31 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2016-12-08 02:59:31 +0000 |
commit | 7e4904cafc7765347a43af6968a91a7ea7394e80 (patch) | |
tree | fc67c4482fbd3e4d5231ed312721f9b1864cd486 /deployed-server/README.rst | |
parent | 9fac0b99b599e39a956d0b41e402b382adb903f1 (diff) | |
parent | 64e44e8626e394a8ec41c798769893c0629958a3 (diff) |
Merge "Make get-occ-config.sh support custom roles"
Diffstat (limited to 'deployed-server/README.rst')
-rw-r--r-- | deployed-server/README.rst | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/deployed-server/README.rst b/deployed-server/README.rst index ce74e77b..f269b6a4 100644 --- a/deployed-server/README.rst +++ b/deployed-server/README.rst @@ -119,10 +119,15 @@ from the deployment command, the script should be ready to run: [NovaCompute]: CREATE_IN_PROGRESS state changed The user running the script must be able to ssh as root to each server. Define -the hostnames of the deployed servers you intend to use for each role type:: - - export controller_hosts="controller0 controller1 controller2" - export compute_hosts="compute0" +the the names of your custom roles (if applicable) and hostnames of the deployed +servers you intend to use for each role type. For each role name, a +corresponding <role-name>_hosts variable should also be defined, e.g.:: + + export ROLES="Controller NewtorkNode StorageNode Compute" + export Controller_hosts="10.0.0.1 10.0.0.2 10.0.0.3" + export NetworkNode_hosts="10.0.0.4 10.0.0.5 10.0.0.6" + export StorageNode_hosts="10.0.0.7 10.0.08" + export Compute_hosts="10.0.0.9 10.0.0.10 10.0.0.11" Then run the script on the undercloud with a stackrc file sourced, and the script will copy the needed os-collect-config.conf configuration to each |