datatroniq_challenge/ansible/full-install.yaml
2025-11-12 12:32:43 +01:00

31 lines
481 B
YAML

### Playbook for datatroniq-challenge
- name: Full install
hosts: all
become: false
gather_facts: false
vars:
ansible_user: ansible
- 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
- name: Cleanup
hosts: all
roles:
- role: roles/cleanup
tags:
- cleanup