summaryrefslogtreecommitdiffstats
path: root/ci/odl/juju-deployer/scripts/cloud-setup.sh
diff options
context:
space:
mode:
authorNarinder Gupta <narinder.gupta@canonical.com>2016-10-03 07:32:26 -0500
committerNarinder Gupta <narinder.gupta@canonical.com>2016-10-03 15:50:02 -0500
commit4b367d124bece258eb520c7878de835b37a01abb (patch)
treeead2520d31a7367c1c342ea44f368b6e9f980589 /ci/odl/juju-deployer/scripts/cloud-setup.sh
parent8ef7d630c0b868770e77a333171819af133d6308 (diff)
removing the stalled filed
Remove the stalled files and update the labconfig for juniper lab in opnfv. Change-Id: Ib734a9b8cd608e70cbaae007a60caa8d3c14fdf3 Signed-off-by: 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.sh42
1 files changed, 0 insertions, 42 deletions
diff --git a/ci/odl/juju-deployer/scripts/cloud-setup.sh b/ci/odl/juju-deployer/scripts/cloud-setup.sh
deleted file mode 100755
index a997d3de..00000000
--- a/ci/odl/juju-deployer/scripts/cloud-setup.sh
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/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 id_rsa.pub ubuntu-keypair
-
-# configure external network
-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
-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 ext-net
- i=$((i + 1))
-done
-
-#http://docs.openstack.org/juno/install-guide/install/apt/content/launch-instance-neutron.html
-# nova boot --flavor m1.small --image cirros-0.3.3-x86_64 --nic net-id=b65479a4-3638-4595-9245-6e41ccd8bfd8 --security-group default --key-name ubuntu-keypair demo-instance1
-# nova floating-ip-associate demo-instance1 10.5.8.35