diff options
author | Dan Smith <daniel.smith@ericsson.com> | 2015-05-25 12:50:17 -0400 |
---|---|---|
committer | Dan Smith <daniel.smith@ericsson.com> | 2015-05-26 00:35:18 -0400 |
commit | fdc9462e02cd1c94a518d47a0ac2532bcbeb3cd5 (patch) | |
tree | f19b69ad55747d59abeadb64c3991d4870039aeb /fuel/build/f_odl_docker/puppet/modules/opnfv/manifests | |
parent | 758473ccdd2f5c2a5bc2ab726b0cc8972f01eb62 (diff) |
Delivering script for use with ODL automation to start ODL in daemon mode only.
To start ODL after a fuel deployment simply run "/opt/opnfv/odl/stage_odl.sh" and the DLUX GUI
will be listening at http://<br-ex ip>:8181/dlux/index.html
Usage / Order:
- after you have deployed login to controller and run config_net.sh
- do the same for your compute nodes
- login to controller and run stage_odl.sh
note: Ensure that you are able to reach the internet / and resolv.conf is set to a valid DNS
- create neutron networks and look in gui that your Nodes show up.
Change-Id: Iba3d99152052e9e31a6f709b510a30c8b080aa26
JIRA: 0
Signed-off-by: Dan Smith <daniel.smith@ericsson.com>
Diffstat (limited to 'fuel/build/f_odl_docker/puppet/modules/opnfv/manifests')
-rw-r--r-- | fuel/build/f_odl_docker/puppet/modules/opnfv/manifests/odl_docker.pp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/fuel/build/f_odl_docker/puppet/modules/opnfv/manifests/odl_docker.pp b/fuel/build/f_odl_docker/puppet/modules/opnfv/manifests/odl_docker.pp index 7370169..24f28e4 100644 --- a/fuel/build/f_odl_docker/puppet/modules/opnfv/manifests/odl_docker.pp +++ b/fuel/build/f_odl_docker/puppet/modules/opnfv/manifests/odl_docker.pp @@ -35,6 +35,17 @@ class opnfv::odl_docker source => '/etc/puppet/modules/opnfv/scripts/start_odl_container.sh', mode => 750, } + file { '/opt/opnfv/odl/stage_odl.sh': + ensure => present, + source => '/etc/puppet/modules/opnfv/scripts/stage_odl.sh', + mode => 750, + } + file { '/opt/opnfv/odl/config_net.sh': + ensure => present, + source => '/etc/puppet/modules/opnfv/scripts/config_net.sh', + mode => 750, + } + # fix failed to find the cgroup root issue # https://github.com/docker/docker/issues/8791 |