update linux-bionic playbook and add a wsl playbook without desktop apps or libvirt tooling

pull/1/head
Andrew Coleman 2019-06-26 12:35:12 -04:00
parent b8fd708b16
commit 3acfca482a
2 changed files with 19 additions and 0 deletions

View File

@ -17,3 +17,5 @@
name: k8s
- include_role:
name: linux-desktop
- include_role:
name: libvirt

17
wsl-playbook.yaml Normal file
View File

@ -0,0 +1,17 @@
---
- name: wsl setup
hosts: all
become: yes
become_user: root
become_method: sudo
gather_facts: False
vars:
ansible_connection: local
ansible_python_interpreter: /usr/bin/python3
tasks:
- include_role:
name: dev-tools
- include_role:
name: docker
- include_role:
name: k8s