From 06861057684a6a7d98f328c22a88750c48c294ad Mon Sep 17 00:00:00 2001 From: m0e Date: Thu, 30 Oct 2025 15:17:46 +0100 Subject: [PATCH] added playbook for complete installation which includes the other playbooks --- ansible/full-install.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 ansible/full-install.yaml diff --git a/ansible/full-install.yaml b/ansible/full-install.yaml new file mode 100644 index 0000000..d2327fd --- /dev/null +++ b/ansible/full-install.yaml @@ -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