Problem with installing percona-toolkit 3.7.0

Hey,

I’m having trouble installing percona-toolkit on Amazon Linux. The system currently has version 3.6.0 installed, but we need to upgrade to 3.7.0 to address some CVEs. However, it looks like version 3.7.0 isn’t available in the RPM/YUM package manager. Any suggestions?

List of available version for RPM:
https://ftpmirror.your.org/pub/percona/pt/yum/release/2/RPMS/x86_64/

Part of dockerfile which is related to installing percona-toolkit:

# Percona + SQL installs
ARG PERCONA_TOOLKIT_VERSION="3.7.0-1.el7"

RUN amazon-linux-extras install epel -y && \
    yum -y install epel-release && \
    yum install -y https://repo.percona.com/yum/percona-release-latest.noarch.rpm && \
    percona-release enable tools release pdps-8x-innovation && \
    yum install -y mariadb percona-toolkit-$PERCONA_TOOLKIT_VERSION
  • If I don’t mentioned the version in above, It will install version 3.6.0. I’ve already tested it.