From 86fb5d5b90f1cddefaf70b71bbab295a6377e0e1 Mon Sep 17 00:00:00 2001 From: MichaelFisher1997 Date: Thu, 5 Mar 2026 00:17:25 +0000 Subject: [PATCH] fix: move observability gitops gating to role level --- ansible/site.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ansible/site.yml b/ansible/site.yml index efa0c26..0e7ee6e 100644 --- a/ansible/site.yml +++ b/ansible/site.yml @@ -99,18 +99,18 @@ - name: Deploy observability stack hosts: control_plane[0] become: true - when: not (observability_gitops_enabled | default(true) | bool) roles: - - observability + - role: observability + when: not (observability_gitops_enabled | default(true) | bool) - name: Provision Grafana content hosts: control_plane[0] become: true - when: not (observability_gitops_enabled | default(true) | bool) roles: - - observability-content + - role: observability-content + when: not (observability_gitops_enabled | default(true) | bool) - name: Finalize hosts: localhost