aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/setup-openvswitch/tasks/compute.yml
blob: 62edd34b55e7d6106ad6a3a99c04589c85340b1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#############################################################################
# Copyright (c) 2017 HUAWEI TECHNOLOGIES CO.,LTD and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
#############################################################################
---
- name: stop neutron-openvswitch-agent
  service:
    name: neutron-openvswitch-agent
    state: stopped

- name: remove tunnel_types when vlan
  lineinfile:
    dest: /etc/neutron/plugins/ml2/openvswitch_agent.ini
    state: absent
    regexp: '^tunnel_types'
  when:
    - tenant_net_info["type"] == "vlan"
  notify:
    - restart neutron-openvswitch-agent

- name: fix mapping in compute
  shell: |
    {% set compute_mappings = [] %}
    {% for key, value in compu_prv_mappings.iteritems() %}
    {% set mapping = key + ":" + value["bridge"] %}
    {% set _ = compute_mappings.append(mapping) %}
    {% endfor %}
    {% if compute_mappings | length != 0 %}
    sed -i "s/^\(bridge_mappings\).*/\1 = {{ ','.join(compute_mappings) }}/g" \
    /etc/neutron/plugins/ml2/openvswitch_agent.ini
    {% else %}
    sed -i "/bridge_mappings/d" /etc/neutron/plugins/ml2/openvswitch_agent.ini
    {% endif %}
  notify:
    - restart neutron-openvswitch-agent

- name: create compute bridges
  openvswitch_bridge:
    bridge: "{{ item['name'] }}"
    state: present
  with_items:
    - "{{ provider_net_mappings }}"
  when:
    - compute in item["role"]
  notify:
    - restart neutron-openvswitch-agent

- name: create compute bridge ports
  openvswitch_port:
    bridge: "{{ item['name'] }}"
    port: "{{ item['interface'] }}"
    state: present
  with_items:
    - "{{ provider_net_mappings }}"
  when:
    - compute in item["role"]

- name: stop neutron-openvswitch-agent
  service:
    name: neutron-openvswitch-agent
    state: started