~narindergupta/opnfv/stable-R2

« back to all changes in this revision

Viewing changes to ci/opencontrail/juju-deployer/scripts/cloud-setup.sh

  • Committer: Narinder Gupta
  • Date: 2016-07-27 14:32:35 UTC
  • Revision ID: git-v1:adb9288685ac205decce04a1d8eba4c9989bcc48
adding script to enable juju on openstack.

Change-Id: If259c8ad3530cc8d67499d406bd96abdd98b46f0
Signed-off-by: Narinder Gupta <narinder.gupta@canonical.com>

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh -e
 
2
 
 
3
. ~/admin-openrc
 
4
 
 
5
# adjust tiny image
 
6
nova flavor-delete m1.tiny
 
7
nova flavor-create m1.tiny 1 512 8 1
 
8
 
 
9
# configure external network
 
10
neutron net-create --router:external=True public-net
 
11
neutron subnet-create --name public-subnet --no-gateway --allocation-pool start=10.0.10.2,end=10.0.10.254 --disable-dhcp public-net 10.0.10.0/24
 
12
 
 
13
# create vm network
 
14
neutron net-create ubuntu-net
 
15
neutron subnet-create --name ubuntu-subnet --gateway 10.0.5.1 ubuntu-net 10.0.5.0/24
 
16
 
 
17
# create pool of floating ips
 
18
i=0
 
19
while [ $i -ne 10 ]; do
 
20
        neutron floatingip-create public-net
 
21
        i=$((i + 1))
 
22
done
 
23
 
 
24
# configure security groups
 
25
neutron security-group-rule-create --direction ingress --ethertype IPv4 --protocol icmp --remote-ip-prefix 0.0.0.0/0 default
 
26
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
 
27
 
 
28
# import key pair
 
29
nova keypair-add --pub-key id_rsa.pub ubuntu-keypair
 
30
 
 
31
#http://docs.openstack.org/juno/install-guide/install/apt/content/launch-instance-neutron.html
 
32
# 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
 
33
# nova floating-ip-associate demo-instance1 10.5.8.35