ansible-infra/ansible_collections/grafana/grafana/roles/alloy/tasks/main.yml
Stefan Bethke 2aed20393f
Some checks failed
/ Ansible Lint (push) Failing after 5m45s
/ Ansible Lint (pull_request) Failing after 4m59s
Vendor Galaxy Roles and Collections
2026-02-06 22:07:16 +01:00

19 lines
454 B
YAML

---
# tasks file for alloy
- name: Include OS specific variables
ansible.builtin.include_vars:
file: "{{ ansible_facts['os_family'] }}.yml"
- name: Preflight
ansible.builtin.include_tasks:
file: "preflight.yml"
- name: Deploy Alloy service
ansible.builtin.include_tasks:
file: "deploy.yml"
when: not alloy_uninstall
- name: Uninstall Alloy service
ansible.builtin.include_tasks:
file: "uninstall.yml"
when: alloy_uninstall