christianlempa-boilerplates/vagrant/hyperv/ubuntu/microk8s-installed/playbook.yaml
Christoph Schug 70a8bea0ed fix: add and remove blank lines
Add blank lines where it helps with readability (e.g., between each
task) but also remove needless one.
2024-03-03 16:34:29 +01:00

13 lines
239 B
YAML

---
- hosts: all
become: true
tasks:
- name: install microk8s
community.general.snap:
classic: true
name: microk8s
- name: add userpermissions
ansible.builtin.shell: "usermod -aG microk8s vagrant"