8d2d37064e
Since [1] and [2] merged, K-A has to control Neutron migrations to migrate all required projects. This patch additionally fixes the other observed issue. [1] https://review.opendev.org/750075 [2] https://review.opendev.org/753543 Change-Id: I09e1b421e9066890b50bd82331a3050de252464f Closes-Bug: #1894380 Depends-On: https://review.opendev.org/755346
22 lines
660 B
YAML
22 lines
660 B
YAML
---
|
|
- name: Running Neutron bootstrap container
|
|
vars:
|
|
neutron_server: "{{ neutron_services['neutron-server'] }}"
|
|
become: true
|
|
kolla_docker:
|
|
action: "start_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
detach: False
|
|
environment:
|
|
KOLLA_BOOTSTRAP:
|
|
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
|
NEUTRON_BOOTSTRAP_SERVICES: "{{ neutron_bootstrap_services | join(' ') }}"
|
|
image: "{{ neutron_server.image }}"
|
|
labels:
|
|
BOOTSTRAP:
|
|
name: "bootstrap_neutron"
|
|
restart_policy: no
|
|
volumes: "{{ neutron_server.volumes }}"
|
|
run_once: True
|
|
delegate_to: "{{ groups[neutron_server.group][0] }}"
|