From fcd08d13d03d4dac39098bd89a41da28ee1226cf Mon Sep 17 00:00:00 2001 From: Artem Gavrilov Date: Sun, 9 Aug 2026 00:28:05 +0200 Subject: [PATCH] Add missing libkrb to pg_stat_monitor build deps --- .../percona-distribution-postgresql/tasks/install-pdpgsql.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmm_qa/percona-distribution-postgresql/tasks/install-pdpgsql.yml b/pmm_qa/percona-distribution-postgresql/tasks/install-pdpgsql.yml index 437834a7..9ac5c3bd 100644 --- a/pmm_qa/percona-distribution-postgresql/tasks/install-pdpgsql.yml +++ b/pmm_qa/percona-distribution-postgresql/tasks/install-pdpgsql.yml @@ -42,7 +42,7 @@ - name: Prepare installation of PG Stat Monitor from sources shell: | - docker exec -u root {{ container_prefix }}{{ item }} apt-get install -y git clang-18 llvm-18 build-essential percona-postgresql-server-dev-{{ pdpgsql_version }} + docker exec -u root {{ container_prefix }}{{ item }} apt-get install -y git clang-18 llvm-18 build-essential libkrb5-dev percona-postgresql-server-dev-{{ pdpgsql_version }} become: true loop: "{{ range(1, nodes_count | int + 1) | list }}" when: pgsm_branch | length > 0