From f466ff6b6955476f28d4d8379c84fee1ad8f12e7 Mon Sep 17 00:00:00 2001 From: Vladislav Walek <22072258+vwalek@users.noreply.github.com> Date: Mon, 25 Jul 2022 21:51:28 -0700 Subject: [PATCH] remove the epel repository after installing the collectl Signed-off-by: Vladislav Walek <22072258+vwalek@users.noreply.github.com> --- utilities/collectl/buildconfig.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utilities/collectl/buildconfig.yaml b/utilities/collectl/buildconfig.yaml index a1dd9dc..cf9e5d6 100644 --- a/utilities/collectl/buildconfig.yaml +++ b/utilities/collectl/buildconfig.yaml @@ -15,6 +15,7 @@ spec: FROM registry.access.redhat.com/ubi7/ubi:7.8 RUN yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -y && \ yum install collectl-4.3.0-5.el7 pciutils hostname sysvinit-tools -y && \ + yum remove -y epel-release-7-14.noarch && \ yum clean all COPY ./entrypoint /root/ RUN chmod 741 /root/entrypoint.sh @@ -28,4 +29,4 @@ spec: dockerStrategy: {} type: Docker triggers: - - type: ConfigChange \ No newline at end of file + - type: ConfigChange