Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
032694f
Adding rockylinux10 infra
rafaelwestphal Sep 15, 2025
d28b83b
Wroking on 3rd party apps for rocky10
rafaelwestphal Sep 18, 2025
c88fb51
Fix typos and imporve code
rafaelwestphal Sep 18, 2025
0a1ce2f
Fixing typos
rafaelwestphal Sep 18, 2025
82465e8
Fixing 3rd prt apps
rafaelwestphal Sep 19, 2025
b33195a
Typoes
rafaelwestphal Sep 19, 2025
5f6dbb9
Removing ravbbi
rafaelwestphal Sep 19, 2025
d1fe19f
Attempt mysql fix
rafaelwestphal Sep 22, 2025
acdadfd
Mysql fix attemp n
rafaelwestphal Sep 24, 2025
09943b4
Revert dockerfile
rafaelwestphal Sep 24, 2025
92f8e7a
Fixing commnad
rafaelwestphal Sep 24, 2025
82f11e0
Change command
rafaelwestphal Sep 24, 2025
239296d
Remove duped command
rafaelwestphal Sep 24, 2025
a70f1dd
Reworking condition
rafaelwestphal Sep 24, 2025
c344f69
Update integration_test/third_party_apps_test/applications/vault/meta…
rafaelwestphal Sep 26, 2025
f71fced
Merge branch 'master' into westphalrafael-rockylinux10-thirdparty-apps
rafaelwestphal Oct 7, 2025
b2b5cd3
Merge branch 'master' into westphalrafael-rockylinux10-thirdparty-apps
jinghan-ma Oct 20, 2025
1c37e10
Merge branch 'master' into westphalrafael-rockylinux10-thirdparty-apps
LujieDuan Oct 28, 2025
e3848a7
Fix elasticsearch9 installation on RL10
LujieDuan Oct 30, 2025
f8a68b3
Merge branch 'master' into westphalrafael-rockylinux10-thirdparty-apps
LujieDuan Oct 30, 2025
d2ae979
Remove HBase changes and skip Hbase since no supported Java is avaial…
LujieDuan Nov 4, 2025
a0a92a9
Merge branch 'master' into westphalrafael-rockylinux10-thirdparty-apps
LujieDuan Nov 4, 2025
fa68256
Merge branch 'master' into westphalrafael-rockylinux10-thirdparty-apps
franciscovalentecastro Nov 10, 2025
01a1270
merge master
braydonk Dec 9, 2025
3bdf1d6
sometimes vscode doesn't save when I press save and I want to throw i…
braydonk Dec 9, 2025
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
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
set -e

source /etc/os-release
MAJOR_VERSION_ID=${VERSION_ID%%.*}

JAVA_VERSION=1.8.0
if [[ "$ID" == "rocky" && "$MAJOR_VERSION_ID" == "10" ]]; then
JAVA_VERSION=21
fi
sudo yum install -y \
curl java-1.8.0-openjdk java-1.8.0-openjdk-devel curl
curl java-${JAVA_VERSION}-openjdk java-${JAVA_VERSION}-openjdk-devel curl

# https://github.com/GoogleCloudPlatform/ops-agent/blob/master/integration_test/README.md#vendored-dependencies
curl -L -o \
Expand Down Expand Up @@ -37,4 +44,4 @@ sudo sed -i "s/$before/$after/g" /opt/activemq/bin/env

