From a8ae4e59c158bbb011b222dbc41b0ccd70c597b4 Mon Sep 17 00:00:00 2001 From: Jose Castillo Lema Date: Mon, 20 May 2024 15:41:38 +0200 Subject: [PATCH] New frr image Signed-off-by: Jose Castillo Lema --- frr/Containerfile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 frr/Containerfile diff --git a/frr/Containerfile b/frr/Containerfile new file mode 100644 index 0000000..29f3729 --- /dev/null +++ b/frr/Containerfile @@ -0,0 +1,19 @@ +FROM quay.io/centos/centos:stream9 + +RUN dnf install --setopt=tsflags=nodocs -y \ + iproute bind-utils iputils net-tools procps \ + frr \ + haproxy \ + iperf3 \ + tcpdump \ + && dnf clean all \ + && rm -fr /var/cache/dnf + +# Install latest OCP/K8s client +RUN curl https://mirror.openshift.com/pub/openshift-v4/clients/ocp/latest/openshift-client-linux.tar.gz | tar -xzf - -C /usr/local/bin + +LABEL io.k8s.display-name="FRR Router" \ + io.k8s.description="FRR Container with troubleshooting tools" \ + io.openshift.tags="frr,iproute,tcpdump" + +ENTRYPOINT /bin/bash -c "sleep infinity"