
This changeset contains updates for Mitaka. To build the basedisk (if necessary) and the cluster and launch a test VM once: ./tools/repeat-test.sh -b -r 1 To test Orchestration: ./tools/test-once.sh scripts/test/heat_stack.sh Change-Id: Idd96525c14abd5903a6631095ccd6797ba91365c
86 lines
3.0 KiB
Plaintext
86 lines
3.0 KiB
Plaintext
#==============================================================================
|
|
# Scripts for controller node
|
|
cmd init_node -n controller
|
|
|
|
cmd queue etc_hosts.sh
|
|
cmd queue osbash/enable_osbash_ssh_keys.sh
|
|
cmd snapshot_cycle -n controller controller_node_init
|
|
|
|
cmd queue ubuntu/apt_install_mysql.sh
|
|
cmd queue ubuntu/apt_nosql_database.sh
|
|
cmd queue ubuntu/install_rabbitmq.sh
|
|
cmd queue ubuntu/install_memcached.sh
|
|
cmd snapshot_cycle -n controller pre-openstack_installed
|
|
|
|
cmd queue ubuntu/setup_keystone.sh
|
|
cmd queue test/get_auth_token.sh
|
|
cmd snapshot_cycle -n controller keystone_installed
|
|
|
|
cmd queue ubuntu/setup_glance.sh
|
|
cmd snapshot_cycle -n controller glance_installed
|
|
|
|
cmd queue ubuntu/setup_nova_controller.sh
|
|
cmd snapshot_cycle -n controller nova-controller_installed
|
|
|
|
cmd queue ubuntu/setup_neutron_controller.sh
|
|
cmd queue ubuntu/setup_self-service_controller.sh
|
|
cmd queue ubuntu/setup_neutron_controller_part_2.sh
|
|
cmd snapshot_cycle -n controller neutron-controller_installed
|
|
|
|
cmd queue ubuntu/setup_cinder_controller.sh
|
|
cmd snapshot_cycle -n controller cinder_installed
|
|
|
|
cmd queue ubuntu/setup_horizon.sh
|
|
cmd snapshot_cycle -n controller horizon_installed
|
|
|
|
# FIXME Our LBaaS support for kilo is broken; the configuration edits
|
|
# in setup_lbaas_controller.sh break neutron
|
|
#cmd queue ubuntu/setup_lbaas_controller.sh
|
|
#cmd snapshot_cycle -n controller lbaas-controller_installed
|
|
|
|
# Ceilometer; disable if necessary, fix comments in this file
|
|
# Note: Disable Telemetry service if it overloads the cluster.
|
|
cmd queue ubuntu/setup_telemetry_controller.sh
|
|
cmd snapshot_cycle -n controller telemetry-controller_installed
|
|
|
|
cmd queue ubuntu/setup_heat_controller.sh
|
|
cmd snapshot_cycle -n controller heat_controller_installed
|
|
|
|
cmd boot -n controller
|
|
#==============================================================================
|
|
# Scripts for compute1 node
|
|
cmd init_node -n compute1
|
|
|
|
cmd queue etc_hosts.sh
|
|
cmd queue osbash/enable_osbash_ssh_keys.sh
|
|
cmd snapshot_cycle -n compute1 compute1_node_init
|
|
|
|
cmd queue ubuntu/setup_nova_compute.sh
|
|
cmd snapshot_cycle -n compute1 nova-compute1_installed
|
|
|
|
cmd queue ubuntu/setup_neutron_compute.sh
|
|
cmd queue ubuntu/setup_self-service_compute.sh
|
|
cmd queue ubuntu/setup_neutron_compute_part_2.sh
|
|
cmd snapshot_cycle -n compute1 neutron-compute_installed
|
|
|
|
cmd queue ubuntu/setup_cinder_volumes.sh
|
|
cmd snapshot_cycle -n compute1 cinder-volume_installed
|
|
|
|
cmd queue ubuntu/setup_telemetry_compute.sh
|
|
cmd snapshot_cycle -n compute1 telemetry-compute_installed
|
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
# Take snapshot of database changes on controller VM, too
|
|
cmd queue shutdown_controller.sh
|
|
cmd boot -n compute1
|
|
|
|
cmd wait_for_shutdown -n controller
|
|
cmd snapshot -n controller controller_-_compute1_node_installed
|
|
#cmd boot -n controller
|
|
#==============================================================================
|
|
cmd queue config_public_network.sh
|
|
cmd queue config_private_network.sh
|
|
cmd snapshot_cycle -n controller public_private_networks
|
|
|
|
cmd boot -n controller
|