sudo systemctl daemon-reload
sudo systemctl enable activemq
sudo systemctl restart activemq
sudo systemctl restart activemq
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,11 @@ platforms_to_skip:
- rocky-linux-cloud:rocky-linux-9-optimized-gcp
- rocky-linux-cloud:rocky-linux-9-arm64
- rocky-linux-cloud:rocky-linux-9-optimized-gcp-arm64
# repo not available for rh10
- rocky-linux-cloud:rocky-linux-10
- rocky-linux-cloud:rocky-linux-10-optimized-gcp
- rocky-linux-cloud:rocky-linux-10-arm64
- rocky-linux-cloud:rocky-linux-10-optimized-gcp-arm64
- ubuntu-os-cloud:ubuntu-2404-lts-amd64
- ubuntu-os-cloud:ubuntu-2404-lts-arm64
- ubuntu-os-cloud:ubuntu-2504-amd64 # aerospike not available for 25.04 yet: https://download.aerospike.com/artifacts/aerospike-server-community/7.2.0/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ sudo mv cassandra.repo /etc/yum.repos.d/cassandra.repo

sudo yum -y update

sudo yum -y install java-1.8.0-openjdk java-1.8.0-openjdk-devel cassandra
JAVA_VERSION=1.8.0

sudo yum install -y \
curl java-${JAVA_VERSION}-openjdk java-${JAVA_VERSION}-openjdk-devel cassandra

# Adjust stack size due to bigger page size on aarch64 architecture
if [[ "$ID" == "rocky" && "$MAJOR_VERSION_ID" == "8" && "$(uname -m)" == "aarch64" ]]; then
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ platforms_to_skip:
- debian-cloud:debian-13-arm64 # openjdk-11-jre not available on Debian 13.
- debian-cloud:debian-12 # QueryLog() failed: cassandra_system not found, exhausted retries; QueryLog() failed: cassandra_debug not found, exhausted retries; QueryLog() failed: cassandra_gc not found, exhausted retries
- debian-cloud:debian-12-arm64 # QueryLog() failed: cassandra_system not found, exhausted retries; QueryLog() failed: cassandra_debug not found, exhausted retries; QueryLog() failed: cassandra_gc not found, exhausted retries
# rocky-linux-10 - nothing provides (java-1.8.0-headless or java-11-headless) needed by cassandra-4.1.10-1.noarch from cassandra
- rocky-linux-cloud:rocky-linux-10
- rocky-linux-cloud:rocky-linux-10-optimized-gcp
- rocky-linux-cloud:rocky-linux-10-arm64
- rocky-linux-cloud:rocky-linux-10-optimized-gcp-arm64
supported_app_version: ["3.11", "4.0"]
expected_metrics:
- type: workload.googleapis.com/cassandra.client.request.count
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ platforms_to_skip:
- rocky-linux-cloud:rocky-linux-9-optimized-gcp
- rocky-linux-cloud:rocky-linux-9-arm64
- rocky-linux-cloud:rocky-linux-9-optimized-gcp-arm64
# repo not available for rh10
- rocky-linux-cloud:rocky-linux-10
- rocky-linux-cloud:rocky-linux-10-optimized-gcp
- rocky-linux-cloud:rocky-linux-10-arm64
- rocky-linux-cloud:rocky-linux-10-optimized-gcp-arm64
- ubuntu-os-cloud:ubuntu-2404-lts-amd64
- ubuntu-os-cloud:ubuntu-2404-lts-arm64
- ubuntu-os-cloud:ubuntu-2504-amd64
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,14 @@ case "$VERSION_ID" in
9*) sudo update-crypto-policies --set LEGACY;;
esac

sudo yum install -y java-1.8.0-openjdk
MAJOR_VERSION_ID=${VERSION_ID%%.*}

JAVA_VERSION=1.8.0
if [[ "$ID" == "rocky" && "$MAJOR_VERSION_ID" == "10" ]]; then
JAVA_VERSION=21
fi

sudo yum install -y java-${JAVA_VERSION}-openjdk

sudo rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch

Expand All @@ -26,7 +33,7 @@ sudo mv elasticsearch.repo /etc/yum.repos.d/elasticsearch.repo
sudo chown root:root /etc/yum.repos.d/elasticsearch.repo
sudo chmod 0644 /etc/yum.repos.d/elasticsearch.repo

sudo yum install -y --enablerepo=elasticsearch elasticsearch
sudo yum install -y --enablerepo=elasticsearch elasticsearch

