From 57cd4480254322baf35d214883f908d485a422f5 Mon Sep 17 00:00:00 2001 From: yurkovychv Date: Tue, 13 Feb 2024 13:41:46 +0200 Subject: [PATCH] PMM-7 consider dev-latest pmm-client --- pmm_psmdb-pbm_setup/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmm_psmdb-pbm_setup/Dockerfile b/pmm_psmdb-pbm_setup/Dockerfile index 89a8086..f0709c6 100644 --- a/pmm_psmdb-pbm_setup/Dockerfile +++ b/pmm_psmdb-pbm_setup/Dockerfile @@ -58,7 +58,7 @@ RUN set -ex; \ curl -Lf -o /tmp/pmm2-client.tar.gz $PMM_CLIENT_VERSION && \ cd /tmp && tar -xvf pmm2-client.tar.gz --transform 's,^/*[^/]*,/pmm2-client,S' && \ cd /tmp/pmm2-client && ./install_tarball && cd ../ && rm -rf pmm2* ;\ - elif [ $PMM_CLIENT_VERSION == "latest" ]; then \ + elif [ $PMM_CLIENT_VERSION == "latest" || $PMM_CLIENT_VERSION == "dev-latest" ]; then \ yum -y install pmm2-client ; \ elif [ $PMM_CLIENT_VERSION == "pmm2-rc" ]; then \ percona-release enable original testing \