blob: e3115ef20a287ec6cf54feeece1eb54d2742525a [file] [log] [blame]
Sergio Slobodrianba9cbd82017-06-22 11:45:49 -04001# Note: When the target == "cluster" the installer
2# is running to install voltha in the cluster hosts.
3# Whe the target == "installer" the installer is being
4# created.
5- name: A .ssh directory for the voltha user exists
6 file:
7 #path: "{{ ansible_env['HOME'] }}/.ssh"
8 path: "/home/voltha/.ssh"
9 state: directory
10 owner: voltha
11 group: voltha
12 tags: [cluster_host]
13
14- name: known_hosts file is absent for the voltha user
15 file:
16 path: "/home/voltha/.ssh/known_hosts"
17 state: absent
18 tags: [cluster_host]
19
20- name: Known host checking is disabled
21 copy:
22 src: files/ssh_config
23 dest: "/home/voltha/.ssh/config"
24 owner: voltha
25 group: voltha
26 mode: 0600
27 tags: [cluster_host]
28
29- name: Cluster host keys are propagated to all hosts in the cluster
30 copy:
31 src: files/.keys
32 dest: "/home/voltha"
33 owner: voltha
34 group: voltha
35 mode: 0600
36 tags: [cluster_host]
37
38#- name: Required configuration directories are copied
39# copy:
40# src: "/home/vinstall/{{ item }}"
41# dest: "{{ target_voltha_home }}"
42# owner: voltha
43# group: voltha
44# with_items:
45# - docker-py
46# - netifaces
47# - deb_files
48# when: target == "cluster"
49# tags: [cluster_host]
50
51- name: Required configuration directories are copied
52 synchronize:
53 src: "/home/vinstall/{{ item }}"
54 dest: "{{ target_voltha_home }}"
55 archive: no
56 owner: no
57 perms: no
58 recursive: yes
59 links: yes
60 with_items:
61 - docker-py
62 - netifaces
63 - deb_files
64 tags: [cluster-host]
65
66- name: apt lists are up-to-date
Sergio Slobodrian5727e982017-06-28 21:02:27 -040067 synchronize:
Sergio Slobodrianba9cbd82017-06-22 11:45:49 -040068 src: "/var/lib/apt/lists"
Sergio Slobodrian5727e982017-06-28 21:02:27 -040069 dest: "/var/lib/apt/lists"
70 archive: no
71 owner: no
72 perms: no
73 rsync_opts:
74 - "--exclude=lock"
75 - "--exclude=partial"
76 recursive: yes
77 links: yes
Sergio Slobodrianba9cbd82017-06-22 11:45:49 -040078 tags: [cluster_host]
79
Sergio Slobodriancab0a392017-07-13 08:42:10 -040080- name: pre-emptive strike to avoid errors during package installation
81 apt:
82 name: "{{ item }}"
83 state: absent
84 with_items:
85 - ubuntu-core-launcher
86 - snapd
87 tags: [cluster_host]
Sergio Slobodrian5727e982017-06-28 21:02:27 -040088
Sergio Slobodrianf74fa072017-06-28 09:33:24 -040089- name: Dependent software is installed (this can take about 10 Min, DONT'T PANIC, go for coffee instead)
Sergio Slobodrianba9cbd82017-06-22 11:45:49 -040090 command: dpkg -R -i "{{ target_voltha_home }}/deb_files"
91# ignore_errors: true
92 when: target == "cluster"
93 tags: [cluster_host]
94
95#- name: Dependent software is initialized
96# command: apt-get -y -f install
97# when: target == "cluster"
98# tags: [cluster_host]
99
100- name: Python packages are installed
101 command: pip install {{ item }} --no-index --find-links "file://{{ target_voltha_home }}/{{ item }}"
102 with_items:
103 - docker-py
104 - netifaces
105 when: target == "cluster"
106 tags: [cluster_host]
107
108- name: Configuration directories are deleted
109 file:
110 path: "{{ target_voltha_home }}/{{ item }}"
111 state: absent
112 with_items:
113 - docker-py
114 - netifaces
115 - deb_files
116 when: target == "cluster"
117 tags: [cluster_host]
118