sudo systemctl daemon-reload
sudo systemctl enable elasticsearch
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,14 @@ case "$VERSION_ID" in
9*) sudo update-crypto-policies --set LEGACY;;
esac

sudo yum install -y java-1.8.0-openjdk
MAJOR_VERSION_ID=${VERSION_ID%%.*}

JAVA_VERSION=1.8.0
if [[ "$ID" == "rocky" && "$MAJOR_VERSION_ID" == "10" ]]; then
JAVA_VERSION=21
fi

sudo yum install -y java-${JAVA_VERSION}-openjdk

sudo rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
set -e

sudo yum -y install \
java-1.8.0-openjdk java-1.8.0-openjdk-devel curl
JAVA_VERSION=1.8.0

sudo yum install -y java-${JAVA_VERSION}-openjdk java-${JAVA_VERSION}-openjdk-devel curl

# https://github.com/GoogleCloudPlatform/ops-agent/blob/master/integration_test/README.md#vendored-dependencies
curl -L -o flink.tgz https://storage.googleapis.com/ops-agents-public-buckets-vendored-deps/mirrored-content/archive.apache.org/dist/flink/flink-1.14.4/flink-1.14.4-bin-scala_2.11.tgz
Expand All @@ -12,15 +13,15 @@ sudo tar -xzf flink.tgz -C /opt/flink --strip-components 1
cat <<EOF | sudo tee /etc/systemd/system/flink.service
[Unit]
Description=Apache Flink

[Service]
Type=forking
User=root
Group=root
ExecStart=/opt/flink/bin/start-cluster.sh
ExecStop=/opt/flink/bin/stop-cluster.sh
Restart=always

[Install]
WantedBy=default.target
EOF
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ platforms_to_skip:
- debian-cloud:debian-12-arm64
- debian-cloud:debian-13
- debian-cloud:debian-13-arm64
# Flink not working on java21
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this a specific type of failure ? From my read of the flink installation script, we install java 1.8.4. Is java21 a separate library ?

set -e
sudo yum -y install \
java-1.8.0-openjdk java-1.8.0-openjdk-devel curl
# https://github.com/GoogleCloudPlatform/ops-agent/blob/master/integration_test/README.md#vendored-dependencies
curl -L -o flink.tgz https://storage.googleapis.com/ops-agents-public-buckets-vendored-deps/mirrored-content/archive.apache.org/dist/flink/flink-1.14.4/flink-1.14.4-bin-scala_2.11.tgz

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rocky Linux 10 doesn't have java 1.8 available on the repo, only java21.
I changed the script to install java21, but reverted since Flink was not working.

- rocky-linux-cloud:rocky-linux-10
- rocky-linux-cloud:rocky-linux-10-optimized-gcp
- rocky-linux-cloud:rocky-linux-10-arm64
- rocky-linux-cloud:rocky-linux-10-optimized-gcp-arm64
supported_app_version: ["1.12.5", "1.13.6", "1.14.4"]
configure_integration: ""
expected_metrics:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
set -e

sudo yum -y install \
java-1.8.0-openjdk java-1.8.0-openjdk-devel wget
source /etc/os-release
MAJOR_VERSION_ID=${VERSION_ID%%.*}

JAVA_VERSION=1.8.0
if [[ "$ID" == "rocky" && "$MAJOR_VERSION_ID" == "10" ]]; then
JAVA_VERSION=21
fi

sudo yum install -y java-${JAVA_VERSION}-openjdk java-${JAVA_VERSION}-openjdk-devel wget

sudo mkdir -p \
/opt/hadoop/logs \
Expand Down Expand Up @@ -143,5 +150,5 @@ sudo -u hadoop bash -c "source /opt/hadoop/env && hdfs namenode -format"

sudo systemctl daemon-reload
sudo systemctl enable hadoop
sudo systemctl restart hadoop
sudo systemctl restart hadoop
sleep 60
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ set -o pipefail

