1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Collect the charm branches from Launchpad
collect config=collect-next
# Use juju deployer with full.yaml bundle
deploy config=full-dvr-next.yaml delay=0 target=${MOJO_SERIES}-pike
# Check juju statuses are green and that hooks have finished
verify config=check_juju.py
# Create sdn on overcloud
script config=network_setup.py NET_TOPOLOGY="dvr"
# Setup glance images
script config=image_setup.py
# Setup keystone users
script config=keystone_setup.py
# Create 1 * trusty instance on the overcloud
verify config=simple_os_checks.py MACHINES='trusty:m1.small:1' CLOUDINIT_WAIT="300"
# Success
|