added playbook for complete installation which includes the other playbooks

This commit is contained in:
m0e 2025-10-30 15:17:46 +01:00
parent ed89acd2d0
commit 0686105768
Signed by: m0e
GPG Key ID: 3CCA6D483D789AEB

23
ansible/full-install.yaml Normal file
View File

@ -0,0 +1,23 @@
### Playbook for datatroniq-challenge
- name: Full install
hosts: dev
become: false
gather_facts: false
vars:
ansible_user: root
- name: Import base setup
import_playbook: base.yaml
tags:
- base
- name: Import k3s setup
import_playbook: k3s.yaml
tags:
- k3s
- name: Import k3s deployments
import_playbook: k8s-deployments.yaml
tags:
- k8s-deployments