HBASE_VERSION=2.4.11

# Hbase and Java compatibility: https://hbase.apache.org/book.html#java
sudo yum -y install \
java-1.8.0-openjdk java-1.8.0-openjdk-devel wget

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ platforms_to_skip:
- debian-cloud:debian-12-arm64
- debian-cloud:debian-13
- debian-cloud:debian-13-arm64
# Same as above, RL10 only has Java 21 which is not supported by HBase
- rocky-linux-cloud:rocky-linux-10
- rocky-linux-cloud:rocky-linux-10-optimized-gcp
- rocky-linux-cloud:rocky-linux-10-arm64
- rocky-linux-cloud:rocky-linux-10-optimized-gcp-arm64
supported_operating_systems: linux
supported_app_version: ["1.7.x", "2.3.x", "2.4.x"]
expected_metrics:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,17 @@ set -e
# wget https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-distribution/9.4.46.v20220331/jetty-distribution-9.4.46.v20220331.tar.gz
# wget https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-home/10.0.9/jetty-home-10.0.9.tar.gz

sudo yum install -y wget java-11-openjdk-devel tzdata-java
source /etc/os-release
MAJOR_VERSION_ID=${VERSION_ID%%.*}

JAVA_VERSION=11
if [[ "$ID" == "rocky" && "$MAJOR_VERSION_ID" == "10" ]]; then
JAVA_VERSION=21
fi

sudo yum install -y java-${JAVA_VERSION}-openjdk-devel

sudo yum install -y wget tzdata-java
sudo wget -O jetty.tar.gz https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-home/11.0.9/jetty-home-11.0.9.tar.gz
sudo mkdir -p /opt/jetty

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
set -e

sudo yum -y install java-1.8.0-openjdk java-1.8.0-openjdk-devel
source /etc/os-release
MAJOR_VERSION_ID=${VERSION_ID%%.*}

JAVA_VERSION=1.8.0
if [[ "$ID" == "rocky" && "$MAJOR_VERSION_ID" == "10" ]]; then
JAVA_VERSION=21
fi

sudo yum install -y \
curl java-${JAVA_VERSION}-openjdk java-${JAVA_VERSION}-openjdk-devel

# TODO(sophieyfang): Below file is the same across all distros.
# Have a single source file to be copied across all distros.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ platforms_to_skip:
- rocky-linux-cloud:rocky-linux-9-optimized-gcp
- rocky-linux-cloud:rocky-linux-9-arm64
- rocky-linux-cloud:rocky-linux-9-optimized-gcp-arm64
- rocky-linux-cloud:rocky-linux-10
- rocky-linux-cloud:rocky-linux-10-optimized-gcp
- rocky-linux-cloud:rocky-linux-10-arm64
- rocky-linux-cloud:rocky-linux-10-optimized-gcp-arm64
- suse-cloud:sles-12
- suse-cloud:sles-15
- suse-cloud:sles-15-arm64
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ platforms_to_skip:
- debian-cloud:debian-12
- debian-cloud:debian-12-arm64
- suse-cloud:sles-15-arm64
- rocky-linux-cloud:rocky-linux-10 # No mongodb repo for rh10 yet
- rocky-linux-cloud:rocky-linux-10-optimized-gcp
- rocky-linux-cloud:rocky-linux-10-arm64
- rocky-linux-cloud:rocky-linux-10-optimized-gcp-arm64
- ubuntu-os-cloud:ubuntu-2504-amd64
- ubuntu-os-cloud:ubuntu-2504-arm64
- ubuntu-os-cloud:ubuntu-2510-amd64
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ platforms_to_skip:
- rocky-linux-cloud:rocky-linux-9-optimized-gcp
- rocky-linux-cloud:rocky-linux-9-arm64
- rocky-linux-cloud:rocky-linux-9-optimized-gcp-arm64
- rocky-linux-cloud:rocky-linux-10
- rocky-linux-cloud:rocky-linux-10-optimized-gcp
- rocky-linux-cloud:rocky-linux-10-arm64
- rocky-linux-cloud:rocky-linux-10-optimized-gcp-arm64
- suse-cloud:sles-15
- suse-cloud:sles-15-arm64
- ubuntu-os-cloud:ubuntu-2204-lts
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,28 @@
set -e

