From 998d05c5ab3fea2b2f0323a5e7062366bc46166f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20=C5=81askawiec?= Date: Tue, 19 Dec 2023 09:27:06 +0100 Subject: [PATCH 1/3] Agent_107.0.0.8502-1 --- release.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release.json b/release.json index 77d6032ae..2081dfc16 100644 --- a/release.json +++ b/release.json @@ -3,6 +3,6 @@ "operator": "0.9.0", "version-upgrade-hook": "1.0.8", "readiness-probe": "1.0.17", - "agent": "107.0.0.8465-1", - "agent-tools-version": "100.9.0" + "agent": "107.0.0.8502-1", + "agent-tools-version": "100.9.4" } From 87bd4e444377f1fda80ee497457a4867371d462d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20=C5=81askawiec?= Date: Tue, 19 Dec 2023 10:27:18 +0100 Subject: [PATCH 2/3] Additional dependencies --- scripts/dev/templates/agent/Dockerfile.ubi | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/dev/templates/agent/Dockerfile.ubi b/scripts/dev/templates/agent/Dockerfile.ubi index 36b3660b1..17891e158 100644 --- a/scripts/dev/templates/agent/Dockerfile.ubi +++ b/scripts/dev/templates/agent/Dockerfile.ubi @@ -4,8 +4,11 @@ {% block packages -%} RUN microdnf install -y --disableplugin=subscription-manager --setopt=install_weak_deps=0 nss_wrapper +# Copy-pasted from https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-red-hat-tarball/ +RUN microdnf install -y --disableplugin=subscription-manager --setopt=install_weak_deps=0 \ + cyrus-sasl cyrus-sasl-gssapi cyrus-sasl-plain krb5-libs libcurl openldap openssl xz-libs RUN microdnf install -y --disableplugin=subscription-manager curl \ - hostname tar gzip procps jq\ + hostname tar gzip procps jq \ && microdnf upgrade -y \ && rm -rf /var/lib/apt/lists/* From ecf7d9feaab558d7914b4ac7ad857bbc70f222e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20=C5=81askawiec?= Date: Tue, 19 Dec 2023 10:55:26 +0100 Subject: [PATCH 3/3] Additional libs for the Agent --- scripts/dev/templates/agent/Dockerfile.ubi | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/dev/templates/agent/Dockerfile.ubi b/scripts/dev/templates/agent/Dockerfile.ubi index 17891e158..98a624d38 100644 --- a/scripts/dev/templates/agent/Dockerfile.ubi +++ b/scripts/dev/templates/agent/Dockerfile.ubi @@ -7,6 +7,10 @@ RUN microdnf install -y --disableplugin=subscription-manager --setopt=install_we # Copy-pasted from https://www.mongodb.com/docs/manual/tutorial/install-mongodb-enterprise-on-red-hat-tarball/ RUN microdnf install -y --disableplugin=subscription-manager --setopt=install_weak_deps=0 \ cyrus-sasl cyrus-sasl-gssapi cyrus-sasl-plain krb5-libs libcurl openldap openssl xz-libs +# Dependencies for the Agent +RUN microdnf install -y --disableplugin=subscription-manager --setopt=install_weak_deps=0 \ + net-snmp \ + net-snmp-agent-libs RUN microdnf install -y --disableplugin=subscription-manager curl \ hostname tar gzip procps jq \ && microdnf upgrade -y \