Perform online data migrations

Flavors are being moved to the API database for CellsV2. Add a task to
perform online data migrations as required for both the initial
migration of flavors to the Nova API database in a new Newton deployment
and for all required migrations when upgrading from Mitaka.

Also include the creation and use of a new flavor in this role's
functional testing.

Change-Id: I6b562476a6db8fdbaba81f5872734e5efdb522e1
This commit is contained in:
Jimmy McCrory 2016-04-03 22:46:05 -07:00
parent 703402addb
commit aec9d14696
2 changed files with 17 additions and 1 deletions

View File

@ -82,3 +82,12 @@
- nova-db-setup
- nova-setup
- nova-command-bin
- name: Perform Nova online data migrations
command: "{{ nova_bin }}/nova-manage db online_data_migrations"
become: yes
become_user: "{{ nova_system_user_name }}"
tags:
- nova-db-setup
- nova-setup
- nova-command-bin

View File

@ -60,6 +60,9 @@
- name: Set neutron_subnet_name fact
set_fact:
neutron_subnet_name: "functional-subnet-{{ 100|random }}"
- name: Set nova_flavor_name fact
set_fact:
nova_flavor_name: "functional-flavor-{{ 100|random }}"
- name: Upload the Cirros image
glance:
command: 'image-create'
@ -95,10 +98,14 @@
net_name: "{{ neutron_net_name }}"
subnet_name: "{{ neutron_subnet_name }}"
cidr: "192.168.74.0/24"
- name: Create test flavor
shell: |
. /root/openrc
{{ nova_venv_bin }}/nova flavor-create {{ nova_flavor_name }} 101 256 1 1
- name: Create nova instance
shell: |
. /root/openrc
{{ nova_venv_bin }}/nova boot --image {{ glance_image_name }} --flavor 1 --nic net-id={{ neutron_networks[neutron_net_name]['id'] }} {{ nova_instance_name }}
{{ nova_venv_bin }}/nova boot --image {{ glance_image_name }} --flavor 101 --nic net-id={{ neutron_networks[neutron_net_name]['id'] }} {{ nova_instance_name }}
- name: Verify nova instance goes active
shell: |
. /root/openrc