xci: Add main playbooks and files
[releng.git] / prototypes / xci / playbooks / configure-localhost.yml
1 ---
2 # SPDX-license-identifier: Apache-2.0
3 ##############################################################################
4 # Copyright (c) 2017 Ericsson AB and others.
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10 - hosts: localhost
11   remote_user: root
12   vars_files:
13     - ../var/{{ ansible_os_family }}.yml
14   roles:
15     - role: remove-folders
16     - { role: clone-repository, project: "opnfv/releng", repo: "{{ OPNFV_RELENG_GIT_URL }}", dest: "{{ OPNFV_RELENG_PATH }}", version: "{{ OPNFV_RELENG_VERSION }}" }
17   tasks:
18     - name:  create log directory {{LOG_PATH}}
19       file:
20         path: "{{LOG_PATH}}"
21         state: directory
22         recurse: no
23     # when the deployment is not aio, we use playbook, configure-targethosts.yml, to configure all the hosts
24     - name: copy multihost playbook
25       copy:
26         src: "{{XCI_FLAVOR_ANSIBLE_FILE_PATH}}/configure-targethosts.yml"
27         dest: "{{OPNFV_RELENG_PATH}}/prototypes/xci/playbooks"
28       when: XCI_FLAVOR != "aio"
29     # when the deployment is aio, we overwrite and use playbook, configure-opnfvhost.yml, since everything gets installed on opnfv host
30     - name: copy aio playbook
31       copy:
32         src: "{{XCI_FLAVOR_ANSIBLE_FILE_PATH}}/configure-opnfvhost.yml"
33         dest: "{{OPNFV_RELENG_PATH}}/prototypes/xci/playbooks"
34       when: XCI_FLAVOR == "aio"
35     - name: copy flavor vars
36       copy:
37         src: "{{XCI_FLAVOR_ANSIBLE_FILE_PATH}}/flavor-vars.yml"
38         dest: "{{OPNFV_RELENG_PATH}}/prototypes/xci/var"