summaryrefslogtreecommitdiffstats
path: root/ci/deploy.sh
diff options
context:
space:
mode:
authorNarinder Gupta <narinder.gupta@canonical.com>2015-12-02 22:43:18 -0600
committerNarinder Gupta <narinder.gupta@canonical.com>2015-12-02 22:43:18 -0600
commitb4ee809c40d27d3323bb19b4edfd188ebd0535d6 (patch)
treecc644083e204edadede08f0a2bc4e1bf83b840f1 /ci/deploy.sh
parent0bbbf469f23853b861ebdee8a462b527da2696be (diff)
modified to include the default deployment of MAAS on virbr0 in
case no lab is provided. modified maas deployment creating the default storage pool. Change-Id: Ic48b95222c01e5b5f2984777776c306dbd226832
Diffstat (limited to 'ci/deploy.sh')
-rwxr-xr-xci/deploy.sh9
1 files changed, 4 insertions, 5 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh
index 8941cdce..0c6fc892 100755
--- a/ci/deploy.sh
+++ b/ci/deploy.sh
@@ -7,8 +7,8 @@ set -ex
opnfvsdn=odl
opnfvtype=nonha
-openstack=kilo
-opnfvlab=intelpod5
+openstack=liberty
+opnfvlab=default
opnfvrel=b
read_config() {
@@ -22,7 +22,7 @@ read_config() {
usage() { echo "Usage: $0 [-s <odl|opencontrail>]
[-t <nonha|ha|tip>]
[-o <juno|kilo|liberty>]
- [-l <intelpod5>]
+ [-l <default|intelpod5>]
[-r <a|b>]" 1>&2 exit 1; }
while getopts ":s:t:o:l:h:r:" opt; do
@@ -51,10 +51,9 @@ while getopts ":s:t:o:l:h:r:" opt; do
done
deploy_dep() {
- sudo apt-get install git -y
sudo apt-add-repository ppa:juju/stable -y
sudo apt-get update
- sudo apt-get install juju juju-deployer -y
+ sudo apt-get install juju git juju-deployer -y
juju init -f
cp environments.yaml ~/.juju/
}