From 87115123a9d0b86c65ed4c520ede67a68c7a5610 Mon Sep 17 00:00:00 2001 From: Florent Poinsard Date: Wed, 27 Sep 2023 17:49:42 -0600 Subject: [PATCH] always install latest version of prometheus Signed-off-by: Florent Poinsard --- ansible/macrobench.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/macrobench.yml b/ansible/macrobench.yml index 256942bdd..fca558df7 100644 --- a/ansible/macrobench.yml +++ b/ansible/macrobench.yml @@ -43,7 +43,7 @@ gateway_targets: "{% set targets = [] -%}{% for host in groups['vtgate'] -%}{% for gateway in hostvars[host]['gateways'] -%}{{ targets.append( hostvars[host]['ansible_default_ipv4']['address']+':'+ (gateway.port | default(15001) | string )) }}{% endfor -%}{% endfor -%}{{ targets }}" vtctld_targets: "{% set targets = [] -%}{% for host in groups['vtctld'] -%}{{ targets.append( hostvars[host]['ansible_default_ipv4']['address']+':'+ (vtctld_port | default(15000) | string )) }}{% endfor -%}{{ targets }}" node_targets: "{% set targets= [] -%}{% for host in groups['all'] -%}{{ targets.append( hostvars[host]['ansible_default_ipv4']['address']+':9100' ) }}{% endfor -%}{{ targets }}" - prometheus_skip_install: true + prometheus_skip_install: false prometheus_targets: tablets: - targets: '{{ tablet_targets }}'