blob: a55ad9f3c7ce92b37162b14ab4c8542876ad2b04 [file] [log] [blame]
Zack Williams363bc852016-04-12 13:58:29 -07001---
2- hosts: xos-1
3 remote_user: ubuntu
4
5 tasks:
6 - name: Include configuration vars
7 include_vars: xos-setup-vars.yml
8
9 - name: Install prerequisites
10 apt:
11 name={{ item }}
12 update_cache=yes
13 cache_valid_time=3600
14 become: yes
15 with_items:
16 - git
17 - make
18 - python-novaclient
19 - python-neutronclient
20 - python-keystoneclient
21 - python-glanceclient
22
Zack Williams363bc852016-04-12 13:58:29 -070023 - name: Clone XOS repo
24 git:
25 repo={{ xos_repo_url }}
26 dest={{ xos_repo_dest }}
27 version={{ xos_repo_branch }}
Zack Williams9b3c3612016-04-14 07:05:30 -070028 force=yes
Zack Williams363bc852016-04-12 13:58:29 -070029
30 - name: Make XOS prerequisites
31 command: make -f {{ xos_repo_dest }}/xos/configurations/common/Makefile.prereqs
32
33 - name: Copy over SSH keys
34 copy:
35 src=~/.ssh/{{ item }}
36 dest={{ xos_repo_dest }}/xos/configurations/{{ xos_configuration }}/
37 owner={{ ansible_user_id }} mode=0600
38 with_items:
39 - id_rsa
40 - id_rsa.pub
41
42 - name: copy over admin-openrc.sh
43 copy:
44 src=~/admin-openrc.sh
45 dest={{ xos_repo_dest }}/xos/configurations/{{ xos_configuration }}
46
47 - name: copy over SSH key as node_key
48 copy:
49 src=~/.ssh/id_rsa
50 dest={{ xos_repo_dest }}//xos/configurations/{{ xos_configuration }}/node_key
51
Zack Williams363bc852016-04-12 13:58:29 -070052 - name: download software image
53 get_url:
54 url=http://www.vicci.org/opencloud/trusty-server-cloudimg-amd64-disk1.img
55 checksum=sha256:5fb160ea09649f9cebe5cfd7aaf3d1a341e8e0f9eca6e52e46eb6271155c48b0
56 dest={{ xos_repo_dest }}/xos/configurations/{{ xos_configuration }}/images/trusty-server-multi-nic.img
57
58