649fdfbaf5
These tasks were only necessary for migrating placement from nova to a separate service. Since the stable/stein branch has been cut, it is safe to remove these migration tasks in master. Change-Id: I4d477efad7ab6247aaff57d31ee83e137eb3f796
35 lines
890 B
YAML
35 lines
890 B
YAML
---
|
|
- include_tasks: register.yml
|
|
when: inventory_hostname in groups['placement-api']
|
|
|
|
- include_tasks: clone.yml
|
|
when: placement_dev_mode | bool
|
|
|
|
- include_tasks: config.yml
|
|
|
|
- include_tasks: bootstrap.yml
|
|
when: inventory_hostname in groups['placement-api']
|
|
|
|
- name: Flush handlers
|
|
meta: flush_handlers
|
|
|
|
- name: Perform Placement online data migration
|
|
vars:
|
|
placement_api: "{{ placement_services['placement-api'] }}"
|
|
become: true
|
|
kolla_docker:
|
|
action: "start_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
detach: False
|
|
environment:
|
|
KOLLA_OSM:
|
|
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
|
image: "{{ placement_api.image }}"
|
|
labels:
|
|
BOOTSTRAP:
|
|
name: "bootstrap_placement"
|
|
restart_policy: "never"
|
|
volumes: "{{ placement_api.volumes }}"
|
|
run_once: True
|
|
delegate_to: "{{ groups[placement_api.group][0] }}"
|