modified: playbooks/deploy_victorialogs.yml.ansible
Some checks failed
🏃‍♂️Run Ansible / install_ansible (push) Failing after 4m46s

modified:   playbooks/deploy_victoriametrics.yml.ansible
modified:   requirements.yml
This commit is contained in:
master of disaster
2025-12-20 01:27:49 +01:00
parent 43d6697e71
commit b90ce7eea6
3 changed files with 35 additions and 36 deletions

View File

@@ -4,4 +4,29 @@
become: true
roles:
- victorialogs
- handlers
- hosts:
- grafana_servers
gather_facts: true
become: true
tasks:
- name: add datasources VictoriaLogs
ansible.builtin.include_role:
name: grafana
tasks_from: add_datasources.yml.ansible
vars:
grafana_datasources:
- name: "VictoriaLogs"
type: "loki"
url: "http://{{ hostvars[groups['victorialogs_servers'][0]]['victorialogs_ethernet_vip'] }}:9428"
access: "proxy"
is_default: false
version: 1
editable: false
- hosts:
- dev
gather_facts: true
become: true
roles:
- fluentbit
- handlers