diff options
author | Narinder Gupta <narinder.gupta@canonical.com> | 2015-12-04 13:11:44 -0600 |
---|---|---|
committer | Narinder Gupta <narinder.gupta@canonical.com> | 2015-12-04 19:38:59 -0600 |
commit | 6c7fc201c56648de9622dffc48a3f47e81de9465 (patch) | |
tree | d2c9218d0da1a2f05a6058f1b0c0b83e89c49b84 /ci/nosdn/README | |
parent | b4ee809c40d27d3323bb19b4edfd188ebd0535d6 (diff) |
modified to comment the use of juju-br0 as external network.
Added option to install neutron-openswitch without ODL.
consolidated source files to common as all sdn share the s
same source for openstack and it can be modified during deployment.
Change-Id: I1df7f5cd5d928d170bc6be6b32c3404dbcb5fda3
Diffstat (limited to 'ci/nosdn/README')
-rw-r--r-- | ci/nosdn/README | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/ci/nosdn/README b/ci/nosdn/README new file mode 100644 index 00000000..765e5eb7 --- /dev/null +++ b/ci/nosdn/README @@ -0,0 +1,87 @@ +OpenDaylight Deployment with Juju +================================= + +This readme contains instructions for checking out and deploying Juju charms for +OpenDaylight. + +The charms are targetted at Trusty. + + +Checkout charms +--------------- + +Charms are hosted on Launchpad. +You need to 'sudo apt-get install bzr' first. + +Follow these steps to checkout code: + +cd <deployer dir> +./fetch-charms.sh + +This will checkout the relevant charms into 'src' and create any Juju symlinks +in 'charms'. + + +Deploy with cloud-sh-odl +------------------------ + +cloud-sh-odl is a collection of development shell scripts to deploy +and setup OpenStack with OpenDaylight using Juju's local provider. This will +create 3 KVMs as follows: + +*KVM #1 - Keystone, Glance, Neutron Server, Nova Cloud Controller, Horizon, + MySQL, RabbitMQ, OpenDaylight Controller + +*KVM #2 - Neutron agents + +*KVM #3 - Nova Compute + +You'll require approx. 13Gb RAM with 40Gb+ disk space. +Deployment can take anywhere between 20 mins to 1 hour. + +You need to 'sudo apt-get install juju juju-local uvtool', and +logout/login in order to pick up libvirt group permissions before +proceeding. See https://bugs.launchpad.net/juju-core/+bug/1308088. + +Follow these steps: + +ssh-keygen + (if you don't already have a key at ~/.ssh/id_rsa). + +cp cloud-sh-odl/environments.yaml ~/.juju + (or create your own default local environment in your existing + environments.yaml file) + +cd cloud-sh-odl + +./deploy.sh + +This will log to 'out.log'. + +This will deploy OpenStack and import Trusty's daily image into Glance. + +Horizon will be located on the machine 'juju status openstack-dashboard' - +http://<ip>/horizon. +Admin credentials will be written to cloud/admin-openrc. + +The deployment can be destroyed with: + +juju destroy-environment local + + +Deploy with Juju Deployer +------------------------- + +Juju Deployer can deploy a preset configuration of charms given a yaml +configuration file. There is a configuration file in +'juju-deployer/odl.yaml'. + +You need to 'sudo apt-get install juju-deployer' first. + +Then: + +cd juju-deployer + +juju-deployer -c odl.yaml -d trusty-icehouse-odl + +Juju Deployer will branch its own copy of the remote charms. |