Skip to content

Instantly share code, notes, and snippets.

@williamcaban
Created July 31, 2019 15:56
Show Gist options
  • Save williamcaban/fba629f2f4deaeb0fa98609af40149ad to your computer and use it in GitHub Desktop.
Save williamcaban/fba629f2f4deaeb0fa98609af40149ad to your computer and use it in GitHub Desktop.
Simple container with iperf3 and rt-tests
FROM quay.io/fedora/fedora:31-x86_64
RUN dnf install --nodocs -y iperf3 lksctp-tools rt-tests && \
dnf clean all && \
rm -rf /var/cache/dnf
LABEL io.k8s.display-name="iperf3" \
io.k8s.description="This is an iperf3 and rt-tests container"
ENTRYPOINT /bin/bash -c "sleep infinity"
@williamcaban
Copy link
Author

Consider the use of the net-toolbox container --> https://github.com/williamcaban/ocp4x-net-toolbox

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment