-
Notifications
You must be signed in to change notification settings - Fork 0
/
playbook-devel.yml
43 lines (39 loc) · 1.47 KB
/
playbook-devel.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
# playbook to setup development environment
- name: "Setup common roles for development"
hosts: all
roles:
- { role: apt, tags: apt, APT_DEVTOOL: true }
- { role: build-essential, tags: build-essential }
- { role: git, tags: git, GIT_INSTALLER: 'extra' }
- { role: shell, tags: shell, SHELL_TYPE: 'bash' }
- { role: fonts, tags: fonts }
- { role: nfs_client, tags: nfs_client }
- { role: docker, tags: docker }
- { role: aqua, tags: aqua }
- name: "Setup application development environment"
hosts: webapp
roles:
- { role: golang, tags: golang }
- { role: python, tags: python }
- { role: ruby, tags: ruby }
- { role: nodejs, tags: nodejs, NODEJS_MAJOR_VERSION: 14 }
- { role: yarn, tags: yarn }
- { role: rust, tags: rust }
- { role: gcloud, tags: gcloud }
- { role: terraform, tags: terraform }
- name: "Setup OS development environment"
hosts: devos
roles:
- { role: build-essential, tags: build-essential }
- { role: git, tags: git, GIT_INSTALLER: 'extra' }
- { role: shell, tags: shell, SHELL_TYPE: 'bash' }
- name: "Setup terraform development environment"
hosts: terraform
roles:
- { role: build-essential, tags: build-essential }
- { role: git, tags: git, GIT_INSTALLER: 'extra' }
- { role: shell, tags: shell, SHELL_TYPE: 'bash' }
- { role: golang, tags: golang }
- { role: docker, tags: docker }
- { role: terraform, tags: terraform }
- { role: ansible, tags: ansible }