summaryrefslogtreecommitdiffstats
path: root/xci/infra/bifrost/playbooks/xci-setup-nodes.yml
blob: a0f92159912a5dfbcfb8f91c86078507b076bf31 (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
66
67
68
69
70
71
72
73
74
75
76
---
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 2018 SUSE LINUX GmbH.
# 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
##############################################################################

- hosts: deployment_host
  name: "Bootstrap XCI hardware resources and prepare provisioning environment"
  gather_facts: yes
  vars_files:
    - "{{ pdf_file }}"
    - "{{ idf_file }}"
    - "{{ xci_path }}/xci/var/opnfv_vm_pdf.yml"
    - "{{ xci_path }}/xci/var/opnfv_vm_idf.yml"
    - "{{ xci_path }}/xci/var/opnfv.yml"
  pre_tasks:
    - name: Load distribution variables
      include_vars:
        file: "{{ xci_path }}/xci/var/{{ ansible_os_family }}.yml"
  roles:
    - role: create-nodes
      become: yes
    - role: clone-repository
      project: "opnfv/bifrost"
      repo: "{{ openstack_bifrost_git_url }}"
      dest: "{{ xci_cache }}/repos/bifrost"
      version: "{{ openstack_bifrost_version }}"
  tasks:
    - name: Wait for host to come back to life
      local_action:
        module: wait_for
        host: "{{ opnfv_vm_ip }}"
        delay: 15
        state: started
        port: 22
        connect_timeout: 10
        timeout: 10180

    # No ansible module for brctl found
    - name: Add pxe interface to the bridge
      shell: "brctl addif {{ item.bridge }} {{ item.interface }}"
      become: true
      when: baremetal | bool == true
      with_items:
        - { bridge: "{{ network_bridge_admin }}", interface: "{{ network_interface_admin }}" }
        - { bridge: "{{ network_bridge_mgmt }}", interface: "{{ network_interface_mgmt }}" }

    - name: Load distribution variables
      include_vars:
        file: "{{ xci_path }}/xci/var/{{ ansible_os_family }}.yml"
    - name: Synchronize local development bifrost repository to XCI paths
      # command module is much faster than the copy module
      synchronize:
        src: "{{ openstack_bifrost_dev_path }}"
        dest: "{{ xci_cache }}/repos/bifrost"
        recursive: yes
        delete: yes
      when:
        - openstack_bifrost_dev_path != ""
    - name: combine opnfv/releng-xci and openstack/bifrost scripts/playbooks
      copy:
        src: "{{ xci_path}}/xci/infra/bifrost/"
        dest: "{{ xci_cache }}/repos/bifrost"
    - name: "Ensure /etc/hosts has good defaults"
      lineinfile:
        dest: "/etc/hosts"
        regexp: "{{ item.regexp }}.*({{ ansible_hostname }}|localhost).*"
        line: "{{ item.contents }}"
      become: yes
      with_items:
        - { regexp: '^127\.0\.0\.1', contents: '127.0.0.1 {{ ansible_hostname }} {{ ansible_fqdn }} localhost' }
        - { regexp: '^::1', contents: '::1 {{ ansible_hostname }} {{ ansible_fqdn }} localhost ipv6-localhost ipv6-loopback' }