summaryrefslogtreecommitdiffstats
path: root/xci/playbooks
diff options
context:
space:
mode:
authorMarkos Chandras <mchandras@suse.de>2018-03-20 17:28:50 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-03-20 17:28:50 +0000
commit346df57c53fde3795fbe675477cdb2c1a453b6f7 (patch)
tree9eb7a43cb3613e28f6a99c3f09c50bf6bc87839e /xci/playbooks
parentc7fd1fe87d8ae59757cefc79fe73ef249dd7952c (diff)
parentdd0ac7518cc1dd5790314b72bd671d65435c1912 (diff)
Merge changes from topic 'allow-deployment-overrides'
* changes: xci: infra: bifrost: Avoid installing Ansible twice Add initial support for multiple infra deployers
Diffstat (limited to 'xci/playbooks')
-rw-r--r--xci/playbooks/bootstrap-bifrost.yml42
1 files changed, 0 insertions, 42 deletions
diff --git a/xci/playbooks/bootstrap-bifrost.yml b/xci/playbooks/bootstrap-bifrost.yml
deleted file mode 100644
index 8b8bb30d..00000000
--- a/xci/playbooks/bootstrap-bifrost.yml
+++ /dev/null
@@ -1,42 +0,0 @@
----
-# SPDX-license-identifier: Apache-2.0
-##############################################################################
-# Copyright (c) 2017 Ericsson AB 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
-##############################################################################
-- hosts: localhost
- connection: local
- gather_facts: true
- vars_files:
- - ../var/opnfv.yml
- pre_tasks:
- - name: Load distribution variables
- include_vars:
- file: ../var/{{ ansible_os_family }}.yml
- roles:
- - role: clone-repository
- project: "opnfv/bifrost"
- repo: "{{ OPENSTACK_BIFROST_GIT_URL }}"
- dest: "{{ XCI_CACHE }}/repos/bifrost"
- version: "{{ OPENSTACK_BIFROST_VERSION }}"
-
- tasks:
- - name: Load distribution variables
- include_vars:
- file: ../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}}/bifrost/"
- dest: "{{ XCI_CACHE }}/repos/bifrost"