Initial commit
[ta/infra-ansible.git] / roles / baremetal_interface_config / tasks / main.yml
1 ---
2
3 # Copyright 2019 Nokia
4
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 - name: Setup hostname
18   hostname:
19     name: "{{ physical_host }}"
20
21 - name: Updating the facts due to hostname change
22   setup:
23
24 - set_fact:
25     host_network_profile_name: "{{hosts[ansible_hostname]['network_profiles']}}"
26
27 - set_fact:
28     provider_network_type: "{{network_profiles[host_network_profile_name[0]]['provider_network_interfaces']|json_query('*.type')}}"
29   when: "'provider_network_interfaces' in network_profiles[host_network_profile_name[0]]"
30
31 - set_fact:
32     os_net_config_options: "--detailed-exit-codes -v -c /etc/os-net-config/config.json"
33   when:
34     - hostname != installation_controller
35
36 - set_fact:
37     os_net_config_options: "--no-activate --detailed-exit-codes -v -c /etc/os-net-config/config.json"
38   when:
39     - hostname == installation_controller
40     - "'ovs-dpdk' in provider_network_type"
41
42 - set_fact:
43     os_net_config_options: "--detailed-exit-codes -v -c /etc/os-net-config/config.json"
44   when:
45     - hostname == installation_controller
46     - "'ovs-dpdk' not in provider_network_type"
47
48 - name: Enable network service
49   service:
50     name: 'network.service'
51     enabled: "yes"
52
53 - name: Create /etc/os-net-config/config.json file
54   vars:
55     config_phase: "{{ lookup('env','CONFIG_PHASE') }}"
56   template:
57     src: "os_net_config.j2"
58     dest: "/etc/os-net-config/config.json"
59     owner: "root"
60     mode: "0440"
61
62 - name: Run os-net-config command
63   command: "os-net-config {{ os_net_config_options }}"
64   register: os_net_config_result
65   failed_when: not (os_net_config_result.rc == 0 or os_net_config_result.rc == 2)
66   changed_when: os_net_config_result.rc == 2
67
68 - debug: var=os_net_config_result.stderr_lines
69   when: os_net_config_result.rc == 2
70
71 - name: Updating the facts due to net changes
72   setup:
73   when: os_net_config_result.rc != 0