mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-25 01:34:36 +01:00
70a8bea0ed
Add blank lines where it helps with readability (e.g., between each task) but also remove needless one.
13 lines
239 B
YAML
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"
|