-
Notifications
You must be signed in to change notification settings - Fork 18
/
nfs.yml
49 lines (42 loc) · 1.89 KB
/
nfs.yml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
---
# http://serverfault.com/questions/638507/how-to-access-host-variable-of-a-different-host-with-ansible
# We need some facts from the install node, specifically to find address of slurm controller.
- name: grab facts from production nodes
hosts: production
tasks: [ ]
- name: NFS Node
hosts: nfs
remote_user: root
become: yes
roles:
- { role: watermark-release, tags: [ 'always' ] }
- { role: network_interface, tags: [ 'network' ] }
- { role: ansible-role-hosts-int, tags: [ 'hosts'] }
- { role: ansible-role-fgci-repo, tags: [ 'fgci7', 'repos' ] }
- { role: ansible-role-yum, tags: [ 'yum', 'repos', 'login' ] }
- { role: ansible-role-ferm-firewall, tags: [ 'firewall', 'network' ] }
- { role: dns, tags: [ 'dns' ] }
- { role: ansible-role-chrony, tags: [ 'ntp', 'chrony' ] }
- { role: ansible-role-yum-cron-2, tags: [ 'yumcron' ] }
- { role: ansible-role-rsyslog, tags: [ 'rsyslog' ] }
- { role: ansible-role-nis, tags: [ 'nis' ] }
- { role: ansible-role-aliases, tags: [ 'aliases', 'email' ] }
- { role: ansible-role-smartd, tags: [ 'smartd' ] }
- { role: ansible-role-idmapd, tags: [ 'idmapd' ] }
- { role: ansible-role-nfs, tags: [ 'nfs' ] }
# - { role: ansible-role-cvmfs, tags: [ 'cvmfs' ] }
- { role: ansible-role-rdma, tags: [ 'rdma', 'infiniband' ] }
- { role: ansible-role-dell, tags: [ 'dell' ] }
# - { role: ansible-role-collectd, tags: [ 'collectd', 'monitoring' ] }
- { role: ansible-role-sshd, tags: [ 'sshd', 'ssh' ] }
- { role: ansible-role-postfix, tags: [ 'postfix', 'mail' ] }
- { role: ansible-role-systemd-journal, tags: [ 'systemd', 'journal', 'journald' ] }
- name: Mount /home and /scratch on Install Node
hosts: install
become: yes
roles:
- { role: ansible-role-nfs_mount, tags: [ 'nfsmount' ] }
- { role: ansible-role-sshd-host-keys, tags: [ 'host-keys' ] }
# Local addons to this playbook
#
- import_playbook: nfs_local_play.yml