source /etc/os-release
VERSION_ID=${VERSION_ID%%.*}
MAJOR_VERSION_ID=${VERSION_ID%%.*}

sudo rpm --import https://repo.mysql.com/RPM-GPG-KEY-mysql-2023
sudo rpm --import https://repo.mysql.com/RPM-GPG-KEY-mysql-2022
sudo yum -y install https://repo.mysql.com/mysql80-community-release-el${VERSION_ID}.rpm

if [ ${VERSION_ID} == 8 ]; then
MYSQL_VERSION="mysql80"
if [[ "$ID" == "rocky" && "$MAJOR_VERSION_ID" == "10" ]]; then
MYSQL_VERSION=mysql84
fi

sudo yum -y install https://repo.mysql.com/${MYSQL_VERSION}-community-release-el${MAJOR_VERSION_ID}.rpm

if [ ${MAJOR_VERSION_ID} == 8 ]; then
sudo yum -y module disable mysql
fi
sudo yum -y install mysql-community-server

echo "default-authentication-plugin=mysql_native_password" | sudo tee -a /etc/my.cnf

if [[ "$ID" == "rocky" && "$MAJOR_VERSION_ID" == "10" ]]; then
echo "mysql_native_password=ON" | sudo tee -a /etc/my.cnf
else
echo "default-authentication-plugin=mysql_native_password" | sudo tee -a /etc/my.cnf
fi
sudo service mysqld start

password=$(sudo grep -oP '(?<=temporary password is generated for root@localhost: ).*$' /var/log/mysqld.log)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ sudo mysql --defaults-extra-file=config-user -S /var/run/mysqld/mysql2.sock -Bse
sudo mysqldump --defaults-extra-file=config-user -S /var/run/mysqld/mysql2.sock --all-databases --source-data > /tmp/dbdump.sql

# Capture status to seed replica
raw_status=$(sudo mysql --defaults-extra-file=config-user -S /var/run/mysqld/mysql2.sock -Bse "SHOW MASTER STATUS;")
raw_status=$(sudo mysql --defaults-extra-file=config-user -S /var/run/mysqld/mysql2.sock -Bse "SHOW MASTER STATUS;") || raw_status=$(sudo mysql --defaults-extra-file=config-user -S /var/run/mysqld/mysql2.sock -Bse "SHOW BINARY LOG STATUS;")
raw_status=$(sudo mysql --defaults-extra-file=config-user -S /var/run/mysqld/mysql2.sock -Bse "SHOW MASTER STATUS;") || raw_status=$(sudo mysql --defaults-extra-file=config-user -S /var/run/mysqld/mysql2.sock -Bse "SHOW BINARY LOG STATUS;")
read -r logfile logpos <<< $raw_status

