Do some Train TODOs

Make an early start on the TODOs for the Train cycle.

1. Remove the task that removes the vitrage_collector container, which
   was added in the Stein cycle to clean up this container which is no
   longer deployed.

2. Remove globals.yml configuration in CI to disable Heat for upgrade
   jobs. Heat is now enabled in the previous release (Stein).

3. Remove the deprecated variable cinder_iscsi_helper, which was renamed
   to cinder_target_helper in Stein.

Change-Id: I774bf395e0bdd4db9c20c6289a22cf059fa42e1a
This commit is contained in:
Mark Goddard 2019-04-08 12:14:35 +01:00
parent 649fdfbaf5
commit bb9d51e25b
4 changed files with 6 additions and 16 deletions

View File

@ -803,10 +803,7 @@ gnocchi_metric_datadir_volume: "gnocchi"
cinder_backend_ceph: "{{ enable_ceph }}"
cinder_backend_vmwarevc_vmdk: "no"
cinder_volume_group: "cinder-volumes"
# DEPRECATED: Use 'cinder_target_helper' instead. This option will be removed
# in the Train release.
cinder_iscsi_helper: "tgtadm"
cinder_target_helper: "{{ cinder_iscsi_helper }}"
cinder_target_helper: "tgtadm"
# Valid options are [ nfs, swift, ceph ]
cinder_backup_driver: "ceph"

View File

@ -3,14 +3,5 @@
- include_tasks: bootstrap_service.yml
# NOTE(kiennt): vitrage-collector are removed in Stein cycle.
# Upgrade to Stein should remove vitrage-collector
# container. This task should be removed in
# T cycle.
- name: Remove vitrage-collector container
kolla_docker:
name: vitrage_collector
action: remove_container
- name: Flush handlers
meta: flush_handlers

View File

@ -0,0 +1,5 @@
---
upgrade:
- |
Removes the ``cinder_iscsi_helper`` variable which was deprecated in the
Stein cycle in favour of ``cinder_target_helper``.

View File

@ -11,9 +11,6 @@ keepalived_virtual_router_id: "{{ 250 | random(1) }}"
{% if enable_core_openstack | bool %}
kolla_internal_vip_address: "{{ api_interface_address if hostvars | length > 2 else '169.254.169.10' }}"
enable_haproxy: "{{ 'no' if hostvars | length > 2 else 'yes' }}"
# TODO(mgoddard): Remove this in the Train cycle when heat is enabled in the
# initial deployment.
enable_heat: "{{ scenario != 'upgrade' or previous_release != 'rocky' }}"
neutron_external_interface: "fake_interface"
openstack_logging_debug: "True"
openstack_service_workers: "1"