From adfddbc820cc5d085969c8a4765949d81da6f879 Mon Sep 17 00:00:00 2001 From: Alex Frantz Date: Mon, 6 Apr 2026 13:50:47 -0400 Subject: [PATCH] fix --- scripts/deploy_containers.py | 2 +- templates/monitoring/promtail.yaml.j2 | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/deploy_containers.py b/scripts/deploy_containers.py index 3011f7f..08a6bfa 100644 --- a/scripts/deploy_containers.py +++ b/scripts/deploy_containers.py @@ -5,7 +5,7 @@ import subprocess def git_diff(): args = sys.argv res = subprocess.run(f"git diff --name-only {args[1]} {args[2]}", capture_output=True, shell=True, text=True) - return [x for x in res.stdout.strip().split("\n") if "tasks/" in x or "roles/" in x] + return [x for x in res.stdout.strip().split("\n") if "tasks/" in x or "roles/" in x or "templates/" in x] def construct_command(tags): command = f"ANSIBLE_CONFIG=ansible.cfg /usr/bin/ansible-playbook main.yml --tags={",".join(tags)} --vault-password-file ~/.vault_pass.txt" diff --git a/templates/monitoring/promtail.yaml.j2 b/templates/monitoring/promtail.yaml.j2 index e9ea4c5..d19dc35 100644 --- a/templates/monitoring/promtail.yaml.j2 +++ b/templates/monitoring/promtail.yaml.j2 @@ -1,4 +1,3 @@ -# this is a test to ensure this will deploy server: http_listen_port: 9080