-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup-wsl.yml
79 lines (66 loc) · 1.44 KB
/
setup-wsl.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
- name: "Configure WSL Linux distro"
hosts: wsl
become: yes
become_method: sudo
become_user: root
tasks:
- name: Configure sudo
import_tasks: ./wsl/sudo.yml
tags:
- sudo
- name: Enable systemd
import_tasks: ./wsl/systemd.yml
tags:
- systemd
- yubikey
- name: Install Docker
import_tasks: ./wsl/docker.yml
tags:
- docker
- name: Install Powerline shell
tags:
- powerline
import_tasks: ./wsl/powerline-shell.yml
- name: Install NodeJS development tools
import_tasks: ./wsl/dev-nodejs.yml
tags:
- nodejs
- name: Install Go development tools
import_tasks: ./wsl/dev-golang.yml
tags:
- golang
- name: Install .NET Core development tools
import_tasks: ./wsl/dev-dotnetcore.yml
tags:
- dotnetcore
- name: Configure Yubikey passthrough to WSL
import_tasks: ./wsl/yubikey.yml
tags:
- yubikey
- name: Install age encryption
import_tasks: ./wsl/age.yml
tags:
- yubikey
- age
- sops
- name: Install Terraform
import_tasks: ./wsl/terraform.yml
tags:
- terraform
- name: Install SOPS
import_tasks: ./wsl/sops.yml
tags:
- sops
- name: Install kubernetes tools
import_tasks: ./wsl/kubernetes.yml
tags:
- kubernetes
- k8s
- name: Configure git
import_tasks: ./wsl/git.yml
tags:
- git
- name: Install Ansible tools
import_tasks: ./wsl/ansible.yml
tags:
- ansible