-
Notifications
You must be signed in to change notification settings - Fork 0
/
vdi.yml
31 lines (29 loc) · 878 Bytes
/
vdi.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
---
# This playbook deploys the whole application stack for a development VDI.
- name: apply common configuration to all nodes
hosts: all
user: ansible
vars_files:
- group_vars/all.yml
- [ "group_vars/arch_{{ ansible_architecture }}.yml", "group_vars/arch_defaults.yml" ]
roles:
- package-manager-clients
- common-packages
- initial-setup-clients
- local-user-accounts
- console-login-ip-addr
- overridden-dns-clients
- name: deploy development clients
hosts: dev-clients
user: ansible
vars_files:
- group_vars/all.yml
- [ "group_vars/arch_{{ ansible_architecture }}.yml", "group_vars/arch_defaults.yml" ]
roles:
- basic-workstations
- basic-graphical-workstations
- docker-workstations
- initial-setup-clients
- npm-workstations
- dev-workstations
- mobile-dev-workstations