2024-10-01 11:21:00 +00:00
|
|
|
- hosts: "{{ target_host }}"
|
|
|
|
tasks:
|
|
|
|
- name: Check if .out file exists
|
|
|
|
stat:
|
|
|
|
path: "{{ ansible_env.HOME }}/.out"
|
|
|
|
register: out_file
|
|
|
|
|
|
|
|
- name: Exit playbook if .out file exists
|
|
|
|
fail:
|
|
|
|
msg: ".out file exists, exiting playbook."
|
|
|
|
when: out_file.stat.exists
|
|
|
|
|
2024-09-24 09:26:23 +00:00
|
|
|
- import_playbook: setup-dns.yml
|
2024-09-27 07:33:36 +00:00
|
|
|
- import_playbook: setup-system.yml
|
2024-09-24 09:26:23 +00:00
|
|
|
- import_playbook: setup-k8s.yml
|
|
|
|
- import_playbook: setup-container-registry.yml
|
|
|
|
- import_playbook: run-laconicd.yml
|
|
|
|
- import_playbook: run-laconic-console.yml
|
|
|
|
- import_playbook: deploy-backend.yml
|
|
|
|
- import_playbook: deploy-frontend.yml
|