summaryrefslogtreecommitdiffstats
path: root/ci/odl/juju-deployer/scripts/cloud-setup.sh
diff options
context:
space:
mode:
authorNarinder Gupta <narinder.gupta@canonical.com>2015-11-11 13:37:41 -0600
committerNarinder Gupta <narinder.gupta@canonical.com>2015-11-11 13:38:31 -0600
commitb7b23a46f98bf279fd6b31ed5928e3045cfc746e (patch)
tree557d8e5444cd877969fa43fa16101e718ce72d22 /ci/odl/juju-deployer/scripts/cloud-setup.sh
parentef0bf9ac1985e1ba1911fa2d6020a1cbf55cfde2 (diff)
added new scripts to configure openstac after install.
Change-Id: Ia5f87da468505ba89a0b61fa92c020caba37b2a2 Author: Narinder Gupta <narinder.gupta@canonical.com>
Diffstat (limited to 'ci/odl/juju-deployer/scripts/cloud-setup.sh')
-rwxr-xr-xci/odl/juju-deployer/scripts/cloud-setup.sh39
1 files changed, 39 insertions, 0 deletions
diff --git a/ci/odl/juju-deployer/scripts/cloud-setup.sh b/ci/odl/juju-deployer/scripts/cloud-setup.sh
new file mode 100755
index 00000000..b18d798f
--- /dev/null
+++ b/ci/odl/juju-deployer/scripts/cloud-setup.sh
@@ -0,0 +1,39 @@
+#!/bin/sh -e
+
+. ~/admin-openrc
+
+# adjust tiny image
+nova flavor-delete m1.tiny
+nova flavor-create m1.tiny 1 512 8 1
+
+# configure security groups
+neutron security-group-rule-create --direction ingress --ethertype IPv4 --protocol icmp --remote-ip-prefix 0.0.0.0/0 default
+neutron security-group-rule-create --direction ingress --ethertype IPv4 --protocol tcp --port-range-min 22 --port-range-max 22 --remote-ip-prefix 0.0.0.0/0 default
+
+# import key pair
+keystone tenant-create --name demo --description "Demo Tenant"
+keystone user-create --name demo --tenant demo --pass demo --email demo@demo.demo
+
+nova keypair-add --pub-key ~/.ssh/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.255 --disable-dhcp ext-net 10.2.65.0/24
+
+# create vm network
+neutron net-create demo-net
+neutron subnet-create --name demo-subnet --gateway 10.20.5.1 demo-net 10.20.5.0/24
+
+neutron router-create demo-router
+
+neutron router-interface-add demo-router demo-subnet
+
+neutron router-gateway-set demo-router ext-net
+
+# create pool of floating ips
+i=0
+while [ $i -ne 10 ]; do
+ neutron floatingip-create public-net
+ i=$((i + 1))
+done
+