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-${MOJO_SERIES}
# Use juju deployer with full.yaml bundle
deploy config=full.yaml delay=0 wait=False target=${MOJO_SERIES}-mitaka
# Check juju statuses are green and that hooks have finished
verify config=check_juju.py
# Create sdn on overcloud
script config=network_setup.py
# Setup glance images
script config=image_setup.py
# Setup keystone users
script config=keystone_setup.py
# Create 1 * tiny cirros and 1 * small precise instances on the overcloud
verify config=simple_os_checks.py MACHINES='cirros:m1.tiny:1 precise:m1.small:1' CLOUDINIT_WAIT="300"
# Success
|