e082217727
In task "Running Neutron vpnaas bootstrap container", parameter "volumes" of kolla_docker should be "{{ neutron_vpnaas_agent.volumes }}" NOT "{{ neutron_vpnaas_agent.image }}" Change-Id: Id7c95d4d6f53dfab384e387951eecf4d87459de Closes-Bug: #1683669
64 lines
1.9 KiB
YAML
64 lines
1.9 KiB
YAML
---
|
|
- name: Running Neutron bootstrap container
|
|
vars:
|
|
neutron_server: "{{ neutron_services['neutron-server'] }}"
|
|
kolla_docker:
|
|
action: "start_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
detach: False
|
|
environment:
|
|
KOLLA_BOOTSTRAP:
|
|
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
|
image: "{{ neutron_server.image }}"
|
|
labels:
|
|
BOOTSTRAP:
|
|
name: "bootstrap_neutron"
|
|
restart_policy: "never"
|
|
volumes: "{{ neutron_server.volumes }}"
|
|
run_once: True
|
|
delegate_to: "{{ groups[neutron_server.group][0] }}"
|
|
|
|
- name: Running Neutron lbaas bootstrap container
|
|
vars:
|
|
neutron_lbaas_agent: "{{ neutron_services['neutron-lbaas-agent'] }}"
|
|
kolla_docker:
|
|
action: "start_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
detach: False
|
|
environment:
|
|
KOLLA_BOOTSTRAP:
|
|
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
|
image: "{{ neutron_lbaas_agent.image }}"
|
|
labels:
|
|
BOOTSTRAP:
|
|
name: "bootstrap_neutron_lbaas_agent"
|
|
restart_policy: "never"
|
|
volumes: "{{ neutron_lbaas_agent.volumes }}"
|
|
when:
|
|
- neutron_lbaas_agent.enabled | bool
|
|
- neutron_lbaas_agent.host_in_groups | bool
|
|
run_once: True
|
|
delegate_to: "{{ groups[neutron_lbaas_agent.group][0] }}"
|
|
|
|
- name: Running Neutron vpnaas bootstrap container
|
|
vars:
|
|
neutron_vpnaas_agent: "{{ neutron_services['neutron-vpnaas-agent'] }}"
|
|
kolla_docker:
|
|
action: "start_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
detach: False
|
|
environment:
|
|
KOLLA_BOOTSTRAP:
|
|
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
|
image: "{{ neutron_vpnaas_agent.image }}"
|
|
labels:
|
|
BOOTSTRAP:
|
|
name: "bootstrap_neutron_vpnaas_agent"
|
|
restart_policy: "never"
|
|
volumes: "{{ neutron_vpnaas_agent.volumes }}"
|
|
when:
|
|
- neutron_vpnaas_agent.enabled | bool
|
|
- neutron_vpnaas_agent.host_in_groups | bool
|
|
run_once: True
|
|
delegate_to: "{{ groups[neutron_vpnaas_agent.group][0] }}"
|