Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update OS version on phusion image to support latest PS and PXC tar builds for GLIBC #642

Merged
merged 3 commits into from
Sep 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions pmm-tests/product_version_download_helper
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
##ProductName ##Version ##Tarball Link

pxc # 5.7.39 # https://downloads.percona.com/downloads/Percona-XtraDB-Cluster-57/Percona-XtraDB-Cluster-5.7.39-31.61/binary/tarball/Percona-XtraDB-Cluster-5.7.39-rel42-61.1.Linux.x86_64.glibc2.12-minimal.tar.gz
pxc # 5.7.43 # https://downloads.percona.com/downloads/Percona-XtraDB-Cluster-57/Percona-XtraDB-Cluster-5.7.43/binary/tarball/Percona-XtraDB-Cluster-5.7.43-rel47-65.1.Linux.x86_64.glibc2.17-minimal.tar.gz

pxc # 8.0.29 # https://downloads.percona.com/downloads/Percona-XtraDB-Cluster-LATEST/Percona-XtraDB-Cluster-8.0.29/binary/tarball/Percona-XtraDB-Cluster_8.0.29-21.1_Linux.x86_64.glibc2.17-minimal.tar.gz
pxc # 8.0.33 # https://downloads.percona.com/downloads/Percona-XtraDB-Cluster-80/Percona-XtraDB-Cluster-8.0.33/binary/tarball/Percona-XtraDB-Cluster_8.0.33-25.1_Linux.x86_64.glibc2.17-minimal.tar.gz

psmdb # 4.4.16 # https://downloads.percona.com/downloads/percona-server-mongodb-4.4/percona-server-mongodb-4.4.16-16/binary/tarball/percona-server-mongodb-4.4.16-16-x86_64.glibc2.17-minimal.tar.gz

Expand All @@ -14,11 +14,9 @@ psmdb # 5.0.11 # https://downloads.percona.com/downloads/percona-server-mongodb-

psmdb # 6.0.2 # https://downloads.percona.com/downloads/TESTING/psmdb-6.0.2-1/percona-server-mongodb-6.0.2-1-x86_64.glibc2.17-minimal.tar.gz

ps # 8.0.33 # https://downloads.percona.com/downloads/Percona-Server-8.0/Percona-Server-8.0.33-25/binary/tarball/Percona-Server-8.0.33-25-Linux.x86_64.glibc2.17-minimal.tar.gz

ps # 8.0.29 # https://downloads.percona.com/downloads/Percona-Server-LATEST/Percona-Server-8.0.29-21/binary/tarball/Percona-Server-8.0.29-21-Linux.x86_64.glibc2.17-minimal.tar.gz

ps # 8.0.28 # https://downloads.percona.com/downloads/Percona-Server-LATEST/Percona-Server-8.0.28-20/binary/tarball/Percona-Server-8.0.28-20-Linux.x86_64.glibc2.17-minimal.tar.gz

ps # 5.7.39 # https://downloads.percona.com/downloads/Percona-Server-5.7/Percona-Server-5.7.39-42/binary/tarball/Percona-Server-5.7.39-42-Linux.x86_64.glibc2.17-minimal.tar.gz
ps # 5.7.43 # https://downloads.percona.com/downloads/Percona-Server-5.7/Percona-Server-5.7.43-47/binary/tarball/Percona-Server-5.7.43-47-Linux.x86_64.glibc2.17-minimal.tar.gz

ms # 8.0.33 # https://dev.mysql.com/get/Downloads/MySQL-8/mysql-8.0.33-linux-glibc2.28-x86_64.tar.gz

2 changes: 1 addition & 1 deletion pmm-tests/ps_pmm_setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
- name: Prepare Container for ps and Proxysql
shell: >
docker run -d --name={{ ps_container }}
phusion/baseimage:focal-1.2.0
phusion/baseimage:jammy-1.0.1

- name: Copy all required Artifacts to the docker ps_container
shell: "{{ item }}"
Expand Down
3 changes: 2 additions & 1 deletion pmm-tests/pxc_proxysql_setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
- name: Prepare Container for PXC and Proxysql
shell: >
docker run -d --name={{ pxc_container }}
phusion/baseimage:focal-1.2.0
phusion/baseimage:jammy-1.0.1

- name: Copy all required Artifacts to the docker pxc_container
shell: "{{ item }}"
Expand Down Expand Up @@ -66,6 +66,7 @@
- docker exec {{ pxc_container }} wget https://raw.githubusercontent.com/percona/pmm-qa/{{ pmm_qa_branch }}/pmm-tests/pmm2-client-setup.sh
- docker network connect pmm-qa {{ pxc_container }}
- docker exec {{ pxc_container }} bash -x ./pmm2-client-setup.sh --pmm_server_ip {{ pmm_server_ip }} --client_version {{ client_version }} --admin_password {{ admin_password }} --use_metrics_mode no
- docker exec {{ pxc_container }} usermod -aG pmm-agent pxc

- name: Execute User & Proxysql Setup inside the PXC pxc_container
shell: "{{ item }}"
Expand Down