]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
contrib: update keepalived Dockerfile 50719/head
authorGuillaume Abrioux <gabrioux@ibm.com>
Tue, 28 Mar 2023 15:33:29 +0000 (17:33 +0200)
committerGuillaume Abrioux <gabrioux@ibm.com>
Tue, 28 Mar 2023 15:33:29 +0000 (17:33 +0200)
This updates the Dockerfile hosted in cephadm source code in order
to build a newer image based on keepalived 2.2.4

Signed-off-by: Guillaume Abrioux <gabrioux@ibm.com>
src/cephadm/containers/keepalived/Dockerfile

index ac305f72b62e7e5242066720d02c93bf087cd15f..10cce74d7b7ec047b552149002b4d2dbad071d6c 100644 (file)
@@ -1,10 +1,9 @@
-FROM registry.access.redhat.com/ubi8/ubi-minimal:latest
+FROM registry.access.redhat.com/ubi9/ubi-minimal:latest
 
-RUN microdnf install --nodocs \
+RUN microdnf install --assumeyes --nodocs \
     bash       \
-    curl       \
     iproute    \
-    keepalived-2.1.5 \
+    keepalived-2.2.4 \
  && rm /etc/keepalived/keepalived.conf && microdnf clean all
 
 COPY /skel /
@@ -16,9 +15,9 @@ CMD ["./init.sh"]
 # Build specific labels
 LABEL maintainer="Guillaume Abrioux <gabrioux@redhat.com>"
 LABEL com.redhat.component="keepalived-container"
-LABEL version=2.1.5
+LABEL version=2.2.4
 LABEL name="keepalived"
 LABEL description="keepalived for Ceph"
-LABEL summary="Provides keepalived on RHEL 8 for Ceph."
-LABEL io.k8s.display-name="Keepalived on RHEL 8"
+LABEL summary="Provides keepalived on RHEL 9 for Ceph."
+LABEL io.k8s.display-name="Keepalived on RHEL 9"
 LABEL io.openshift.tags="Ceph keepalived"