From 8562fd9cea5417083c957721ce83d0ceab90b760 Mon Sep 17 00:00:00 2001 From: Lukas Piwowarski Date: Mon, 22 Jan 2024 11:51:19 -0500 Subject: [PATCH] [docs] Fix image source for logs pod This is a small typo. The image for the logs pod contained valued "openstack" instead of "quay.io/quay/busybox". --- docs/source/guide.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/source/guide.rst b/docs/source/guide.rst index 9519aa3d..05ca161b 100644 --- a/docs/source/guide.rst +++ b/docs/source/guide.rst @@ -277,7 +277,7 @@ For example this definition of Tempest object: will ensure that tempest will be executed with tempest.conf that looks like this: -.. code-block:: toml +.. code-block:: ... [auth] @@ -285,7 +285,6 @@ will ensure that tempest will be executed with tempest.conf that looks like this admin_password = 1234 ... - .. _getting-logs: Getting Logs @@ -310,7 +309,7 @@ If you want to retrieve the logs from the pv, you can follow these steps: spec: containers: - name: test-operator-logs-container - image: "openstack" + image: quay.io/quay/busybox command: ["/bin/sh", "-c", "--"] args: ["while true; do sleep 30; done;"] volumeMounts: