Initial commit
[ta/infra-ansible.git] / roles / baremetal_provision / tasks / vbmc_port_setup.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: Create a directory for virtualbmc.conf
18   file:
19     path: "/etc/virtualbmc/"
20     state: directory
21     mode: 0755
22
23 - name: Copy in virtualbmc.conf file
24   copy:
25     src: "virtualbmc.conf"
26     dest: "/etc/virtualbmc/"
27
28 - name: Create vbmc nodes
29   command: /usr/bin/vbmc add {{ item.name }} --libvirt-uri "qemu+ssh://root@{{item.driver_info['power']['ssh_address'] | ipwrap}}/system?no_verify=1" --port {{ item.driver_info['power']['ipmi_port'] }}
30   become: True
31   become_flags: '-H'
32   register: vbmc_out
33   with_items: "{{ baremetal_ironic_nodes }}"
34   failed_when: "vbmc_out.rc != 0 and 'already exists' not in vbmc_out.stderr"
35   loop_control:
36     label: "{{ item.name }}"
37
38 - name: Start vbmc node ports
39   command: sudo /usr/bin/vbmc start {{ item.name }}
40   with_items: "{{ baremetal_ironic_nodes }}"
41   loop_control:
42     label: "{{ item.name }}"