
Add "migrate-container-engine" action to kolla-ansible which changes the container engine on which the Openstack is deployed on. For example Docker to Podman and vice versa. Depends-on: https://review.opendev.org/c/openstack/ansible-collection-kolla/+/925083 Signed-off-by: Konstantin Yarovoy <konstantin.yarovoy@tietoevry.com> Signed-off-by: Martin Hiner <m.hiner@partner.samsung.com> Signed-off-by: Roman Krček <roman.krcek@tietoevry.com> Change-Id: Icd709cb042d44e063c5da64ab0695b0b6ba6d48b
22 lines
428 B
YAML
22 lines
428 B
YAML
---
|
|
- import_playbook: gather-facts.yml
|
|
vars:
|
|
kolla_action: migrate-container-engine
|
|
|
|
- name: Prepare the Openstack migration
|
|
hosts: baremetal
|
|
gather_facts: false
|
|
roles:
|
|
- role: container-engine-migration
|
|
|
|
- name: Migrate the Openstack
|
|
vars:
|
|
kolla_action: deploy
|
|
migration_flag:
|
|
import_playbook: site.yml
|
|
tags: redeploy
|
|
|
|
- name: Verify the migration
|
|
import_playbook: post-deploy.yml
|
|
tags: post
|