diff options
author | Narinder Gupta <narinder.gupta@canonical.com> | 2015-11-23 20:14:25 -0600 |
---|---|---|
committer | Narinder Gupta <narinder.gupta@canonical.com> | 2015-11-23 20:15:09 -0600 |
commit | be7312f3b66e10f754a56e63e5834d3d599d871d (patch) | |
tree | c8ec1946ccf32effb5febb9be8af3721ff00ae31 /ci/odl/juju-deployer/scripts | |
parent | 09b998637dd8f399f26ed2ebcbdaadbf626bd32f (diff) |
modified the bundle to integrete the Ceph.
Change-Id: I776811240964c52fae9c9b6b1e4d1afa7c74760c
Author: Narinder Gupta <narinder.gupta@canonical.com>
Diffstat (limited to 'ci/odl/juju-deployer/scripts')
-rwxr-xr-x | ci/odl/juju-deployer/scripts/cloud-setup.sh | 4 | ||||
-rwxr-xr-x | ci/odl/juju-deployer/scripts/glance.sh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ci/odl/juju-deployer/scripts/cloud-setup.sh b/ci/odl/juju-deployer/scripts/cloud-setup.sh index b151ce36..184cecc6 100755 --- a/ci/odl/juju-deployer/scripts/cloud-setup.sh +++ b/ci/odl/juju-deployer/scripts/cloud-setup.sh @@ -17,8 +17,8 @@ keystone user-create --name demo --tenant demo --pass demo --email demo@demo.dem nova keypair-add --pub-key id_rsa.pub ubuntu-keypair # configure external network -neutron net-create --router:external --provider:physical_network external --provider:network_type flat ext-net -neutron subnet-create --name ext-subnet --no-gateway --allocation-pool start=10.2.65.201,end=10.2.65.254 --disable-dhcp ext-net 10.2.65.0/24 +neutron net-create ext-net --router:external --provider:physical_network external --provider:network_type flat +neutron subnet-create ext-net --name ext-subnet --allocation-pool start=10.5.8.5,end=10.5.8.254 --disable-dhcp --gateway 10.5.8.1 10.5.8.0/24 # create vm network neutron net-create demo-net diff --git a/ci/odl/juju-deployer/scripts/glance.sh b/ci/odl/juju-deployer/scripts/glance.sh index 82c84bbe..a18afe6c 100755 --- a/ci/odl/juju-deployer/scripts/glance.sh +++ b/ci/odl/juju-deployer/scripts/glance.sh @@ -4,6 +4,6 @@ wget -P /tmp/images http://download.cirros-cloud.net/0.3.3/cirros-0.3.3-x86_64-disk.img wget -P /tmp/images http://cloud-images.ubuntu.com/trusty/current/trusty-server-cloudimg-amd64-disk1.img -glance image-create --name "cirros-0.3.3-x86_64" --file /tmp/images/cirros-0.3.3-x86_64-disk.img --disk-format qcow2 --container-format bare --is-public True --owner admin --progress -glance image-create --name "ubuntu-trusty-daily" --file /tmp/images/trusty-server-cloudimg-amd64-disk1.img --disk-format qcow2 --container-format bare --is-public True --owner admin --progress +glance image-create --name "cirros-0.3.3-x86_64" --file /tmp/images/cirros-0.3.3-x86_64-disk.img --disk-format qcow2 --container-format bare --progress +glance image-create --name "ubuntu-trusty-daily" --file /tmp/images/trusty-server-cloudimg-amd64-disk1.img --disk-format qcow2 --container-format bare --progress rm -rf /tmp/images |