mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2025-01-04 05:19:36 +01:00
20 lines
287 B
YAML
20 lines
287 B
YAML
---
|
|
- hosts: all
|
|
|
|
become: yes
|
|
tasks:
|
|
|
|
# Installs Microk8s
|
|
# --
|
|
#
|
|
- name: install microk8s
|
|
snap:
|
|
classic: yes
|
|
name: microk8s
|
|
|
|
# Sets User Permissions
|
|
# --
|
|
#
|
|
- name: add userpermissions
|
|
shell: "usermod -aG microk8s {{ lookup('env','USER') }}"
|