From ae0fbe87241f577ab8542a6d29bd965199230693 Mon Sep 17 00:00:00 2001 From: master of disaster Date: Sat, 20 Dec 2025 23:32:16 +0100 Subject: [PATCH] deploy fluentbit --- .gitea/workflows/ansible-runner.yaml | 8 ++------ playbooks/deploy_fluent-bit.yml.ansible | 7 +++++++ playbooks/deploy_victorialogs.yml.ansible | 7 ------- 3 files changed, 9 insertions(+), 13 deletions(-) create mode 100644 playbooks/deploy_fluent-bit.yml.ansible diff --git a/.gitea/workflows/ansible-runner.yaml b/.gitea/workflows/ansible-runner.yaml index 1727046..68c3f09 100644 --- a/.gitea/workflows/ansible-runner.yaml +++ b/.gitea/workflows/ansible-runner.yaml @@ -64,15 +64,11 @@ jobs: - name: 🔎Check Ansible Playbook Syntax run: | - # ansible-playbook --syntax-check playbooks/update_debian.yml.ansible - ansible-playbook --syntax-check playbooks/deploy_victoriametrics.yml.ansible - ansible-playbook --syntax-check playbooks/deploy_victorialogs.yml.ansible + ansible-playbook --syntax-check playbooks/deploy_fluent-bit.yml.ansible - name: 🏃‍♂️Run Ansible Playbook run: | - # ansible-playbook -i inventory/raspberries.yaml playbooks/update_debian.yml.ansible --vault-password-file .vault_pass.txt - ansible-playbook -i inventory/raspberries.yaml playbooks/deploy_victoriametrics.yml.ansible --vault-password-file .vault_pass.txt -v - ansible-playbook -i inventory/raspberries.yaml playbooks/deploy_victorialogs.yml.ansible --vault-password-file .vault_pass.txt -v + ansible-playbook -i inventory/raspberries.yaml playbooks/deploy_fluent-bit.yml.ansible --vault-password-file .vault_pass.txt -v # Beispiel für den Benachrichtigungsschritt - name: 📨Telegram Benachrichtigung senden uses: chapvic/telegram-notify@master diff --git a/playbooks/deploy_fluent-bit.yml.ansible b/playbooks/deploy_fluent-bit.yml.ansible new file mode 100644 index 0000000..12a789d --- /dev/null +++ b/playbooks/deploy_fluent-bit.yml.ansible @@ -0,0 +1,7 @@ +- hosts: + - dev + gather_facts: true + become: true + roles: + - fluentbit + - handlers \ No newline at end of file diff --git a/playbooks/deploy_victorialogs.yml.ansible b/playbooks/deploy_victorialogs.yml.ansible index 8fdc4a4..3780a6e 100644 --- a/playbooks/deploy_victorialogs.yml.ansible +++ b/playbooks/deploy_victorialogs.yml.ansible @@ -23,10 +23,3 @@ is_default: false version: 1 editable: false -- hosts: - - dev - gather_facts: true - become: true - roles: - - fluentbit - - handlers \ No newline at end of file