blob: 07365780ee3488906dd78ed42f09a94c866a8242 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/bash
#placeholder for deployment script.
set -ex
cp opencontrail/juju-deployer/contrail.yaml ./
echo "... Deployment Started ...."
#case openstack kilo with odl
juju-deployer -d -r 13 -c contrail.yaml trusty-juno-contrail
#case openstack kilo with odl ha
#juju-deployer -d -r 13 -c contrail-ha.yaml trusty-juno-contrail
#case openstack master tip git tree with odl
#cp -R odl/juju-deployer/source/*.yaml ./
#juju-deployer -d -r 13 -c contrail-tip.yaml trusty-juno-contrail
echo "... Deployment finished ...."
|