# Dump data from source into replica
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ platforms_to_skip:
- rocky-linux-cloud:rocky-linux-9-optimized-gcp
- rocky-linux-cloud:rocky-linux-9-arm64
- rocky-linux-cloud:rocky-linux-9-optimized-gcp-arm64
# repo not available for rh10
- rocky-linux-cloud:rocky-linux-10
- rocky-linux-cloud:rocky-linux-10-optimized-gcp
- rocky-linux-cloud:rocky-linux-10-arm64
- rocky-linux-cloud:rocky-linux-10-optimized-gcp-arm64
- debian-cloud:debian-11
- debian-cloud:debian-12
- debian-cloud:debian-12-arm64
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ platforms_to_skip:
- rocky-linux-cloud:rocky-linux-9-optimized-gcp
- rocky-linux-cloud:rocky-linux-9-arm64
- rocky-linux-cloud:rocky-linux-9-optimized-gcp-arm64
- rocky-linux-cloud:rocky-linux-10
- rocky-linux-cloud:rocky-linux-10-optimized-gcp
- rocky-linux-cloud:rocky-linux-10-arm64
- rocky-linux-cloud:rocky-linux-10-optimized-gcp-arm64
- suse-cloud:sles-12
- suse-cloud:sles-15
- suse-cloud:sles-15-arm64
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ case "${VERSION_ID}" in
9|9.*)
sudo yum -y install https://download.postgresql.org/pub/repos/yum/reporpms/EL-9-"${ARCH}"/pgdg-redhat-repo-latest.noarch.rpm
;;
10|10.*)
sudo yum -y install https://download.postgresql.org/pub/repos/yum/reporpms/EL-10-"${ARCH}"/pgdg-redhat-repo-latest.noarch.rpm
;;
*)
echo -n "unknown version"
exit 1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
set -e

source /etc/os-release
MAJOR_VERSION_ID=${VERSION_ID%%.*}

# if os is rhel 9, crb is required to access epel
case "$VERSION_ID" in
9*) sudo yum config-manager --set-enabled crb;;
10*) sudo yum config-manager --set-enabled crb;;
esac

sudo yum install -y curl epel-release
Expand All @@ -17,12 +19,12 @@ if [[ "$(uname -m)" == aarch64 ]]; then
else
curl -s https://packagecloud.io/install/repositories/rabbitmq/erlang/script.rpm.sh --output erlang.rpm.sh
chmod +x erlang.rpm.sh
sudo os=el dist=8 ./erlang.rpm.sh
sudo os=el dist=${MAJOR_VERSION_ID} ./erlang.rpm.sh
fi

curl -s https://packagecloud.io/install/repositories/rabbitmq/rabbitmq-server/script.rpm.sh --output rabbitmq-server.rpm.sh
chmod +x rabbitmq-server.rpm.sh
sudo os=el dist=8 ./rabbitmq-server.rpm.sh
sudo os=el dist=${MAJOR_VERSION_ID} ./rabbitmq-server.rpm.sh

sudo yum makecache -y \
--disablerepo='*' --enablerepo='rabbitmq_rabbitmq-server'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ platforms_to_skip:
- debian-cloud:debian-13-arm64 # rabbitmq-server not available on Debian 13 yet: http://ppa.launchpad.net/rabbitmq/rabbitmq-erlang/ubuntu/dists/
# RabbitMQ is not supported on various distros.
- suse-cloud:sles-12
- rocky-linux-cloud:rocky-linux-10
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is rabbitmq going to support rocky-linux-10 later ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't know. They haven't add support on their page

https://www.rabbitmq.com/docs/install-rpm

- rocky-linux-cloud:rocky-linux-10-optimized-gcp
- rocky-linux-cloud:rocky-linux-10-arm64
- rocky-linux-cloud:rocky-linux-10-optimized-gcp-arm64
supported_app_version: ["3.8", "3.9"]
expected_metrics:
- type: workload.googleapis.com/rabbitmq.consumer.count
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ platforms_to_skip:
- suse-cloud:sles-12 # File '/repositories/server:/monitoring/SLE_12/server:monitoring.repo' not found
- suse-cloud:sles-15 # File '/repositories/server:database/SLE_15/server:database.repo' not found
- suse-cloud:sles-15-arm64
# redis repo not available for rh10 yet
- rocky-linux-cloud:rocky-linux-10
- rocky-linux-cloud:rocky-linux-10-optimized-gcp
- rocky-linux-cloud:rocky-linux-10-arm64
- rocky-linux-cloud:rocky-linux-10-optimized-gcp-arm64
supported_app_version: ["6.2"]
expected_metrics:
- type: workload.googleapis.com/redis.clients.blocked
Expand Down
Loading