blob: 50da1f223a181f9f86818c9aed5a72a295a281d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
---
- 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/{{ ansible_os_family }}.yml
- ../var/flavor-vars.yml
roles:
# TODO: this only works for ubuntu/xenial and need to be adjusted for other distros
- { role: configure-network, src: "../template/controller.interface.j2", dest: "/etc/network/interfaces" }
# 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/{{ ansible_os_family }}.yml
- ../var/flavor-vars.yml
roles:
# TODO: this only works for ubuntu/xenial and need to be adjusted for other distros
- { role: configure-network, src: "../template/compute.interface.j2", dest: "/etc/network/interfaces" }
# we need to force sync time with ntp or the nodes will be out of sync timewise
- role: synchronize-time
- hosts: compute00
remote_user: root
# TODO: this role is for configuring NFS on xenial and adjustment needed for other distros
roles:
- role: configure-nfs
|