added playbooks for base and k3s installation

This commit is contained in:
m0e 2025-10-30 14:50:20 +01:00
parent bc961793ff
commit e6687cfe63
Signed by: m0e
GPG Key ID: 3CCA6D483D789AEB
2 changed files with 17 additions and 0 deletions

10
ansible/base.yaml Normal file
View File

@ -0,0 +1,10 @@
### Playbook for adding sysupgrade, add user and ssh hardening
- name: Base setup
hosts: dev
vars:
ansible_user: root
roles:
- roles/sysupgrade
- roles/user_add
- roles/ssh_hardening

7
ansible/k3s.yaml Normal file
View File

@ -0,0 +1,7 @@
### Playbook for installing k3s
- name: Install k3s
hosts: dev
become: yes
roles:
- roles/k3s