summaryrefslogtreecommitdiffstats
path: root/xci/playbooks/configure-targethosts.yml
diff options
context:
space:
mode:
authorMarkos Chandras <mchandras@suse.de>2017-12-20 10:12:42 +0000
committerFatih Degirmenci <fdegir@gmail.com>2017-12-21 00:28:52 +0100
commitc74cfd33fc3c8274433f153f1d211b7b2657ab54 (patch)
tree252c2aae1f81393300714abab472b0242c3db936 /xci/playbooks/configure-targethosts.yml
parent8662864a166d9e89ba8058c871526b3ad94aae21 (diff)
xci: OSA: Move all the OSA specific playbooks to the NFVI directory
Move all the playbooks that only make sense for OpenStack-Ansible deployments to the NFVI/OSA directory where they belong. This further disassociates XCI from OSA. Change-Id: Iab8b6dc81d9025a1d85608a98fb1eee0f1c6a69f Signed-off-by: Markos Chandras <mchandras@suse.de> Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
Diffstat (limited to 'xci/playbooks/configure-targethosts.yml')
-rw-r--r--xci/playbooks/configure-targethosts.yml50
1 files changed, 0 insertions, 50 deletions
diff --git a/xci/playbooks/configure-targethosts.yml b/xci/playbooks/configure-targethosts.yml
deleted file mode 100644
index d136f436..00000000
--- a/xci/playbooks/configure-targethosts.yml
+++ /dev/null
@@ -1,50 +0,0 @@
----
-- hosts: all
- remote_user: root
- tasks:
- - name: add public key to host
- copy:
- src: ../file/authorized_keys
- dest: /root/.ssh/authorized_keys
-
-- hosts: controller
- remote_user: root
- vars_files:
- - ../var/opnfv.yml
-
- pre_tasks:
- - name: Load distribution variables
- include_vars:
- file: "{{ item }}"
- with_items:
- - ../var/{{ ansible_os_family }}.yml
- - ../file/{{ XCI_FLAVOR }}/flavor-vars.yml
- roles:
- - role: configure-network
- # we need to force sync time with ntp or the nodes will be out of sync timewise
- - role: synchronize-time
-
-- hosts: compute
- remote_user: root
- vars_files:
- - ../var/opnfv.yml
-
- pre_tasks:
- - name: Load distribution variables
- include_vars:
- file: "{{ item }}"
- with_items:
- - ../var/opnfv.yml
- - ../var/{{ ansible_os_family }}.yml
- - ../file/{{ XCI_FLAVOR }}/flavor-vars.yml
- roles:
- - role: configure-network
- # we need to force sync time with ntp or the nodes will be out of sync timewise
- - role: synchronize-time
- - role: configure-ceph
- when: XCI_CEPH_ENABLED == "true"
-
-- hosts: compute00
- remote_user: root
- roles:
- - role: configure-nfs