diff --git a/linux-bionic-playbook.yaml b/linux-bionic-playbook.yaml index d215ee1..e4f09f0 100644 --- a/linux-bionic-playbook.yaml +++ b/linux-bionic-playbook.yaml @@ -17,3 +17,5 @@ name: k8s - include_role: name: linux-desktop + - include_role: + name: libvirt diff --git a/wsl-playbook.yaml b/wsl-playbook.yaml new file mode 100644 index 0000000..05ecb83 --- /dev/null +++ b/wsl-playbook.yaml @@ -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