ba30579b3b
Previously, kolla did not support neutron lbaas functionality. Only Lbaasv2 is supported in Mitaka. Additional information can be found here: http://docs.openstack.org/mitaka/networking-guide/adv-config-lbaas.html Magnum uses Neutron Lbaas to provide high availability to COE API and Etcd endpoints within a bay. Therefore, Neutron Lbaas is required for Kolla to support Magnum. Co-Authored-By: Serguei Bezverkhi <sbezverk@cisco.com> Partial-Bug: #1551992 Change-Id: I05360b7c447c601fcb3c2b6b2a913ef5cc0f3a1b
44 lines
1.4 KiB
YAML
44 lines
1.4 KiB
YAML
---
|
|
- name: Running Neutron bootstrap container
|
|
kolla_docker:
|
|
action: "start_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
detach: False
|
|
environment:
|
|
KOLLA_BOOTSTRAP:
|
|
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
|
image: "{{ neutron_server_image_full }}"
|
|
labels:
|
|
BOOTSTRAP:
|
|
name: "bootstrap_neutron"
|
|
restart_policy: "never"
|
|
volumes:
|
|
- "{{ node_config_directory }}/neutron-server/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
run_once: True
|
|
delegate_to: "{{ groups['neutron-server'][0] }}"
|
|
|
|
- name: Running Neutron lbaas bootstrap container
|
|
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_full }}"
|
|
labels:
|
|
BOOTSTRAP:
|
|
name: "bootstrap_neutron_lbaas_agent"
|
|
restart_policy: "never"
|
|
volumes:
|
|
- "{{ node_config_directory }}/neutron-lbaas-agent/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
when:
|
|
- enable_neutron_lbaas | bool
|
|
- inventory_hostname in groups['neutron-lbaas-agent']
|
|
run_once: True
|
|
delegate_to: "{{ groups['neutron-lbaas-agent'][0] }}"
|