From ed54b37aacbf8d4806b552d838b176416cf1704c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Doktor?= Date: Tue, 15 Jul 2025 19:50:37 +0200 Subject: [PATCH] docs: Change container image to quay MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit we are now publishing the runperf image on quay instead of docker Signed-off-by: Lukáš Doktor --- docs/source/container.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/source/container.rst b/docs/source/container.rst index 77da7f0..5bad934 100644 --- a/docs/source/container.rst +++ b/docs/source/container.rst @@ -14,7 +14,7 @@ same stored directory can be used to add your hosts definitions. You can get a simple help by running the container:: - podman run --rm -it ldoktor/fedora-runperf + podman run --rm -it quay.io/ldoktor/fedora-runperf Let's define a target machine ``$NAME`` (details about hosts in :ref:`runperf-hosts`):: @@ -37,10 +37,10 @@ Let's define a target machine ``$NAME`` (details about hosts in :ref:`runperf-ho And now let's run linpack 2 times on that machine and generate a comparison:: - podman run --rm -it -v `pwd`:/results ldoktor/fedora-runperf run-perf -vvv --hosts $HOST_NAME --distro Fedora-33 --default-password $PASSWORD --profiles DefaultLibvirt --paths /results -- linpack:'{"threads": "32"}' - podman run --rm -it -v `pwd`:/results ldoktor/fedora-runperf run-perf -vvv --hosts $HOST_NAME --distro Fedora-33 --default-password $PASSWORD --profiles DefaultLibvirt --paths /results -- linpack:'{"threads": "32"}' - podman run --rm -it -v `pwd`:/results ldoktor/fedora-runperf compare-perf --html comparison.html result_* + podman run --rm -it -v `pwd`:/results quay.io/ldoktor/fedora-runperf run-perf -vvv --hosts $HOST_NAME --distro Fedora-33 --default-password $PASSWORD --profiles DefaultLibvirt --paths /results -- linpack:'{"threads": "32"}' + podman run --rm -it -v `pwd`:/results quay.io/ldoktor/fedora-runperf run-perf -vvv --hosts $HOST_NAME --distro Fedora-33 --default-password $PASSWORD --profiles DefaultLibvirt --paths /results -- linpack:'{"threads": "32"}' + podman run --rm -it -v `pwd`:/results quay.io/ldoktor/fedora-runperf compare-perf --html comparison.html result_* An example of upstream qemu bisection using a built-in contrib script:: - podman run --rm -it -v `pwd`:/results ldoktor/fedora-runperf upstream_qemu_bisect.sh /results/qemu 5.1.0 5.2.0 run-perf -vvv --hosts $HOST_NAME --distro Fedora-33 --default-password $PASSWORD --profiles DefaultLibvirt --paths /results -- linpack:'{"threads": "32"}' + podman run --rm -it -v `pwd`:/results quay.io/ldoktor/fedora-runperf upstream_qemu_bisect.sh /results/qemu 5.1.0 5.2.0 run-perf -vvv --hosts $HOST_NAME --distro Fedora-33 --default-password $PASSWORD --profiles DefaultLibvirt --paths /results -- linpack:'{"threads": "32"}'