You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2022/10/25 15:09:50 UTC

[airflow] 01/01: Attempt to add Python 3.11 support

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch python-3-11
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit b06fb75837a08c93226d662a8032cd1cd44c44e9
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Tue Oct 25 17:07:42 2022 +0200

    Attempt to add Python 3.11 support
    
    Python 3.11 has been released as scheduled on October 25, 2022 and
    this is the first attempt to see how far Airflow (mostly dependencies)
    are from being ready to officially support 3.11.
---
 CI.rst                                             |   2 +-
 LOCAL_VIRTUALENV.rst                               |  12 +-
 README.md                                          |   2 +-
 dev/README_RELEASE_AIRFLOW.md                      |   2 +-
 dev/breeze/SELECTIVE_CHECKS.md                     |   4 +-
 dev/breeze/src/airflow_breeze/global_constants.py  |   4 +-
 .../src/airflow_breeze/utils/selective_checks.py   |   2 +-
 dev/breeze/tests/test_cache.py                     |   4 +-
 dev/breeze/tests/test_selective_checks.py          |  40 +--
 dev/provider_packages/prepare_provider_packages.py |   2 +-
 dev/retag_docker_images.py                         |   2 +-
 docs/apache-airflow/installation/prerequisites.rst |   2 +-
 docs/apache-airflow/upgrading-from-1-10/index.rst  |   2 +-
 docs/docker-stack/build.rst                        |  16 +-
 images/breeze/output-commands-hash.txt             |  68 ++--
 images/breeze/output-commands.svg                  | 212 ++++++------
 images/breeze/output_ci-image.svg                  |  24 +-
 images/breeze/output_ci-image_build.svg            | 292 ++++++++--------
 images/breeze/output_ci-image_pull.svg             | 152 ++++-----
 images/breeze/output_ci-image_verify.svg           |  96 +++---
 images/breeze/output_ci.svg                        |  32 +-
 .../breeze/output_ci_find-newer-dependencies.svg   | 104 +++---
 images/breeze/output_k8s.svg                       |  58 ++--
 images/breeze/output_k8s_build-k8s-image.svg       | 140 ++++----
 images/breeze/output_k8s_configure-cluster.svg     | 140 ++++----
 images/breeze/output_k8s_create-cluster.svg        | 156 ++++-----
 images/breeze/output_k8s_delete-cluster.svg        | 112 +++---
 images/breeze/output_k8s_deploy-airflow.svg        | 176 +++++-----
 images/breeze/output_k8s_k9s.svg                   | 100 +++---
 images/breeze/output_k8s_logs.svg                  | 112 +++---
 images/breeze/output_k8s_run-complete-tests.svg    | 220 ++++++------
 images/breeze/output_k8s_shell.svg                 | 116 ++++---
 images/breeze/output_k8s_status.svg                | 116 ++++---
 images/breeze/output_k8s_tests.svg                 | 172 +++++-----
 images/breeze/output_k8s_upload-k8s-image.svg      | 152 +++++----
 images/breeze/output_prod-image.svg                |  24 +-
 images/breeze/output_prod-image_build.svg          | 376 ++++++++++-----------
 images/breeze/output_prod-image_pull.svg           | 152 ++++-----
 images/breeze/output_prod-image_verify.svg         | 100 +++---
 images/breeze/output_release-management.svg        |  28 +-
 ...put_release-management_generate-constraints.svg | 156 ++++-----
 ...tput_release-management_release-prod-images.svg | 124 +++----
 images/breeze/output_setup.svg                     |  26 +-
 images/breeze/output_setup_config.svg              | 108 +++---
 images/breeze/output_shell.svg                     | 240 ++++++-------
 images/breeze/output_start-airflow.svg             | 260 +++++++-------
 images/breeze/output_testing.svg                   |  22 +-
 .../breeze/output_testing_docker-compose-tests.svg |  96 +++---
 images/breeze/output_testing_tests.svg             | 216 ++++++------
 setup.cfg                                          |   1 +
 50 files changed, 2414 insertions(+), 2361 deletions(-)

diff --git a/CI.rst b/CI.rst
index 5c937e5794..97a3638fdb 100644
--- a/CI.rst
+++ b/CI.rst
@@ -59,7 +59,7 @@ Container Registry used as cache
 We are using GitHub Container Registry to store the results of the ``Build Images``
 workflow which is used in the ``Tests`` workflow.
 
-Currently in main version of Airflow we run tests in 4 different versions of Python (3.7, 3.8, 3.9, 3.10)
+Currently in main version of Airflow we run tests in 4 different versions of Python (3.7, 3.8, 3.9, 3.10, 3.11)
 which means that we have to build 8 images (4 CI ones and 4 PROD ones). Yet we run around 12 jobs
 with each of the CI images. That is a lot of time to just build the environment to run. Therefore
 we are utilising ``pull_request_target`` feature of GitHub Actions.
diff --git a/LOCAL_VIRTUALENV.rst b/LOCAL_VIRTUALENV.rst
index 469eedbf43..c0f3937a13 100644
--- a/LOCAL_VIRTUALENV.rst
+++ b/LOCAL_VIRTUALENV.rst
@@ -51,7 +51,7 @@ Required Software Packages
 Use system-level package managers like yum, apt-get for Linux, or
 Homebrew for macOS to install required software packages:
 
-* Python (One of: 3.7, 3.8, 3.9, 3.10)
+* Python (One of: 3.7, 3.8, 3.9, 3.10, 3.11)
 * MySQL 5.7+
 * libxml
 
@@ -102,7 +102,7 @@ Creating a Local virtualenv
 
 To use your IDE for Airflow development and testing, you need to configure a virtual
 environment. Ideally you should set up virtualenv for all Python versions that Airflow
-supports (3.7, 3.8, 3.9, 3.10).
+supports (3.7, 3.8, 3.9, 3.10, 3.11).
 
 To create and initialize the local virtualenv:
 
@@ -122,7 +122,7 @@ To create and initialize the local virtualenv:
 
     .. code-block:: bash
 
-      conda create -n airflow python=3.7  # or 3.8, 3.9, 3.10
+      conda create -n airflow python=3.7  # or 3.8, 3.9, 3.10, 3.11
       conda activate airflow
 
 2. Install Python PIP requirements:
@@ -150,7 +150,7 @@ for different python versions). For development on current main source:
 
    .. code-block:: bash
 
-    # use the same version of python as you are working with, 3.7, 3.8, 3.9, or 3.10
+    # use the same version of python as you are working with, 3.7, 3.8, 3.9, 3.10 or 3.11
     pip install -e ".[devel,<OTHER EXTRAS>]" \
         --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-main/constraints-source-providers-3.7.txt"
 
@@ -163,7 +163,7 @@ You can also install Airflow in non-editable mode:
 
    .. code-block:: bash
 
-    # use the same version of python as you are working with, 3.7, 3.8, 3.9, or 3.10
+    # use the same version of python as you are working with, 3.7, 3.8, 3.9, 3.10 or 3.11
     pip install ".[devel,<OTHER EXTRAS>]" \
         --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-main/constraints-source-providers-3.7.txt"
 
@@ -173,7 +173,7 @@ sources, unless you set ``INSTALL_PROVIDERS_FROM_SOURCES`` environment variable
 
    .. code-block:: bash
 
-    # use the same version of python as you are working with, 3.7, 3.8, 3.9, or 3.10
+    # use the same version of python as you are working with, 3.7, 3.8, 3.9, 3.10 or 3.11
     INSTALL_PROVIDERS_FROM_SOURCES="true" pip install ".[devel,<OTHER EXTRAS>]" \
         --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-main/constraints-source-providers-3.7.txt"
 
diff --git a/README.md b/README.md
index a9e697fca2..1483da292e 100644
--- a/README.md
+++ b/README.md
@@ -87,7 +87,7 @@ Apache Airflow is tested with:
 
 |                     | Main version (dev)           | Stable version (2.4.2)       |
 |---------------------|------------------------------|------------------------------|
-| Python              | 3.7, 3.8, 3.9, 3.10          | 3.7, 3.8, 3.9, 3.10          |
+| Python              | 3.7, 3.8, 3.9, 3.10, 3.11    | 3.7, 3.8, 3.9, 3.10, 3.11    |
 | Platform            | AMD64/ARM64(\*)              | AMD64/ARM64(\*)              |
 | Kubernetes          | 1.21, 1.22, 1.23, 1.24, 1.25 | 1.21, 1.22, 1.23, 1.24, 1.25 |
 | PostgreSQL          | 10, 11, 12, 13, 14           | 10, 11, 12, 13, 14           |
diff --git a/dev/README_RELEASE_AIRFLOW.md b/dev/README_RELEASE_AIRFLOW.md
index ac44f28945..12af1bc45d 100644
--- a/dev/README_RELEASE_AIRFLOW.md
+++ b/dev/README_RELEASE_AIRFLOW.md
@@ -985,7 +985,7 @@ the older branches, you should set the "skip" field to true.
 ## Verify production images
 
 ```shell script
-for PYTHON in 3.7 3.8 3.9 3.10
+for PYTHON in 3.7 3.8 3.9 3.10 3.11
 do
     docker pull apache/airflow:${VERSION}-python${PYTHON}
     breeze prod-image verify --image-name apache/airflow:${VERSION}-python${PYTHON}
diff --git a/dev/breeze/SELECTIVE_CHECKS.md b/dev/breeze/SELECTIVE_CHECKS.md
index 33d364e4a2..84dfaafce8 100644
--- a/dev/breeze/SELECTIVE_CHECKS.md
+++ b/dev/breeze/SELECTIVE_CHECKS.md
@@ -109,8 +109,8 @@ The selective check outputs available are described below:
 
 | Output                             | Meaning of the output                                                                                  | Example value                                                 |
 |------------------------------------|--------------------------------------------------------------------------------------------------------|---------------------------------------------------------------|
-| all-python-versions                | List of all python versions there are available in the form of JSON array                              | ['3.7', '3.8', '3.9', '3.10']                                 |
-| all-python-versions-list-as-string | List of all python versions there are available in the form of space separated string                  | 3.7 3.8 3.9 3.10                                              |
+| all-python-versions                | List of all python versions there are available in the form of JSON array                              | ['3.7', '3.8', '3.9', '3.10', '3.11']                         |
+| all-python-versions-list-as-string | List of all python versions there are available in the form of space separated string                  | 3.7 3.8 3.9 3.10 3.11                                         |
 | basic-checks-only                  | Whether to run all static checks ("false") or only basic set of static checks ("true")                 | false                                                         |
 | cache-directive                    | Which cache should be be used for images ("registry", "local" , "disabled")                            | registry                                                      |
 | debug-resources                    | Whether resources usage should be printed during parallel job execution ("true"/ "false")              | false                                                         |
diff --git a/dev/breeze/src/airflow_breeze/global_constants.py b/dev/breeze/src/airflow_breeze/global_constants.py
index 27e0d5e318..72e46c605b 100644
--- a/dev/breeze/src/airflow_breeze/global_constants.py
+++ b/dev/breeze/src/airflow_breeze/global_constants.py
@@ -37,7 +37,7 @@ ANSWER = ""
 APACHE_AIRFLOW_GITHUB_REPOSITORY = "apache/airflow"
 
 # Checked before putting in build cache
-ALLOWED_PYTHON_MAJOR_MINOR_VERSIONS = ["3.7", "3.8", "3.9", "3.10"]
+ALLOWED_PYTHON_MAJOR_MINOR_VERSIONS = ["3.7", "3.8", "3.9", "3.10", "3.11"]
 DEFAULT_PYTHON_MAJOR_MINOR_VERSION = ALLOWED_PYTHON_MAJOR_MINOR_VERSIONS[0]
 ALLOWED_ARCHITECTURES = [Architecture.X86_64, Architecture.ARM]
 ALLOWED_BACKENDS = ["sqlite", "mysql", "postgres", "mssql"]
@@ -153,7 +153,7 @@ SQLITE_URL = "sqlite:////root/airflow/airflow.db"
 PYTHONDONTWRITEBYTECODE = True
 
 PRODUCTION_IMAGE = False
-ALL_PYTHON_MAJOR_MINOR_VERSIONS = ["3.7", "3.8", "3.9", "3.10"]
+ALL_PYTHON_MAJOR_MINOR_VERSIONS = ["3.7", "3.8", "3.9", "3.10", "3.11"]
 CURRENT_PYTHON_MAJOR_MINOR_VERSIONS = ALL_PYTHON_MAJOR_MINOR_VERSIONS
 CURRENT_POSTGRES_VERSIONS = ["10", "11", "12", "13", "14"]
 DEFAULT_POSTGRES_VERSION = CURRENT_POSTGRES_VERSIONS[0]
diff --git a/dev/breeze/src/airflow_breeze/utils/selective_checks.py b/dev/breeze/src/airflow_breeze/utils/selective_checks.py
index a1c9ca44a1..78e46ac063 100644
--- a/dev/breeze/src/airflow_breeze/utils/selective_checks.py
+++ b/dev/breeze/src/airflow_breeze/utils/selective_checks.py
@@ -366,7 +366,7 @@ class SelectiveChecks:
 
     @cached_property
     def sqlite_exclude(self) -> list[dict[str, str]]:
-        return [{"python-version": "3.9"}] if self._full_tests_needed else []
+        return [{"python-version": "3.11"}] if self._full_tests_needed else []
 
     @cached_property
     def kubernetes_versions(self) -> list[str]:
diff --git a/dev/breeze/tests/test_cache.py b/dev/breeze/tests/test_cache.py
index a37a91165b..1db27494ab 100644
--- a/dev/breeze/tests/test_cache.py
+++ b/dev/breeze/tests/test_cache.py
@@ -36,8 +36,8 @@ AIRFLOW_SOURCES = Path(__file__).parents[3].resolve()
     [
         ("backend", "mysql", (True, ["sqlite", "mysql", "postgres", "mssql"]), None),
         ("backend", "xxx", (False, ["sqlite", "mysql", "postgres", "mssql"]), None),
-        ("python_major_minor_version", "3.8", (True, ["3.7", "3.8", "3.9", "3.10"]), None),
-        ("python_major_minor_version", "3.5", (False, ["3.7", "3.8", "3.9", "3.10"]), None),
+        ("python_major_minor_version", "3.8", (True, ["3.7", "3.8", "3.9", "3.10", "3.11"]), None),
+        ("python_major_minor_version", "3.5", (False, ["3.7", "3.8", "3.9", "3.10", "3.11"]), None),
         ("missing", "value", None, AttributeError),
     ],
 )
diff --git a/dev/breeze/tests/test_selective_checks.py b/dev/breeze/tests/test_selective_checks.py
index 8ae602be2e..828a467bcc 100644
--- a/dev/breeze/tests/test_selective_checks.py
+++ b/dev/breeze/tests/test_selective_checks.py
@@ -206,8 +206,8 @@ def assert_outputs_are_printed(expected_outputs: dict[str, str], stderr: str):
             pytest.param(
                 ("setup.py",),
                 {
-                    "all-python-versions": "['3.7', '3.8', '3.9', '3.10']",
-                    "all-python-versions-list-as-string": "3.7 3.8 3.9 3.10",
+                    "all-python-versions": "['3.7', '3.8', '3.9', '3.10', '3.11']",
+                    "all-python-versions-list-as-string": "3.7 3.8 3.9 3.10 3.11",
                     "image-build": "true",
                     "needs-helm-tests": "true",
                     "run-tests": "true",
@@ -223,8 +223,8 @@ def assert_outputs_are_printed(expected_outputs: dict[str, str], stderr: str):
             pytest.param(
                 ("generated/provider_dependencies.json",),
                 {
-                    "all-python-versions": "['3.7', '3.8', '3.9', '3.10']",
-                    "all-python-versions-list-as-string": "3.7 3.8 3.9 3.10",
+                    "all-python-versions": "['3.7', '3.8', '3.9', '3.10','3.11']",
+                    "all-python-versions-list-as-string": "3.7 3.8 3.9 3.10 3.11",
                     "image-build": "true",
                     "needs-helm-tests": "true",
                     "run-tests": "true",
@@ -260,8 +260,8 @@ def test_expected_output_pull_request_main(
                 ("full tests needed",),
                 "main",
                 {
-                    "all-python-versions": "['3.7', '3.8', '3.9', '3.10']",
-                    "all-python-versions-list-as-string": "3.7 3.8 3.9 3.10",
+                    "all-python-versions": "['3.7', '3.8', '3.9', '3.10','3.11']",
+                    "all-python-versions-list-as-string": "3.7 3.8 3.9 3.10 3.11",
                     "image-build": "true",
                     "run-tests": "true",
                     "docs-build": "true",
@@ -280,8 +280,8 @@ def test_expected_output_pull_request_main(
                 ),
                 "main",
                 {
-                    "all-python-versions": "['3.7', '3.8', '3.9', '3.10']",
-                    "all-python-versions-list-as-string": "3.7 3.8 3.9 3.10",
+                    "all-python-versions": "['3.7', '3.8', '3.9', '3.10','3.11']",
+                    "all-python-versions-list-as-string": "3.7 3.8 3.9 3.10 3.11",
                     "image-build": "true",
                     "run-tests": "true",
                     "docs-build": "true",
@@ -298,8 +298,8 @@ def test_expected_output_pull_request_main(
                 ("full tests needed",),
                 "main",
                 {
-                    "all-python-versions": "['3.7', '3.8', '3.9', '3.10']",
-                    "all-python-versions-list-as-string": "3.7 3.8 3.9 3.10",
+                    "all-python-versions": "['3.7', '3.8', '3.9', '3.10','3.11']",
+                    "all-python-versions-list-as-string": "3.7 3.8 3.9 3.10 3.11",
                     "image-build": "true",
                     "run-tests": "true",
                     "docs-build": "true",
@@ -316,8 +316,8 @@ def test_expected_output_pull_request_main(
                 ("full tests needed",),
                 "v2-3-stable",
                 {
-                    "all-python-versions": "['3.7', '3.8', '3.9', '3.10']",
-                    "all-python-versions-list-as-string": "3.7 3.8 3.9 3.10",
+                    "all-python-versions": "['3.7', '3.8', '3.9', '3.10','3.11']",
+                    "all-python-versions-list-as-string": "3.7 3.8 3.9 3.10 3.11",
                     "image-build": "true",
                     "run-tests": "true",
                     "docs-build": "true",
@@ -513,8 +513,8 @@ def test_expected_output_pull_request_target(
             (),
             "main",
             {
-                "all-python-versions": "['3.7', '3.8', '3.9', '3.10']",
-                "all-python-versions-list-as-string": "3.7 3.8 3.9 3.10",
+                "all-python-versions": "['3.7', '3.8', '3.9', '3.10','3.11']",
+                "all-python-versions-list-as-string": "3.7 3.8 3.9 3.10 3.11",
                 "image-build": "true",
                 "needs-helm-tests": "true",
                 "run-tests": "true",
@@ -529,8 +529,8 @@ def test_expected_output_pull_request_target(
             (),
             "v2-3-stable",
             {
-                "all-python-versions": "['3.7', '3.8', '3.9', '3.10']",
-                "all-python-versions-list-as-string": "3.7 3.8 3.9 3.10",
+                "all-python-versions": "['3.7', '3.8', '3.9', '3.10','3.11']",
+                "all-python-versions-list-as-string": "3.7 3.8 3.9 3.10 3.11",
                 "image-build": "true",
                 "needs-helm-tests": "false",
                 "run-tests": "true",
@@ -546,8 +546,8 @@ def test_expected_output_pull_request_target(
             (),
             "main",
             {
-                "all-python-versions": "['3.7', '3.8', '3.9', '3.10']",
-                "all-python-versions-list-as-string": "3.7 3.8 3.9 3.10",
+                "all-python-versions": "['3.7', '3.8', '3.9', '3.10','3.11']",
+                "all-python-versions-list-as-string": "3.7 3.8 3.9 3.10 3.11",
                 "image-build": "true",
                 "needs-helm-tests": "true",
                 "run-tests": "true",
@@ -595,8 +595,8 @@ def test_no_commit_provided_trigger_full_build_for_any_event_type(github_event):
     )
     assert_outputs_are_printed(
         {
-            "all-python-versions": "['3.7', '3.8', '3.9', '3.10']",
-            "all-python-versions-list-as-string": "3.7 3.8 3.9 3.10",
+            "all-python-versions": "['3.7', '3.8', '3.9', '3.10','3.11']",
+            "all-python-versions-list-as-string": "3.7 3.8 3.9 3.10 3.11",
             "image-build": "true",
             "needs-helm-tests": "true",
             "run-tests": "true",
diff --git a/dev/provider_packages/prepare_provider_packages.py b/dev/provider_packages/prepare_provider_packages.py
index 43d32e99c7..b10961f6f9 100755
--- a/dev/provider_packages/prepare_provider_packages.py
+++ b/dev/provider_packages/prepare_provider_packages.py
@@ -53,7 +53,7 @@ from rich.progress import Progress
 from rich.syntax import Syntax
 from yaml import safe_load
 
-ALL_PYTHON_VERSIONS = ["3.7", "3.8", "3.9", "3.10"]
+ALL_PYTHON_VERSIONS = ["3.7", "3.8", "3.9", "3.10", "3.11"]
 
 INITIAL_CHANGELOG_CONTENT = """
 
diff --git a/dev/retag_docker_images.py b/dev/retag_docker_images.py
index db203fd741..4bc72ae28a 100755
--- a/dev/retag_docker_images.py
+++ b/dev/retag_docker_images.py
@@ -31,7 +31,7 @@ import subprocess
 
 import rich_click as click
 
-PYTHON_VERSIONS = ["3.7", "3.8", "3.9", "3.10"]
+PYTHON_VERSIONS = ["3.7", "3.8", "3.9", "3.10", "3.11"]
 
 GHCR_IO_PREFIX = "ghcr.io"
 
diff --git a/docs/apache-airflow/installation/prerequisites.rst b/docs/apache-airflow/installation/prerequisites.rst
index f4bf65d208..af1a92d9cb 100644
--- a/docs/apache-airflow/installation/prerequisites.rst
+++ b/docs/apache-airflow/installation/prerequisites.rst
@@ -20,7 +20,7 @@ Prerequisites
 
 Starting with Airflow 2.3.0, Airflow is tested with:.
 
-* Python: 3.7, 3.8, 3.9, 3.10
+* Python: 3.7, 3.8, 3.9, 3.10, 3.11
 
 * Databases:
 
diff --git a/docs/apache-airflow/upgrading-from-1-10/index.rst b/docs/apache-airflow/upgrading-from-1-10/index.rst
index 081a902d19..e49e925bab 100644
--- a/docs/apache-airflow/upgrading-from-1-10/index.rst
+++ b/docs/apache-airflow/upgrading-from-1-10/index.rst
@@ -34,7 +34,7 @@ Airflow 1.10 was the last release series to support Python 2. Airflow 2.0.0
 requires Python 3.6+ and has been tested with Python versions 3.6, 3.7 and 3.8.
 Python 3.9 support was added from Airflow 2.1.2.
 
-Airflow 2.3.0 dropped support for Python 3.6. It's tested with Python 3.7, 3.8, 3.9 and 3.10.
+Airflow 2.3.0 dropped support for Python 3.6. It's tested with Python 3.7, 3.8, 3.9, 3.10, 3.11.
 
 If you have a specific task that still requires Python 2 then you can use the ``@task.virtualenv``, ``@task.docker`` or ``@task.kubernetes`` decorators for this.
 
diff --git a/docs/docker-stack/build.rst b/docs/docker-stack/build.rst
index 5849e17709..38e8ff8b89 100644
--- a/docs/docker-stack/build.rst
+++ b/docs/docker-stack/build.rst
@@ -262,14 +262,14 @@ There are two types of images you can extend your image from:
 
 Naming conventions for the images:
 
-+----------------+------------------+---------------------------------+--------------------------------------+
-| Image          | Python           | Standard image                  | Slim image                           |
-+================+==================+=================================+======================================+
-| Latest default | 3.7              | apache/airflow:latest           | apache/airflow:slim-latest           |
-| Default        | 3.7              | apache/airflow:X.Y.Z            | apache/airflow:slim-X.Y.Z            |
-| Latest         | 3.7,3.8,3.9,3.10 | apache/airflow:latest-pythonN.M | apache/airflow:slim-latest-pythonN.M |
-| Specific       | 3.7,3.8,3.9,3.10 | apache/airflow:X.Y.Z-pythonN.M  | apache/airflow:slim-X.Y.Z-pythonN.M  |
-+----------------+------------------+---------------------------------+--------------------------------------+
++----------------+-----------------------+---------------------------------+--------------------------------------+
+| Image          | Python                | Standard image                  | Slim image                           |
++================+=======================+=================================+======================================+
+| Latest default | 3.7                   | apache/airflow:latest           | apache/airflow:slim-latest           |
+| Default        | 3.7                   | apache/airflow:X.Y.Z            | apache/airflow:slim-X.Y.Z            |
+| Latest         | 3.7,3.8,3.9,3.10,3.11 | apache/airflow:latest-pythonN.M | apache/airflow:slim-latest-pythonN.M |
+| Specific       | 3.7,3.8,3.9,3.10,3.11 | apache/airflow:X.Y.Z-pythonN.M  | apache/airflow:slim-X.Y.Z-pythonN.M  |
++----------------+-----------------------+---------------------------------+--------------------------------------+
 
 * The "latest" image is always the latest released stable version available.
 
diff --git a/images/breeze/output-commands-hash.txt b/images/breeze/output-commands-hash.txt
index dd8e0bcecf..bd0c0b83ab 100644
--- a/images/breeze/output-commands-hash.txt
+++ b/images/breeze/output-commands-hash.txt
@@ -1,58 +1,58 @@
 # This file is automatically generated by pre-commit. If you have a conflict with this file
 # Please do not solve it but run `breeze setup regenerate-command-images`.
 # This command should fix the conflict and regenerate help images that you have conflict with.
-main:7322af669ed8bab9cc53ff82372d7b6d
+main:5cfbfcac22b77a39c00831c15945e4d6
 build-docs:247bea182253970e95dd69d3ccdcbf71
-ci:find-newer-dependencies:8fa2b57f5f0523c928743b235ee3ab5a
+ci:find-newer-dependencies:0c29a13f4f2bbccbd72d946f94eaa20a
 ci:fix-ownership:84902165a54467564fbdd3598fa273e2
 ci:free-space:bb8e7ac63d12ab3ede272a898de2f527
 ci:get-workflow-info:01ee34c33ad62fa5dc33e0ac8773223f
 ci:resource-check:0fb929ac3496dbbe97acfe99e35accd7
 ci:selective-check:d4e3c250cd6f2b0040fbe6557fa423f6
-ci:6d3ac64938416e047a435ce42db6cd06
-ci-image:build:21c0b2bc553409e3719569a0ca7eaa64
-ci-image:pull:73266206a4d1908f389352366bacec7f
-ci-image:verify:e582cf1b2c00716442b6409ca8641264
-ci-image:60b3db541f8dfa5464acded261800d90
+ci:de4c7ccbf8185c470db3ab60f0de72f5
+ci-image:build:4b1ca1b40638930cfbb70b0c16ac3f3b
+ci-image:pull:490cf296666f268a992e9ca598b7a3df
+ci-image:verify:8749454475b69eaedc45a61d1fc7e681
+ci-image:b193e3b3d3b1d78d24e138d20ca5a34d
 cleanup:9bf46a1dfd9db4fe13a1c233ad1bb96b
 compile-www-assets:23675c1862d0968cbff6ab6f1d93d488
 exec:89b81bc34d45b0fe6653a6db5482258c
-k8s:build-k8s-image:490592aa0af35b4a035f5fcbd1d1eba4
-k8s:configure-cluster:565765c4fd0c3c6da4db066e7bf34dc5
-k8s:create-cluster:575ed2d649c35fde27fd7fd39e4ae4d6
-k8s:delete-cluster:3c1165914eeec4729c4e2f325853edfa
-k8s:deploy-airflow:97db729690c3d9e88953fce12602fb2b
-k8s:k9s:64be156ce5cea8f1286c074e590f57e7
-k8s:logs:6e666b2318fd809724dc1f6a23661cb8
-k8s:run-complete-tests:30c2041780fff1d34e5087a7daa91eab
+k8s:build-k8s-image:2f44ff20b9300afb0d8a71067b7e2cd6
+k8s:configure-cluster:f95cb1240a2d4a63b63f01a213462a43
+k8s:create-cluster:c828ef9c6e2e1ee0ad1cb3cc2ad1e637
+k8s:delete-cluster:f2470ce1458d6e10eaf6f0fa9878a759
+k8s:deploy-airflow:16c92cf48194bca09e60cc9d2fc6d70a
+k8s:k9s:372b4142fba72465faabf9145de9f610
+k8s:logs:35909a3c098a4ebabadf3dee0abf4c0e
+k8s:run-complete-tests:ac072d7bb9dfb0a154a534d64abd4318
 k8s:setup-env:81077d4a377af3f5525d134c72be4707
-k8s:shell:3e06c69cf16b174888fcc5d76b34dbef
-k8s:status:08c5dba9d6bd155ab6f537b1054d7f2b
-k8s:tests:55b5353aa92691f9be9087bdf0f5d60d
-k8s:upload-k8s-image:6a7fe33c173f3a60579a689d299971eb
-k8s:539209e41e2d4e15bcc02f60e3b51568
-prod-image:build:26b5a3d800e8d59eb2c566acc77347c6
-prod-image:pull:ba0f383e5adbb1a8a295138ec7f88038
-prod-image:verify:4d40bd67bc559d6cab253dee34ce1856
-prod-image:8c910c18755af26531865ed2bccbd0fa
-release-management:generate-constraints:d4acf4ba8a33fbf9579265aa2ac8f788
+k8s:shell:4d3384b367a6f42cc006db1f1a00363b
+k8s:status:5e8bb5648d11184014e50b8a6d9c867f
+k8s:tests:582011a96a41d6ed3d8b55be720f7e2f
+k8s:upload-k8s-image:21bd83464db4ebc8b8c3e747746e84b9
+k8s:d65b5534dd22fbe27b304070b59d1c4a
+prod-image:build:14de8109f51fddcc27daabeeef6dc10d
+prod-image:pull:3abea52c86bc46bae112c04e45bf15a9
+prod-image:verify:3362d21e2a04d7acb2867f437f602d54
+prod-image:b9f104929974bf6ac4940f912c45e94a
+release-management:generate-constraints:23b2c7e92237908271d5787ee838ead7
 release-management:prepare-airflow-package:cff9d88ca313db10f3cc464c6798f6be
 release-management:prepare-provider-documentation:bc6da01ccff04fdee4f0f0de10944a4c
 release-management:prepare-provider-packages:ef7084750991a72a1594537c6bce8efb
-release-management:release-prod-images:8858fe5a13989c7c65a79dc97a880928
+release-management:release-prod-images:fee8568f6f2aefd82dab2a675dc26759
 release-management:verify-provider-packages:797e60067fc4611112527de808b5c1c1
-release-management:e6225d878ab2459d9e832702e5a37fb4
+release-management:82ca7a6ec93a12f5f40f368a87cf58a3
 setup:autocomplete:9787fd9ac963e3c29e54ac53ec2b9565
-setup:config:92653afc11889e1b78e3a2e38f41107f
+setup:config:f1c842220550d2b16032a4dd0c6894ae
 setup:regenerate-command-images:e4eb184bbc0c54683eaf38972c31870d
 setup:self-upgrade:d02f70c7a230eae3463ceec2056b63fa
 setup:version:d11da4c17a23179830079b646160149c
-setup:a6bccf7a73bfac49ce5b027c8900ea61
-shell:557ee58e7c70af052f5ea7a173b39137
-start-airflow:b089191910e9c3f2ffd9c0079cdf38c6
+setup:1ec602b7b53e788687cdc85cd2d28eb2
+shell:73bdc84039673d3e0a0d442e68080166
+start-airflow:83742bfbd2e71b0fd8f803e046a3f595
 static-checks:8acd42315c78e91537634a54095ee3e6
 stop:8ebd8a42f1003495d37b884de5ac7ce6
-testing:docker-compose-tests:70c744105ff61025f25d93a2f1f427c2
+testing:docker-compose-tests:370a90151e2fd63d3a27ae70ae350c71
 testing:helm-tests:35f7ecef86fd9c9dbad73f20ebd64496
-testing:tests:dbca53292ca6b3fbd068a62d6478d6d7
-testing:7abaa71b4c100242212ef2c0005c1a30
+testing:tests:0324bdf7a770e7bc1d1398756d93e294
+testing:223a9679ba9d56b458229143aa3f5a92
diff --git a/images/breeze/output-commands.svg b/images/breeze/output-commands.svg
index 9986e417f3..3f29a134e9 100644
--- a/images/breeze/output-commands.svg
+++ b/images/breeze/output-commands.svg
@@ -1,4 +1,4 @@
-<svg class="rich-terminal" viewBox="0 0 1482 1148.0" xmlns="http://www.w3.org/2000/svg">
+<svg class="rich-terminal" viewBox="0 0 1482 1172.3999999999999" xmlns="http://www.w3.org/2000/svg">
     <!-- Generated with Rich https://www.textualize.io -->
     <style>
 
@@ -19,221 +19,225 @@
         font-weight: 700;
     }
 
-    .terminal-4235104576-matrix {
+    .terminal-406889625-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-4235104576-title {
+    .terminal-406889625-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-4235104576-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-4235104576-r2 { fill: #c5c8c6 }
-.terminal-4235104576-r3 { fill: #d0b344;font-weight: bold }
-.terminal-4235104576-r4 { fill: #868887 }
-.terminal-4235104576-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-4235104576-r6 { fill: #98a84b;font-weight: bold }
-.terminal-4235104576-r7 { fill: #8d7b39 }
+    .terminal-406889625-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-406889625-r2 { fill: #c5c8c6 }
+.terminal-406889625-r3 { fill: #d0b344;font-weight: bold }
+.terminal-406889625-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-406889625-r5 { fill: #868887 }
+.terminal-406889625-r6 { fill: #98a84b;font-weight: bold }
+.terminal-406889625-r7 { fill: #8d7b39 }
     </style>
 
     <defs>
-    <clipPath id="terminal-4235104576-clip-terminal">
-      <rect x="0" y="0" width="1463.0" height="1097.0" />
+    <clipPath id="terminal-406889625-clip-terminal">
+      <rect x="0" y="0" width="1463.0" height="1121.3999999999999" />
     </clipPath>
-    <clipPath id="terminal-4235104576-line-0">
+    <clipPath id="terminal-406889625-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-1">
+<clipPath id="terminal-406889625-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-2">
+<clipPath id="terminal-406889625-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-3">
+<clipPath id="terminal-406889625-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-4">
+<clipPath id="terminal-406889625-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-5">
+<clipPath id="terminal-406889625-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-6">
+<clipPath id="terminal-406889625-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-7">
+<clipPath id="terminal-406889625-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-8">
+<clipPath id="terminal-406889625-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-9">
+<clipPath id="terminal-406889625-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-10">
+<clipPath id="terminal-406889625-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-11">
+<clipPath id="terminal-406889625-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-12">
+<clipPath id="terminal-406889625-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-13">
+<clipPath id="terminal-406889625-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-14">
+<clipPath id="terminal-406889625-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-15">
+<clipPath id="terminal-406889625-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-16">
+<clipPath id="terminal-406889625-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-17">
+<clipPath id="terminal-406889625-line-17">
     <rect x="0" y="416.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-18">
+<clipPath id="terminal-406889625-line-18">
     <rect x="0" y="440.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-19">
+<clipPath id="terminal-406889625-line-19">
     <rect x="0" y="465.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-20">
+<clipPath id="terminal-406889625-line-20">
     <rect x="0" y="489.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-21">
+<clipPath id="terminal-406889625-line-21">
     <rect x="0" y="513.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-22">
+<clipPath id="terminal-406889625-line-22">
     <rect x="0" y="538.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-23">
+<clipPath id="terminal-406889625-line-23">
     <rect x="0" y="562.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-24">
+<clipPath id="terminal-406889625-line-24">
     <rect x="0" y="587.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-25">
+<clipPath id="terminal-406889625-line-25">
     <rect x="0" y="611.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-26">
+<clipPath id="terminal-406889625-line-26">
     <rect x="0" y="635.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-27">
+<clipPath id="terminal-406889625-line-27">
     <rect x="0" y="660.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-28">
+<clipPath id="terminal-406889625-line-28">
     <rect x="0" y="684.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-29">
+<clipPath id="terminal-406889625-line-29">
     <rect x="0" y="709.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-30">
+<clipPath id="terminal-406889625-line-30">
     <rect x="0" y="733.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-31">
+<clipPath id="terminal-406889625-line-31">
     <rect x="0" y="757.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-32">
+<clipPath id="terminal-406889625-line-32">
     <rect x="0" y="782.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-33">
+<clipPath id="terminal-406889625-line-33">
     <rect x="0" y="806.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-34">
+<clipPath id="terminal-406889625-line-34">
     <rect x="0" y="831.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-35">
+<clipPath id="terminal-406889625-line-35">
     <rect x="0" y="855.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-36">
+<clipPath id="terminal-406889625-line-36">
     <rect x="0" y="879.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-37">
+<clipPath id="terminal-406889625-line-37">
     <rect x="0" y="904.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-38">
+<clipPath id="terminal-406889625-line-38">
     <rect x="0" y="928.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-39">
+<clipPath id="terminal-406889625-line-39">
     <rect x="0" y="953.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-40">
+<clipPath id="terminal-406889625-line-40">
     <rect x="0" y="977.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-41">
+<clipPath id="terminal-406889625-line-41">
     <rect x="0" y="1001.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-42">
+<clipPath id="terminal-406889625-line-42">
     <rect x="0" y="1026.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4235104576-line-43">
+<clipPath id="terminal-406889625-line-43">
     <rect x="0" y="1050.7" width="1464" height="24.65"/>
             </clipPath>
+<clipPath id="terminal-406889625-line-44">
+    <rect x="0" y="1075.1" width="1464" height="24.65"/>
+            </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="1146" rx="8"/><text class="terminal-4235104576-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Breeze&#160;commands</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="1170.4" rx="8"/><text class="terminal-406889625-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Breeze&#160;commands</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-4235104576-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-406889625-clip-terminal)">
     
-    <g class="terminal-4235104576-matrix">
-    <text class="terminal-4235104576-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-4235104576-line-0)">
-</text><text class="terminal-4235104576-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-4235104576-line-1)">Usage:&#160;</text><text class="terminal-4235104576-r1" x="97.6" y="44.4" textLength="414.8" clip-path="url(#terminal-4235104576-line-1)">breeze&#160;[OPTIONS]&#160;COMMAND&#160;[ARGS]...</text><text class="terminal-4235104576-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-4235104576-line-1)">
-</text><text class="terminal-4235104576-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-4235104576-line-2)">
-</text><text class="terminal-4235104576-r4" x="0" y="93.2" textLength="24.4" clip-path="url(#terminal-4235104576-line-3)">╭─</text><text class="terminal-4235104576-r4" x="24.4" y="93.2" textLength="1415.2" clip-path="url(#terminal-4235104576-line-3)">&#160;Basic&#160;flags&#160;───────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-4235104576-r4" x="1439.6" y="93.2" textLength="24.4" clip-path="url(#terminal-423 [...]
-</text><text class="terminal-4235104576-r4" x="0" y="117.6" textLength="12.2" clip-path="url(#terminal-4235104576-line-4)">│</text><text class="terminal-4235104576-r5" x="24.4" y="117.6" textLength="12.2" clip-path="url(#terminal-4235104576-line-4)">-</text><text class="terminal-4235104576-r5" x="36.6" y="117.6" textLength="85.4" clip-path="url(#terminal-4235104576-line-4)">-python</text><text class="terminal-4235104576-r6" x="305" y="117.6" textLength="24.4" clip-path="url(#terminal-423 [...]
-</text><text class="terminal-4235104576-r4" x="0" y="142" textLength="12.2" clip-path="url(#terminal-4235104576-line-5)">│</text><text class="terminal-4235104576-r4" x="353.8" y="142" textLength="732" clip-path="url(#terminal-4235104576-line-5)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-4235104576-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-4235104576-line-6)">│</text><text class="terminal-4235104576-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-4235104576-line-6)">-</text><text class="terminal-4235104576-r5" x="36.6" y="166.4" textLength="97.6" clip-path="url(#terminal-4235104576-line-6)">-backend</text><text class="terminal-4235104576-r6" x="305" y="166.4" textLength="24.4" clip-path="url(#terminal-42 [...]
-</text><text class="terminal-4235104576-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-4235104576-line-7)">│</text><text class="terminal-4235104576-r5" x="24.4" y="190.8" textLength="12.2" clip-path="url(#terminal-4235104576-line-7)">-</text><text class="terminal-4235104576-r5" x="36.6" y="190.8" textLength="109.8" clip-path="url(#terminal-4235104576-line-7)">-postgres</text><text class="terminal-4235104576-r5" x="146.4" y="190.8" textLength="97.6" clip-path="url(#termina [...]
-</text><text class="terminal-4235104576-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-4235104576-line-8)">│</text><text class="terminal-4235104576-r5" x="24.4" y="215.2" textLength="12.2" clip-path="url(#terminal-4235104576-line-8)">-</text><text class="terminal-4235104576-r5" x="36.6" y="215.2" textLength="73.2" clip-path="url(#terminal-4235104576-line-8)">-mysql</text><text class="terminal-4235104576-r5" x="109.8" y="215.2" textLength="97.6" clip-path="url(#terminal-42 [...]
-</text><text class="terminal-4235104576-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-4235104576-line-9)">│</text><text class="terminal-4235104576-r5" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-4235104576-line-9)">-</text><text class="terminal-4235104576-r5" x="36.6" y="239.6" textLength="73.2" clip-path="url(#terminal-4235104576-line-9)">-mssql</text><text class="terminal-4235104576-r5" x="109.8" y="239.6" textLength="97.6" clip-path="url(#terminal-42 [...]
-</text><text class="terminal-4235104576-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-4235104576-line-10)">│</text><text class="terminal-4235104576-r5" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-4235104576-line-10)">-</text><text class="terminal-4235104576-r5" x="36.6" y="264" textLength="146.4" clip-path="url(#terminal-4235104576-line-10)">-integration</text><text class="terminal-4235104576-r2" x="353.8" y="264" textLength="1085.8" clip-path="url(#termina [...]
-</text><text class="terminal-4235104576-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-4235104576-line-11)">│</text><text class="terminal-4235104576-r7" x="353.8" y="288.4" textLength="1085.8" clip-path="url(#terminal-4235104576-line-11)">(cassandra&#160;|&#160;kerberos&#160;|&#160;mongo&#160;|&#160;openldap&#160;|&#160;pinot&#160;|&#160;rabbitmq&#160;|&#160;redis&#160;|&#160;statsd&#160;|&#160;trino&#160;|&#160;&#160;&#160;</text><text class="terminal-4235104576-r4" x="1 [...]
-</text><text class="terminal-4235104576-r4" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-4235104576-line-12)">│</text><text class="terminal-4235104576-r7" x="353.8" y="312.8" textLength="1085.8" clip-path="url(#terminal-4235104576-line-12)">all)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-4235104576-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-4235104576-line-13)">│</text><text class="terminal-4235104576-r5" x="24.4" y="337.2" textLength="12.2" clip-path="url(#terminal-4235104576-line-13)">-</text><text class="terminal-4235104576-r5" x="36.6" y="337.2" textLength="97.6" clip-path="url(#terminal-4235104576-line-13)">-forward</text><text class="terminal-4235104576-r5" x="134.2" y="337.2" textLength="146.4" clip-path="url(#termi [...]
-</text><text class="terminal-4235104576-r4" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-4235104576-line-14)">│</text><text class="terminal-4235104576-r5" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-4235104576-line-14)">-</text><text class="terminal-4235104576-r5" x="36.6" y="361.6" textLength="36.6" clip-path="url(#terminal-4235104576-line-14)">-db</text><text class="terminal-4235104576-r5" x="73.2" y="361.6" textLength="73.2" clip-path="url(#terminal-423 [...]
-</text><text class="terminal-4235104576-r4" x="0" y="386" textLength="1464" clip-path="url(#terminal-4235104576-line-15)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-4235104576-r2" x="1464" y="386" textLength="12.2" clip-path="url(#terminal-4235104576-line-15)">
-</text><text class="terminal-4235104576-r4" x="0" y="410.4" textLength="24.4" clip-path="url(#terminal-4235104576-line-16)">╭─</text><text class="terminal-4235104576-r4" x="24.4" y="410.4" textLength="1415.2" clip-path="url(#terminal-4235104576-line-16)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-4235104576-r4" x="1439.6" y="410.4" textLength="24.4" clip-path="url(#termina [...]
-</text><text class="terminal-4235104576-r4" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-4235104576-line-17)">│</text><text class="terminal-4235104576-r5" x="24.4" y="434.8" textLength="12.2" clip-path="url(#terminal-4235104576-line-17)">-</text><text class="terminal-4235104576-r5" x="36.6" y="434.8" textLength="97.6" clip-path="url(#terminal-4235104576-line-17)">-verbose</text><text class="terminal-4235104576-r6" x="280.6" y="434.8" textLength="24.4" clip-path="url(#termin [...]
-</text><text class="terminal-4235104576-r4" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-4235104576-line-18)">│</text><text class="terminal-4235104576-r5" x="24.4" y="459.2" textLength="12.2" clip-path="url(#terminal-4235104576-line-18)">-</text><text class="terminal-4235104576-r5" x="36.6" y="459.2" textLength="48.8" clip-path="url(#terminal-4235104576-line-18)">-dry</text><text class="terminal-4235104576-r5" x="85.4" y="459.2" textLength="48.8" clip-path="url(#terminal-42 [...]
-</text><text class="terminal-4235104576-r4" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-4235104576-line-19)">│</text><text class="terminal-4235104576-r5" x="24.4" y="483.6" textLength="12.2" clip-path="url(#terminal-4235104576-line-19)">-</text><text class="terminal-4235104576-r5" x="36.6" y="483.6" textLength="85.4" clip-path="url(#terminal-4235104576-line-19)">-github</text><text class="terminal-4235104576-r5" x="122" y="483.6" textLength="134.2" clip-path="url(#terminal [...]
-</text><text class="terminal-4235104576-r4" x="0" y="508" textLength="12.2" clip-path="url(#terminal-4235104576-line-20)">│</text><text class="terminal-4235104576-r5" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-4235104576-line-20)">-</text><text class="terminal-4235104576-r5" x="36.6" y="508" textLength="85.4" clip-path="url(#terminal-4235104576-line-20)">-answer</text><text class="terminal-4235104576-r6" x="280.6" y="508" textLength="24.4" clip-path="url(#terminal-423510 [...]
-</text><text class="terminal-4235104576-r4" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-4235104576-line-21)">│</text><text class="terminal-4235104576-r5" x="24.4" y="532.4" textLength="12.2" clip-path="url(#terminal-4235104576-line-21)">-</text><text class="terminal-4235104576-r5" x="36.6" y="532.4" textLength="48.8" clip-path="url(#terminal-4235104576-line-21)">-max</text><text class="terminal-4235104576-r5" x="85.4" y="532.4" textLength="61" clip-path="url(#terminal-4235 [...]
-</text><text class="terminal-4235104576-r4" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-4235104576-line-22)">│</text><text class="terminal-4235104576-r7" x="329.4" y="556.8" textLength="1049.2" clip-path="url(#terminal-4235104576-line-22)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-4235104576-r4" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-4235104576-line-23)">│</text><text class="terminal-4235104576-r5" x="24.4" y="581.2" textLength="12.2" clip-path="url(#terminal-4235104576-line-23)">-</text><text class="terminal-4235104576-r5" x="36.6" y="581.2" textLength="61" clip-path="url(#terminal-4235104576-line-23)">-help</text><text class="terminal-4235104576-r6" x="280.6" y="581.2" textLength="24.4" clip-path="url(#terminal-42 [...]
-</text><text class="terminal-4235104576-r4" x="0" y="605.6" textLength="1464" clip-path="url(#terminal-4235104576-line-24)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-4235104576-r2" x="1464" y="605.6" textLength="12.2" clip-path="url(#terminal-4235104576-line-24)">
-</text><text class="terminal-4235104576-r4" x="0" y="630" textLength="24.4" clip-path="url(#terminal-4235104576-line-25)">╭─</text><text class="terminal-4235104576-r4" x="24.4" y="630" textLength="1415.2" clip-path="url(#terminal-4235104576-line-25)">&#160;Basic&#160;developer&#160;commands&#160;──────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-4235104576-r4" x="1439.6" y="630" textLength="24.4" clip-path="url(#terminal [...]
-</text><text class="terminal-4235104576-r4" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-4235104576-line-26)">│</text><text class="terminal-4235104576-r5" x="24.4" y="654.4" textLength="219.6" clip-path="url(#terminal-4235104576-line-26)">start-airflow&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-4235104576-r2" x="268.4" y="654.4" textLength="1171.2" clip-path="url(#terminal-4235104576-line-26)">Enter&#160;breeze&#160;environment&#160;and&#160;starts&#160;all&# [...]
-</text><text class="terminal-4235104576-r4" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-4235104576-line-27)">│</text><text class="terminal-4235104576-r2" x="268.4" y="678.8" textLength="1171.2" clip-path="url(#terminal-4235104576-line-27)">if&#160;contents&#160;of&#160;www&#160;directory&#160;changed.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-4235104576-r4" x="0" y="703.2" textLength="12.2" clip-path="url(#terminal-4235104576-line-28)">│</text><text class="terminal-4235104576-r5" x="24.4" y="703.2" textLength="219.6" clip-path="url(#terminal-4235104576-line-28)">static-checks&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-4235104576-r2" x="268.4" y="703.2" textLength="1171.2" clip-path="url(#terminal-4235104576-line-28)">Run&#160;static&#160;checks.&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
-</text><text class="terminal-4235104576-r4" x="0" y="727.6" textLength="12.2" clip-path="url(#terminal-4235104576-line-29)">│</text><text class="terminal-4235104576-r5" x="24.4" y="727.6" textLength="219.6" clip-path="url(#terminal-4235104576-line-29)">build-docs&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-4235104576-r2" x="268.4" y="727.6" textLength="1171.2" clip-path="url(#terminal-4235104576-line-29)">Build&#160;documentation&#160;in&#160;the&#160;cont [...]
-</text><text class="terminal-4235104576-r4" x="0" y="752" textLength="12.2" clip-path="url(#terminal-4235104576-line-30)">│</text><text class="terminal-4235104576-r5" x="24.4" y="752" textLength="219.6" clip-path="url(#terminal-4235104576-line-30)">stop&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-4235104576-r2" x="268.4" y="752" textLength="1171.2" clip-path="url(#terminal-4235104576-line-30)">Stop&#160;running&#160;bree [...]
-</text><text class="terminal-4235104576-r4" x="0" y="776.4" textLength="12.2" clip-path="url(#terminal-4235104576-line-31)">│</text><text class="terminal-4235104576-r5" x="24.4" y="776.4" textLength="219.6" clip-path="url(#terminal-4235104576-line-31)">shell&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-4235104576-r2" x="268.4" y="776.4" textLength="1171.2" clip-path="url(#terminal-4235104576-line-31)">Enter&#160;breeze&#160;env [...]
-</text><text class="terminal-4235104576-r4" x="0" y="800.8" textLength="12.2" clip-path="url(#terminal-4235104576-line-32)">│</text><text class="terminal-4235104576-r5" x="24.4" y="800.8" textLength="219.6" clip-path="url(#terminal-4235104576-line-32)">exec&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-4235104576-r2" x="268.4" y="800.8" textLength="1171.2" clip-path="url(#terminal-4235104576-line-32)">Joins&#160;the&#160;i [...]
-</text><text class="terminal-4235104576-r4" x="0" y="825.2" textLength="12.2" clip-path="url(#terminal-4235104576-line-33)">│</text><text class="terminal-4235104576-r5" x="24.4" y="825.2" textLength="219.6" clip-path="url(#terminal-4235104576-line-33)">compile-www-assets</text><text class="terminal-4235104576-r2" x="268.4" y="825.2" textLength="1171.2" clip-path="url(#terminal-4235104576-line-33)">Compiles&#160;www&#160;assets.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-4235104576-r4" x="0" y="849.6" textLength="12.2" clip-path="url(#terminal-4235104576-line-34)">│</text><text class="terminal-4235104576-r5" x="24.4" y="849.6" textLength="219.6" clip-path="url(#terminal-4235104576-line-34)">cleanup&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-4235104576-r2" x="268.4" y="849.6" textLength="1171.2" clip-path="url(#terminal-4235104576-line-34)">Cleans&#160;the&#160;cache&#160;of&# [...]
-</text><text class="terminal-4235104576-r4" x="0" y="874" textLength="1464" clip-path="url(#terminal-4235104576-line-35)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-4235104576-r2" x="1464" y="874" textLength="12.2" clip-path="url(#terminal-4235104576-line-35)">
-</text><text class="terminal-4235104576-r4" x="0" y="898.4" textLength="24.4" clip-path="url(#terminal-4235104576-line-36)">╭─</text><text class="terminal-4235104576-r4" x="24.4" y="898.4" textLength="1415.2" clip-path="url(#terminal-4235104576-line-36)">&#160;Advanced&#160;command&#160;groups&#160;───────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-4235104576-r4" x="1439.6" y="898.4" textLength="24.4" clip-path="url(#te [...]
-</text><text class="terminal-4235104576-r4" x="0" y="922.8" textLength="12.2" clip-path="url(#terminal-4235104576-line-37)">│</text><text class="terminal-4235104576-r5" x="24.4" y="922.8" textLength="280.6" clip-path="url(#terminal-4235104576-line-37)">testing&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-4235104576-r2" x="329.4" y="922.8" textLength="1110.2" clip-path="url(#terminal-4235104576-line-37)">Tools& [...]
-</text><text class="terminal-4235104576-r4" x="0" y="947.2" textLength="12.2" clip-path="url(#terminal-4235104576-line-38)">│</text><text class="terminal-4235104576-r5" x="24.4" y="947.2" textLength="280.6" clip-path="url(#terminal-4235104576-line-38)">ci-image&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-4235104576-r2" x="329.4" y="947.2" textLength="1110.2" clip-path="url(#terminal-4235104576-line-38)">Tools&#160; [...]
-</text><text class="terminal-4235104576-r4" x="0" y="971.6" textLength="12.2" clip-path="url(#terminal-4235104576-line-39)">│</text><text class="terminal-4235104576-r5" x="24.4" y="971.6" textLength="280.6" clip-path="url(#terminal-4235104576-line-39)">k8s&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-4235104576-r2" x="329.4" y="971.6" textLength="1110.2" clip-path="url(#terminal-4235104 [...]
-</text><text class="terminal-4235104576-r4" x="0" y="996" textLength="12.2" clip-path="url(#terminal-4235104576-line-40)">│</text><text class="terminal-4235104576-r5" x="24.4" y="996" textLength="280.6" clip-path="url(#terminal-4235104576-line-40)">prod-image&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-4235104576-r2" x="329.4" y="996" textLength="1110.2" clip-path="url(#terminal-4235104576-line-40)">Tools&#160;that&#160;develo [...]
-</text><text class="terminal-4235104576-r4" x="0" y="1020.4" textLength="12.2" clip-path="url(#terminal-4235104576-line-41)">│</text><text class="terminal-4235104576-r5" x="24.4" y="1020.4" textLength="280.6" clip-path="url(#terminal-4235104576-line-41)">setup&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-4235104576-r2" x="329.4" y="1020.4" textLength="1110.2" clip-path="url(#terminal-4235104576-lin [...]
-</text><text class="terminal-4235104576-r4" x="0" y="1044.8" textLength="12.2" clip-path="url(#terminal-4235104576-line-42)">│</text><text class="terminal-4235104576-r5" x="24.4" y="1044.8" textLength="280.6" clip-path="url(#terminal-4235104576-line-42)">release-management&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-4235104576-r2" x="329.4" y="1044.8" textLength="1110.2" clip-path="url(#terminal-4235104576-line-42)">Tools&#160;that&#160;release&#160;managers&#160;can&#160;u [...]
-</text><text class="terminal-4235104576-r4" x="0" y="1069.2" textLength="12.2" clip-path="url(#terminal-4235104576-line-43)">│</text><text class="terminal-4235104576-r5" x="24.4" y="1069.2" textLength="280.6" clip-path="url(#terminal-4235104576-line-43)">ci&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-4235104576-r2" x="329.4" y="1069.2" textLength="1110.2" clip-path="url(#terminal [...]
-</text><text class="terminal-4235104576-r4" x="0" y="1093.6" textLength="1464" clip-path="url(#terminal-4235104576-line-44)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-4235104576-r2" x="1464" y="1093.6" textLength="12.2" clip-path="url(#terminal-4235104576-line-44)">
+    <g class="terminal-406889625-matrix">
+    <text class="terminal-406889625-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-406889625-line-0)">
+</text><text class="terminal-406889625-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-406889625-line-1)">Usage:&#160;</text><text class="terminal-406889625-r1" x="97.6" y="44.4" textLength="97.6" clip-path="url(#terminal-406889625-line-1)">breeze&#160;[</text><text class="terminal-406889625-r4" x="195.2" y="44.4" textLength="85.4" clip-path="url(#terminal-406889625-line-1)">OPTIONS</text><text class="terminal-406889625-r1" x="280.6" y="44.4" textLength="24.4" clip-path= [...]
+</text><text class="terminal-406889625-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-406889625-line-2)">
+</text><text class="terminal-406889625-r5" x="0" y="93.2" textLength="24.4" clip-path="url(#terminal-406889625-line-3)">╭─</text><text class="terminal-406889625-r5" x="24.4" y="93.2" textLength="1415.2" clip-path="url(#terminal-406889625-line-3)">&#160;Basic&#160;flags&#160;───────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-406889625-r5" x="1439.6" y="93.2" textLength="24.4" clip-path="url(#terminal-40688962 [...]
+</text><text class="terminal-406889625-r5" x="0" y="117.6" textLength="12.2" clip-path="url(#terminal-406889625-line-4)">│</text><text class="terminal-406889625-r4" x="24.4" y="117.6" textLength="12.2" clip-path="url(#terminal-406889625-line-4)">-</text><text class="terminal-406889625-r4" x="36.6" y="117.6" textLength="85.4" clip-path="url(#terminal-406889625-line-4)">-python</text><text class="terminal-406889625-r6" x="305" y="117.6" textLength="24.4" clip-path="url(#terminal-406889625- [...]
+</text><text class="terminal-406889625-r5" x="0" y="142" textLength="12.2" clip-path="url(#terminal-406889625-line-5)">│</text><text class="terminal-406889625-r7" x="353.8" y="142" textLength="732" clip-path="url(#terminal-406889625-line-5)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10&#160;|&#160;3.11)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><t [...]
+</text><text class="terminal-406889625-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-406889625-line-6)">│</text><text class="terminal-406889625-r5" x="353.8" y="166.4" textLength="732" clip-path="url(#terminal-406889625-line-6)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-406889625-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-406889625-line-7)">│</text><text class="terminal-406889625-r4" x="24.4" y="190.8" textLength="12.2" clip-path="url(#terminal-406889625-line-7)">-</text><text class="terminal-406889625-r4" x="36.6" y="190.8" textLength="97.6" clip-path="url(#terminal-406889625-line-7)">-backend</text><text class="terminal-406889625-r6" x="305" y="190.8" textLength="24.4" clip-path="url(#terminal-406889625 [...]
+</text><text class="terminal-406889625-r5" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-406889625-line-8)">│</text><text class="terminal-406889625-r4" x="24.4" y="215.2" textLength="12.2" clip-path="url(#terminal-406889625-line-8)">-</text><text class="terminal-406889625-r4" x="36.6" y="215.2" textLength="109.8" clip-path="url(#terminal-406889625-line-8)">-postgres</text><text class="terminal-406889625-r4" x="146.4" y="215.2" textLength="97.6" clip-path="url(#terminal-40688 [...]
+</text><text class="terminal-406889625-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-406889625-line-9)">│</text><text class="terminal-406889625-r4" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-406889625-line-9)">-</text><text class="terminal-406889625-r4" x="36.6" y="239.6" textLength="73.2" clip-path="url(#terminal-406889625-line-9)">-mysql</text><text class="terminal-406889625-r4" x="109.8" y="239.6" textLength="97.6" clip-path="url(#terminal-406889625 [...]
+</text><text class="terminal-406889625-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-406889625-line-10)">│</text><text class="terminal-406889625-r4" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-406889625-line-10)">-</text><text class="terminal-406889625-r4" x="36.6" y="264" textLength="73.2" clip-path="url(#terminal-406889625-line-10)">-mssql</text><text class="terminal-406889625-r4" x="109.8" y="264" textLength="97.6" clip-path="url(#terminal-406889625-line [...]
+</text><text class="terminal-406889625-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-406889625-line-11)">│</text><text class="terminal-406889625-r4" x="24.4" y="288.4" textLength="12.2" clip-path="url(#terminal-406889625-line-11)">-</text><text class="terminal-406889625-r4" x="36.6" y="288.4" textLength="146.4" clip-path="url(#terminal-406889625-line-11)">-integration</text><text class="terminal-406889625-r2" x="353.8" y="288.4" textLength="1085.8" clip-path="url(#termin [...]
+</text><text class="terminal-406889625-r5" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-406889625-line-12)">│</text><text class="terminal-406889625-r7" x="353.8" y="312.8" textLength="1085.8" clip-path="url(#terminal-406889625-line-12)">(cassandra&#160;|&#160;kerberos&#160;|&#160;mongo&#160;|&#160;openldap&#160;|&#160;pinot&#160;|&#160;rabbitmq&#160;|&#160;redis&#160;|&#160;statsd&#160;|&#160;trino&#160;|&#160;&#160;&#160;</text><text class="terminal-406889625-r5" x="1451.8 [...]
+</text><text class="terminal-406889625-r5" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-406889625-line-13)">│</text><text class="terminal-406889625-r7" x="353.8" y="337.2" textLength="1085.8" clip-path="url(#terminal-406889625-line-13)">all)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
+</text><text class="terminal-406889625-r5" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-406889625-line-14)">│</text><text class="terminal-406889625-r4" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-406889625-line-14)">-</text><text class="terminal-406889625-r4" x="36.6" y="361.6" textLength="97.6" clip-path="url(#terminal-406889625-line-14)">-forward</text><text class="terminal-406889625-r4" x="134.2" y="361.6" textLength="146.4" clip-path="url(#terminal-406 [...]
+</text><text class="terminal-406889625-r5" x="0" y="386" textLength="12.2" clip-path="url(#terminal-406889625-line-15)">│</text><text class="terminal-406889625-r4" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-406889625-line-15)">-</text><text class="terminal-406889625-r4" x="36.6" y="386" textLength="36.6" clip-path="url(#terminal-406889625-line-15)">-db</text><text class="terminal-406889625-r4" x="73.2" y="386" textLength="73.2" clip-path="url(#terminal-406889625-line-15) [...]
+</text><text class="terminal-406889625-r5" x="0" y="410.4" textLength="1464" clip-path="url(#terminal-406889625-line-16)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-406889625-r2" x="1464" y="410.4" textLength="12.2" clip-path="url(#terminal-406889625-line-16)">
+</text><text class="terminal-406889625-r5" x="0" y="434.8" textLength="24.4" clip-path="url(#terminal-406889625-line-17)">╭─</text><text class="terminal-406889625-r5" x="24.4" y="434.8" textLength="1415.2" clip-path="url(#terminal-406889625-line-17)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-406889625-r5" x="1439.6" y="434.8" textLength="24.4" clip-path="url(#terminal-406 [...]
+</text><text class="terminal-406889625-r5" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-406889625-line-18)">│</text><text class="terminal-406889625-r4" x="24.4" y="459.2" textLength="12.2" clip-path="url(#terminal-406889625-line-18)">-</text><text class="terminal-406889625-r4" x="36.6" y="459.2" textLength="97.6" clip-path="url(#terminal-406889625-line-18)">-verbose</text><text class="terminal-406889625-r6" x="280.6" y="459.2" textLength="24.4" clip-path="url(#terminal-4068 [...]
+</text><text class="terminal-406889625-r5" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-406889625-line-19)">│</text><text class="terminal-406889625-r4" x="24.4" y="483.6" textLength="12.2" clip-path="url(#terminal-406889625-line-19)">-</text><text class="terminal-406889625-r4" x="36.6" y="483.6" textLength="48.8" clip-path="url(#terminal-406889625-line-19)">-dry</text><text class="terminal-406889625-r4" x="85.4" y="483.6" textLength="48.8" clip-path="url(#terminal-406889625 [...]
+</text><text class="terminal-406889625-r5" x="0" y="508" textLength="12.2" clip-path="url(#terminal-406889625-line-20)">│</text><text class="terminal-406889625-r4" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-406889625-line-20)">-</text><text class="terminal-406889625-r4" x="36.6" y="508" textLength="85.4" clip-path="url(#terminal-406889625-line-20)">-github</text><text class="terminal-406889625-r4" x="122" y="508" textLength="134.2" clip-path="url(#terminal-406889625-line [...]
+</text><text class="terminal-406889625-r5" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-406889625-line-21)">│</text><text class="terminal-406889625-r4" x="24.4" y="532.4" textLength="12.2" clip-path="url(#terminal-406889625-line-21)">-</text><text class="terminal-406889625-r4" x="36.6" y="532.4" textLength="85.4" clip-path="url(#terminal-406889625-line-21)">-answer</text><text class="terminal-406889625-r6" x="280.6" y="532.4" textLength="24.4" clip-path="url(#terminal-40688 [...]
+</text><text class="terminal-406889625-r5" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-406889625-line-22)">│</text><text class="terminal-406889625-r4" x="24.4" y="556.8" textLength="12.2" clip-path="url(#terminal-406889625-line-22)">-</text><text class="terminal-406889625-r4" x="36.6" y="556.8" textLength="48.8" clip-path="url(#terminal-406889625-line-22)">-max</text><text class="terminal-406889625-r4" x="85.4" y="556.8" textLength="61" clip-path="url(#terminal-406889625-l [...]
+</text><text class="terminal-406889625-r5" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-406889625-line-23)">│</text><text class="terminal-406889625-r7" x="329.4" y="581.2" textLength="1049.2" clip-path="url(#terminal-406889625-line-23)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-406889625-r5" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-406889625-line-24)">│</text><text class="terminal-406889625-r4" x="24.4" y="605.6" textLength="12.2" clip-path="url(#terminal-406889625-line-24)">-</text><text class="terminal-406889625-r4" x="36.6" y="605.6" textLength="61" clip-path="url(#terminal-406889625-line-24)">-help</text><text class="terminal-406889625-r6" x="280.6" y="605.6" textLength="24.4" clip-path="url(#terminal-406889625 [...]
+</text><text class="terminal-406889625-r5" x="0" y="630" textLength="1464" clip-path="url(#terminal-406889625-line-25)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-406889625-r2" x="1464" y="630" textLength="12.2" clip-path="url(#terminal-406889625-line-25)">
+</text><text class="terminal-406889625-r5" x="0" y="654.4" textLength="24.4" clip-path="url(#terminal-406889625-line-26)">╭─</text><text class="terminal-406889625-r5" x="24.4" y="654.4" textLength="1415.2" clip-path="url(#terminal-406889625-line-26)">&#160;Basic&#160;developer&#160;commands&#160;──────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-406889625-r5" x="1439.6" y="654.4" textLength="24.4" clip-path="url(#termina [...]
+</text><text class="terminal-406889625-r5" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-406889625-line-27)">│</text><text class="terminal-406889625-r4" x="24.4" y="678.8" textLength="219.6" clip-path="url(#terminal-406889625-line-27)">start-airflow&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-406889625-r2" x="268.4" y="678.8" textLength="1171.2" clip-path="url(#terminal-406889625-line-27)">Enter&#160;breeze&#160;environment&#160;and&#160;starts&#160;all&#160;Ai [...]
+</text><text class="terminal-406889625-r5" x="0" y="703.2" textLength="12.2" clip-path="url(#terminal-406889625-line-28)">│</text><text class="terminal-406889625-r2" x="268.4" y="703.2" textLength="1171.2" clip-path="url(#terminal-406889625-line-28)">if&#160;contents&#160;of&#160;www&#160;directory&#160;changed.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-406889625-r5" x="0" y="727.6" textLength="12.2" clip-path="url(#terminal-406889625-line-29)">│</text><text class="terminal-406889625-r4" x="24.4" y="727.6" textLength="219.6" clip-path="url(#terminal-406889625-line-29)">static-checks&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-406889625-r2" x="268.4" y="727.6" textLength="1171.2" clip-path="url(#terminal-406889625-line-29)">Run&#160;static&#160;checks.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
+</text><text class="terminal-406889625-r5" x="0" y="752" textLength="12.2" clip-path="url(#terminal-406889625-line-30)">│</text><text class="terminal-406889625-r4" x="24.4" y="752" textLength="219.6" clip-path="url(#terminal-406889625-line-30)">build-docs&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-406889625-r2" x="268.4" y="752" textLength="1171.2" clip-path="url(#terminal-406889625-line-30)">Build&#160;documentation&#160;in&#160;the&#160;container.&#160; [...]
+</text><text class="terminal-406889625-r5" x="0" y="776.4" textLength="12.2" clip-path="url(#terminal-406889625-line-31)">│</text><text class="terminal-406889625-r4" x="24.4" y="776.4" textLength="219.6" clip-path="url(#terminal-406889625-line-31)">stop&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-406889625-r2" x="268.4" y="776.4" textLength="1171.2" clip-path="url(#terminal-406889625-line-31)">Stop&#160;running&#160;bree [...]
+</text><text class="terminal-406889625-r5" x="0" y="800.8" textLength="12.2" clip-path="url(#terminal-406889625-line-32)">│</text><text class="terminal-406889625-r4" x="24.4" y="800.8" textLength="219.6" clip-path="url(#terminal-406889625-line-32)">shell&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-406889625-r2" x="268.4" y="800.8" textLength="1171.2" clip-path="url(#terminal-406889625-line-32)">Enter&#160;breeze&#160;environme [...]
+</text><text class="terminal-406889625-r5" x="0" y="825.2" textLength="12.2" clip-path="url(#terminal-406889625-line-33)">│</text><text class="terminal-406889625-r4" x="24.4" y="825.2" textLength="219.6" clip-path="url(#terminal-406889625-line-33)">exec&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-406889625-r2" x="268.4" y="825.2" textLength="1171.2" clip-path="url(#terminal-406889625-line-33)">Joins&#160;the&#160;interac [...]
+</text><text class="terminal-406889625-r5" x="0" y="849.6" textLength="12.2" clip-path="url(#terminal-406889625-line-34)">│</text><text class="terminal-406889625-r4" x="24.4" y="849.6" textLength="219.6" clip-path="url(#terminal-406889625-line-34)">compile-www-assets</text><text class="terminal-406889625-r2" x="268.4" y="849.6" textLength="1171.2" clip-path="url(#terminal-406889625-line-34)">Compiles&#160;www&#160;assets.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-406889625-r5" x="0" y="874" textLength="12.2" clip-path="url(#terminal-406889625-line-35)">│</text><text class="terminal-406889625-r4" x="24.4" y="874" textLength="219.6" clip-path="url(#terminal-406889625-line-35)">cleanup&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-406889625-r2" x="268.4" y="874" textLength="805.2" clip-path="url(#terminal-406889625-line-35)">Cleans&#160;the&#160;cache&#160;of&#160;parameter [...]
+</text><text class="terminal-406889625-r5" x="0" y="898.4" textLength="1464" clip-path="url(#terminal-406889625-line-36)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-406889625-r2" x="1464" y="898.4" textLength="12.2" clip-path="url(#terminal-406889625-line-36)">
+</text><text class="terminal-406889625-r5" x="0" y="922.8" textLength="24.4" clip-path="url(#terminal-406889625-line-37)">╭─</text><text class="terminal-406889625-r5" x="24.4" y="922.8" textLength="1415.2" clip-path="url(#terminal-406889625-line-37)">&#160;Advanced&#160;command&#160;groups&#160;───────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-406889625-r5" x="1439.6" y="922.8" textLength="24.4" clip-path="url(#termina [...]
+</text><text class="terminal-406889625-r5" x="0" y="947.2" textLength="12.2" clip-path="url(#terminal-406889625-line-38)">│</text><text class="terminal-406889625-r4" x="24.4" y="947.2" textLength="280.6" clip-path="url(#terminal-406889625-line-38)">testing&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-406889625-r2" x="329.4" y="947.2" textLength="1110.2" clip-path="url(#terminal-406889625-line-38)">Tools&#160;t [...]
+</text><text class="terminal-406889625-r5" x="0" y="971.6" textLength="12.2" clip-path="url(#terminal-406889625-line-39)">│</text><text class="terminal-406889625-r4" x="24.4" y="971.6" textLength="280.6" clip-path="url(#terminal-406889625-line-39)">ci-image&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-406889625-r2" x="329.4" y="971.6" textLength="597.8" clip-path="url(#terminal-406889625-line-39)">Tools&#160;that&#1 [...]
+</text><text class="terminal-406889625-r5" x="0" y="996" textLength="12.2" clip-path="url(#terminal-406889625-line-40)">│</text><text class="terminal-406889625-r4" x="24.4" y="996" textLength="280.6" clip-path="url(#terminal-406889625-line-40)">k8s&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-406889625-r2" x="329.4" y="996" textLength="1110.2" clip-path="url(#terminal-406889625-line-40) [...]
+</text><text class="terminal-406889625-r5" x="0" y="1020.4" textLength="12.2" clip-path="url(#terminal-406889625-line-41)">│</text><text class="terminal-406889625-r4" x="24.4" y="1020.4" textLength="280.6" clip-path="url(#terminal-406889625-line-41)">prod-image&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-406889625-r2" x="329.4" y="1020.4" textLength="597.8" clip-path="url(#terminal-406889625-line-41)">Tools&#160;that&#160;deve [...]
+</text><text class="terminal-406889625-r5" x="0" y="1044.8" textLength="12.2" clip-path="url(#terminal-406889625-line-42)">│</text><text class="terminal-406889625-r4" x="24.4" y="1044.8" textLength="280.6" clip-path="url(#terminal-406889625-line-42)">setup&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-406889625-r2" x="329.4" y="1044.8" textLength="1110.2" clip-path="url(#terminal-406889625-line-42)" [...]
+</text><text class="terminal-406889625-r5" x="0" y="1069.2" textLength="12.2" clip-path="url(#terminal-406889625-line-43)">│</text><text class="terminal-406889625-r4" x="24.4" y="1069.2" textLength="280.6" clip-path="url(#terminal-406889625-line-43)">release-management&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-406889625-r2" x="329.4" y="1069.2" textLength="1110.2" clip-path="url(#terminal-406889625-line-43)">Tools&#160;that&#160;release&#160;managers&#160;can&#160;use&#16 [...]
+</text><text class="terminal-406889625-r5" x="0" y="1093.6" textLength="12.2" clip-path="url(#terminal-406889625-line-44)">│</text><text class="terminal-406889625-r4" x="24.4" y="1093.6" textLength="280.6" clip-path="url(#terminal-406889625-line-44)">ci&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-406889625-r2" x="329.4" y="1093.6" textLength="134.2" clip-path="url(#terminal-40688 [...]
+</text><text class="terminal-406889625-r5" x="0" y="1118" textLength="1464" clip-path="url(#terminal-406889625-line-45)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-406889625-r2" x="1464" y="1118" textLength="12.2" clip-path="url(#terminal-406889625-line-45)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_ci-image.svg b/images/breeze/output_ci-image.svg
index db16ef837f..ab881d6444 100644
--- a/images/breeze/output_ci-image.svg
+++ b/images/breeze/output_ci-image.svg
@@ -35,8 +35,8 @@
     .terminal-3949946042-r1 { fill: #c5c8c6;font-weight: bold }
 .terminal-3949946042-r2 { fill: #c5c8c6 }
 .terminal-3949946042-r3 { fill: #d0b344;font-weight: bold }
-.terminal-3949946042-r4 { fill: #868887 }
-.terminal-3949946042-r5 { fill: #68a0b3;font-weight: bold }
+.terminal-3949946042-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-3949946042-r5 { fill: #868887 }
 .terminal-3949946042-r6 { fill: #98a84b;font-weight: bold }
     </style>
 
@@ -93,18 +93,18 @@
     
     <g class="terminal-3949946042-matrix">
     <text class="terminal-3949946042-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-3949946042-line-0)">
-</text><text class="terminal-3949946042-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-3949946042-line-1)">Usage:&#160;</text><text class="terminal-3949946042-r1" x="97.6" y="44.4" textLength="524.6" clip-path="url(#terminal-3949946042-line-1)">breeze&#160;ci-image&#160;[OPTIONS]&#160;COMMAND&#160;[ARGS]...</text><text class="terminal-3949946042-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-3949946042-line-1)">
+</text><text class="terminal-3949946042-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-3949946042-line-1)">Usage:&#160;</text><text class="terminal-3949946042-r1" x="97.6" y="44.4" textLength="207.4" clip-path="url(#terminal-3949946042-line-1)">breeze&#160;ci-image&#160;[</text><text class="terminal-3949946042-r4" x="305" y="44.4" textLength="85.4" clip-path="url(#terminal-3949946042-line-1)">OPTIONS</text><text class="terminal-3949946042-r1" x="390.4" y="44.4" textLeng [...]
 </text><text class="terminal-3949946042-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-3949946042-line-2)">
-</text><text class="terminal-3949946042-r2" x="12.2" y="93.2" textLength="707.6" clip-path="url(#terminal-3949946042-line-3)">Tools&#160;that&#160;developers&#160;can&#160;use&#160;to&#160;manually&#160;manage&#160;CI&#160;images</text><text class="terminal-3949946042-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-3949946042-line-3)">
+</text><text class="terminal-3949946042-r2" x="12.2" y="93.2" textLength="597.8" clip-path="url(#terminal-3949946042-line-3)">Tools&#160;that&#160;developers&#160;can&#160;use&#160;to&#160;manually&#160;manage&#160;</text><text class="terminal-3949946042-r4" x="610" y="93.2" textLength="24.4" clip-path="url(#terminal-3949946042-line-3)">CI</text><text class="terminal-3949946042-r2" x="634.4" y="93.2" textLength="85.4" clip-path="url(#terminal-3949946042-line-3)">&#160;images</text><text  [...]
 </text><text class="terminal-3949946042-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-3949946042-line-4)">
-</text><text class="terminal-3949946042-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-3949946042-line-5)">╭─</text><text class="terminal-3949946042-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-3949946042-line-5)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3949946042-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-394994 [...]
-</text><text class="terminal-3949946042-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-3949946042-line-6)">│</text><text class="terminal-3949946042-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-3949946042-line-6)">-</text><text class="terminal-3949946042-r5" x="36.6" y="166.4" textLength="61" clip-path="url(#terminal-3949946042-line-6)">-help</text><text class="terminal-3949946042-r6" x="122" y="166.4" textLength="24.4" clip-path="url(#terminal-3949946 [...]
-</text><text class="terminal-3949946042-r4" x="0" y="190.8" textLength="1464" clip-path="url(#terminal-3949946042-line-7)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3949946042-r2" x="1464" y="190.8" textLength="12.2" clip-path="url(#terminal-3949946042-line-7)">
-</text><text class="terminal-3949946042-r4" x="0" y="215.2" textLength="24.4" clip-path="url(#terminal-3949946042-line-8)">╭─</text><text class="terminal-3949946042-r4" x="24.4" y="215.2" textLength="1415.2" clip-path="url(#terminal-3949946042-line-8)">&#160;CI&#160;Image&#160;tools&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3949946042-r4" x="1439.6" y="215.2" textLength="24.4" clip-path="url(#term [...]
-</text><text class="terminal-3949946042-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-3949946042-line-9)">│</text><text class="terminal-3949946042-r5" x="24.4" y="239.6" textLength="97.6" clip-path="url(#terminal-3949946042-line-9)">build&#160;&#160;&#160;</text><text class="terminal-3949946042-r2" x="146.4" y="239.6" textLength="1293.2" clip-path="url(#terminal-3949946042-line-9)">Build&#160;CI&#160;image.&#160;Include&#160;building&#160;multiple&#160;images&#160;for&#1 [...]
-</text><text class="terminal-3949946042-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-3949946042-line-10)">│</text><text class="terminal-3949946042-r5" x="24.4" y="264" textLength="97.6" clip-path="url(#terminal-3949946042-line-10)">pull&#160;&#160;&#160;&#160;</text><text class="terminal-3949946042-r2" x="146.4" y="264" textLength="1293.2" clip-path="url(#terminal-3949946042-line-10)">Pull&#160;and&#160;optionally&#160;verify&#160;CI&#160;images&#160;-&#160;possibly&#160; [...]
-</text><text class="terminal-3949946042-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-3949946042-line-11)">│</text><text class="terminal-3949946042-r5" x="24.4" y="288.4" textLength="97.6" clip-path="url(#terminal-3949946042-line-11)">verify&#160;&#160;</text><text class="terminal-3949946042-r2" x="146.4" y="288.4" textLength="1293.2" clip-path="url(#terminal-3949946042-line-11)">Verify&#160;CI&#160;image.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
-</text><text class="terminal-3949946042-r4" x="0" y="312.8" textLength="1464" clip-path="url(#terminal-3949946042-line-12)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3949946042-r2" x="1464" y="312.8" textLength="12.2" clip-path="url(#terminal-3949946042-line-12)">
+</text><text class="terminal-3949946042-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-3949946042-line-5)">╭─</text><text class="terminal-3949946042-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-3949946042-line-5)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3949946042-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-394994 [...]
+</text><text class="terminal-3949946042-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-3949946042-line-6)">│</text><text class="terminal-3949946042-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-3949946042-line-6)">-</text><text class="terminal-3949946042-r4" x="36.6" y="166.4" textLength="61" clip-path="url(#terminal-3949946042-line-6)">-help</text><text class="terminal-3949946042-r6" x="122" y="166.4" textLength="24.4" clip-path="url(#terminal-3949946 [...]
+</text><text class="terminal-3949946042-r5" x="0" y="190.8" textLength="1464" clip-path="url(#terminal-3949946042-line-7)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3949946042-r2" x="1464" y="190.8" textLength="12.2" clip-path="url(#terminal-3949946042-line-7)">
+</text><text class="terminal-3949946042-r5" x="0" y="215.2" textLength="24.4" clip-path="url(#terminal-3949946042-line-8)">╭─</text><text class="terminal-3949946042-r5" x="24.4" y="215.2" textLength="1415.2" clip-path="url(#terminal-3949946042-line-8)">&#160;CI&#160;Image&#160;tools&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3949946042-r5" x="1439.6" y="215.2" textLength="24.4" clip-path="url(#term [...]
+</text><text class="terminal-3949946042-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-3949946042-line-9)">│</text><text class="terminal-3949946042-r4" x="24.4" y="239.6" textLength="97.6" clip-path="url(#terminal-3949946042-line-9)">build&#160;&#160;&#160;</text><text class="terminal-3949946042-r2" x="146.4" y="239.6" textLength="73.2" clip-path="url(#terminal-3949946042-line-9)">Build&#160;</text><text class="terminal-3949946042-r4" x="219.6" y="239.6" textLength="24.4" [...]
+</text><text class="terminal-3949946042-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-3949946042-line-10)">│</text><text class="terminal-3949946042-r4" x="24.4" y="264" textLength="97.6" clip-path="url(#terminal-3949946042-line-10)">pull&#160;&#160;&#160;&#160;</text><text class="terminal-3949946042-r2" x="146.4" y="264" textLength="329.4" clip-path="url(#terminal-3949946042-line-10)">Pull&#160;and&#160;optionally&#160;verify&#160;</text><text class="terminal-3949946042-r4 [...]
+</text><text class="terminal-3949946042-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-3949946042-line-11)">│</text><text class="terminal-3949946042-r4" x="24.4" y="288.4" textLength="97.6" clip-path="url(#terminal-3949946042-line-11)">verify&#160;&#160;</text><text class="terminal-3949946042-r2" x="146.4" y="288.4" textLength="85.4" clip-path="url(#terminal-3949946042-line-11)">Verify&#160;</text><text class="terminal-3949946042-r4" x="231.8" y="288.4" textLength="24.4"  [...]
+</text><text class="terminal-3949946042-r5" x="0" y="312.8" textLength="1464" clip-path="url(#terminal-3949946042-line-12)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3949946042-r2" x="1464" y="312.8" textLength="12.2" clip-path="url(#terminal-3949946042-line-12)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_ci-image_build.svg b/images/breeze/output_ci-image_build.svg
index 7af488fba3..4615263959 100644
--- a/images/breeze/output_ci-image_build.svg
+++ b/images/breeze/output_ci-image_build.svg
@@ -19,309 +19,309 @@
         font-weight: 700;
     }
 
-    .terminal-3550258889-matrix {
+    .terminal-998746027-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-3550258889-title {
+    .terminal-998746027-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-3550258889-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-3550258889-r2 { fill: #c5c8c6 }
-.terminal-3550258889-r3 { fill: #d0b344;font-weight: bold }
-.terminal-3550258889-r4 { fill: #868887 }
-.terminal-3550258889-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-3550258889-r6 { fill: #98a84b;font-weight: bold }
-.terminal-3550258889-r7 { fill: #8d7b39 }
+    .terminal-998746027-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-998746027-r2 { fill: #c5c8c6 }
+.terminal-998746027-r3 { fill: #d0b344;font-weight: bold }
+.terminal-998746027-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-998746027-r5 { fill: #868887 }
+.terminal-998746027-r6 { fill: #98a84b;font-weight: bold }
+.terminal-998746027-r7 { fill: #8d7b39 }
     </style>
 
     <defs>
-    <clipPath id="terminal-3550258889-clip-terminal">
+    <clipPath id="terminal-998746027-clip-terminal">
       <rect x="0" y="0" width="1463.0" height="1633.8" />
     </clipPath>
-    <clipPath id="terminal-3550258889-line-0">
+    <clipPath id="terminal-998746027-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-1">
+<clipPath id="terminal-998746027-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-2">
+<clipPath id="terminal-998746027-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-3">
+<clipPath id="terminal-998746027-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-4">
+<clipPath id="terminal-998746027-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-5">
+<clipPath id="terminal-998746027-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-6">
+<clipPath id="terminal-998746027-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-7">
+<clipPath id="terminal-998746027-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-8">
+<clipPath id="terminal-998746027-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-9">
+<clipPath id="terminal-998746027-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-10">
+<clipPath id="terminal-998746027-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-11">
+<clipPath id="terminal-998746027-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-12">
+<clipPath id="terminal-998746027-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-13">
+<clipPath id="terminal-998746027-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-14">
+<clipPath id="terminal-998746027-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-15">
+<clipPath id="terminal-998746027-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-16">
+<clipPath id="terminal-998746027-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-17">
+<clipPath id="terminal-998746027-line-17">
     <rect x="0" y="416.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-18">
+<clipPath id="terminal-998746027-line-18">
     <rect x="0" y="440.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-19">
+<clipPath id="terminal-998746027-line-19">
     <rect x="0" y="465.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-20">
+<clipPath id="terminal-998746027-line-20">
     <rect x="0" y="489.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-21">
+<clipPath id="terminal-998746027-line-21">
     <rect x="0" y="513.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-22">
+<clipPath id="terminal-998746027-line-22">
     <rect x="0" y="538.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-23">
+<clipPath id="terminal-998746027-line-23">
     <rect x="0" y="562.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-24">
+<clipPath id="terminal-998746027-line-24">
     <rect x="0" y="587.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-25">
+<clipPath id="terminal-998746027-line-25">
     <rect x="0" y="611.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-26">
+<clipPath id="terminal-998746027-line-26">
     <rect x="0" y="635.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-27">
+<clipPath id="terminal-998746027-line-27">
     <rect x="0" y="660.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-28">
+<clipPath id="terminal-998746027-line-28">
     <rect x="0" y="684.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-29">
+<clipPath id="terminal-998746027-line-29">
     <rect x="0" y="709.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-30">
+<clipPath id="terminal-998746027-line-30">
     <rect x="0" y="733.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-31">
+<clipPath id="terminal-998746027-line-31">
     <rect x="0" y="757.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-32">
+<clipPath id="terminal-998746027-line-32">
     <rect x="0" y="782.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-33">
+<clipPath id="terminal-998746027-line-33">
     <rect x="0" y="806.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-34">
+<clipPath id="terminal-998746027-line-34">
     <rect x="0" y="831.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-35">
+<clipPath id="terminal-998746027-line-35">
     <rect x="0" y="855.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-36">
+<clipPath id="terminal-998746027-line-36">
     <rect x="0" y="879.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-37">
+<clipPath id="terminal-998746027-line-37">
     <rect x="0" y="904.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-38">
+<clipPath id="terminal-998746027-line-38">
     <rect x="0" y="928.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-39">
+<clipPath id="terminal-998746027-line-39">
     <rect x="0" y="953.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-40">
+<clipPath id="terminal-998746027-line-40">
     <rect x="0" y="977.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-41">
+<clipPath id="terminal-998746027-line-41">
     <rect x="0" y="1001.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-42">
+<clipPath id="terminal-998746027-line-42">
     <rect x="0" y="1026.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-43">
+<clipPath id="terminal-998746027-line-43">
     <rect x="0" y="1050.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-44">
+<clipPath id="terminal-998746027-line-44">
     <rect x="0" y="1075.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-45">
+<clipPath id="terminal-998746027-line-45">
     <rect x="0" y="1099.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-46">
+<clipPath id="terminal-998746027-line-46">
     <rect x="0" y="1123.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-47">
+<clipPath id="terminal-998746027-line-47">
     <rect x="0" y="1148.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-48">
+<clipPath id="terminal-998746027-line-48">
     <rect x="0" y="1172.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-49">
+<clipPath id="terminal-998746027-line-49">
     <rect x="0" y="1197.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-50">
+<clipPath id="terminal-998746027-line-50">
     <rect x="0" y="1221.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-51">
+<clipPath id="terminal-998746027-line-51">
     <rect x="0" y="1245.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-52">
+<clipPath id="terminal-998746027-line-52">
     <rect x="0" y="1270.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-53">
+<clipPath id="terminal-998746027-line-53">
     <rect x="0" y="1294.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-54">
+<clipPath id="terminal-998746027-line-54">
     <rect x="0" y="1319.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-55">
+<clipPath id="terminal-998746027-line-55">
     <rect x="0" y="1343.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-56">
+<clipPath id="terminal-998746027-line-56">
     <rect x="0" y="1367.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-57">
+<clipPath id="terminal-998746027-line-57">
     <rect x="0" y="1392.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-58">
+<clipPath id="terminal-998746027-line-58">
     <rect x="0" y="1416.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-59">
+<clipPath id="terminal-998746027-line-59">
     <rect x="0" y="1441.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-60">
+<clipPath id="terminal-998746027-line-60">
     <rect x="0" y="1465.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-61">
+<clipPath id="terminal-998746027-line-61">
     <rect x="0" y="1489.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-62">
+<clipPath id="terminal-998746027-line-62">
     <rect x="0" y="1514.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-63">
+<clipPath id="terminal-998746027-line-63">
     <rect x="0" y="1538.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-64">
+<clipPath id="terminal-998746027-line-64">
     <rect x="0" y="1563.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3550258889-line-65">
+<clipPath id="terminal-998746027-line-65">
     <rect x="0" y="1587.5" width="1464" height="24.65"/>
             </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="1682.8" rx="8"/><text class="terminal-3550258889-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;ci-image&#160;build</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="1682.8" rx="8"/><text class="terminal-998746027-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;ci-image&#160;build</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-3550258889-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-998746027-clip-terminal)">
     
-    <g class="terminal-3550258889-matrix">
-    <text class="terminal-3550258889-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-3550258889-line-0)">
-</text><text class="terminal-3550258889-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-3550258889-line-1)">Usage:&#160;</text><text class="terminal-3550258889-r1" x="97.6" y="44.4" textLength="378.2" clip-path="url(#terminal-3550258889-line-1)">breeze&#160;ci-image&#160;build&#160;[OPTIONS]</text><text class="terminal-3550258889-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-3550258889-line-1)">
-</text><text class="terminal-3550258889-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-3550258889-line-2)">
-</text><text class="terminal-3550258889-r2" x="12.2" y="93.2" textLength="890.6" clip-path="url(#terminal-3550258889-line-3)">Build&#160;CI&#160;image.&#160;Include&#160;building&#160;multiple&#160;images&#160;for&#160;all&#160;python&#160;versions.</text><text class="terminal-3550258889-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-3550258889-line-3)">
-</text><text class="terminal-3550258889-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-3550258889-line-4)">
-</text><text class="terminal-3550258889-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-3550258889-line-5)">╭─</text><text class="terminal-3550258889-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-3550258889-line-5)">&#160;Basic&#160;usage&#160;───────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3550258889-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-355025 [...]
-</text><text class="terminal-3550258889-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-3550258889-line-6)">│</text><text class="terminal-3550258889-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-3550258889-line-6)">-</text><text class="terminal-3550258889-r5" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-3550258889-line-6)">-python</text><text class="terminal-3550258889-r6" x="427" y="166.4" textLength="24.4" clip-path="url(#terminal-355 [...]
-</text><text class="terminal-3550258889-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-3550258889-line-7)">│</text><text class="terminal-3550258889-r7" x="475.8" y="190.8" textLength="732" clip-path="url(#terminal-3550258889-line-7)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
-</text><text class="terminal-3550258889-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-3550258889-line-8)">│</text><text class="terminal-3550258889-r4" x="475.8" y="215.2" textLength="732" clip-path="url(#terminal-3550258889-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-3550258889-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-3550258889-line-9)">│</text><text class="terminal-3550258889-r5" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-3550258889-line-9)">-</text><text class="terminal-3550258889-r5" x="36.6" y="239.6" textLength="97.6" clip-path="url(#terminal-3550258889-line-9)">-upgrade</text><text class="terminal-3550258889-r5" x="134.2" y="239.6" textLength="268.4" clip-path="url(#terminal [...]
-</text><text class="terminal-3550258889-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-3550258889-line-10)">│</text><text class="terminal-3550258889-r5" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-3550258889-line-10)">-</text><text class="terminal-3550258889-r5" x="36.6" y="264" textLength="97.6" clip-path="url(#terminal-3550258889-line-10)">-upgrade</text><text class="terminal-3550258889-r5" x="134.2" y="264" textLength="134.2" clip-path="url(#terminal-3550 [...]
-</text><text class="terminal-3550258889-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-3550258889-line-11)">│</text><text class="terminal-3550258889-r2" x="475.8" y="288.4" textLength="963.8" clip-path="url(#terminal-3550258889-line-11)">fails.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
-</text><text class="terminal-3550258889-r4" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-3550258889-line-12)">│</text><text class="terminal-3550258889-r5" x="24.4" y="312.8" textLength="12.2" clip-path="url(#terminal-3550258889-line-12)">-</text><text class="terminal-3550258889-r5" x="36.6" y="312.8" textLength="73.2" clip-path="url(#terminal-3550258889-line-12)">-image</text><text class="terminal-3550258889-r5" x="109.8" y="312.8" textLength="48.8" clip-path="url(#terminal [...]
-</text><text class="terminal-3550258889-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-3550258889-line-13)">│</text><text class="terminal-3550258889-r5" x="24.4" y="337.2" textLength="12.2" clip-path="url(#terminal-3550258889-line-13)">-</text><text class="terminal-3550258889-r5" x="36.6" y="337.2" textLength="48.8" clip-path="url(#terminal-3550258889-line-13)">-tag</text><text class="terminal-3550258889-r5" x="85.4" y="337.2" textLength="122" clip-path="url(#terminal-355 [...]
-</text><text class="terminal-3550258889-r4" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-3550258889-line-14)">│</text><text class="terminal-3550258889-r2" x="475.8" y="361.6" textLength="414.8" clip-path="url(#terminal-3550258889-line-14)">when&#160;you&#160;build&#160;or&#160;pull&#160;image&#160;with&#160;</text><text class="terminal-3550258889-r5" x="890.6" y="361.6" textLength="12.2" clip-path="url(#terminal-3550258889-line-14)">-</text><text class="terminal-3550258889- [...]
-</text><text class="terminal-3550258889-r4" x="0" y="386" textLength="12.2" clip-path="url(#terminal-3550258889-line-15)">│</text><text class="terminal-3550258889-r5" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-3550258889-line-15)">-</text><text class="terminal-3550258889-r5" x="36.6" y="386" textLength="85.4" clip-path="url(#terminal-3550258889-line-15)">-docker</text><text class="terminal-3550258889-r5" x="122" y="386" textLength="73.2" clip-path="url(#terminal-35502588 [...]
-</text><text class="terminal-3550258889-r4" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-3550258889-line-16)">│</text><text class="terminal-3550258889-r4" x="475.8" y="410.4" textLength="549" clip-path="url(#terminal-3550258889-line-16)">[default:&#160;registry]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-3550258889-r4" x="1451.8" y="41 [...]
-</text><text class="terminal-3550258889-r4" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-3550258889-line-17)">│</text><text class="terminal-3550258889-r5" x="24.4" y="434.8" textLength="12.2" clip-path="url(#terminal-3550258889-line-17)">-</text><text class="terminal-3550258889-r5" x="36.6" y="434.8" textLength="73.2" clip-path="url(#terminal-3550258889-line-17)">-force</text><text class="terminal-3550258889-r5" x="109.8" y="434.8" textLength="73.2" clip-path="url(#terminal [...]
-</text><text class="terminal-3550258889-r4" x="0" y="459.2" textLength="1464" clip-path="url(#terminal-3550258889-line-18)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3550258889-r2" x="1464" y="459.2" textLength="12.2" clip-path="url(#terminal-3550258889-line-18)">
-</text><text class="terminal-3550258889-r4" x="0" y="483.6" textLength="24.4" clip-path="url(#terminal-3550258889-line-19)">╭─</text><text class="terminal-3550258889-r4" x="24.4" y="483.6" textLength="1415.2" clip-path="url(#terminal-3550258889-line-19)">&#160;Building&#160;images&#160;in&#160;parallel&#160;───────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3550258889-r4" x="1439.6" y="483.6" textLength="24.4" clip-path="ur [...]
-</text><text class="terminal-3550258889-r4" x="0" y="508" textLength="12.2" clip-path="url(#terminal-3550258889-line-20)">│</text><text class="terminal-3550258889-r5" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-3550258889-line-20)">-</text><text class="terminal-3550258889-r5" x="36.6" y="508" textLength="48.8" clip-path="url(#terminal-3550258889-line-20)">-run</text><text class="terminal-3550258889-r5" x="85.4" y="508" textLength="146.4" clip-path="url(#terminal-355025888 [...]
-</text><text class="terminal-3550258889-r4" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-3550258889-line-21)">│</text><text class="terminal-3550258889-r5" x="24.4" y="532.4" textLength="12.2" clip-path="url(#terminal-3550258889-line-21)">-</text><text class="terminal-3550258889-r5" x="36.6" y="532.4" textLength="146.4" clip-path="url(#terminal-3550258889-line-21)">-parallelism</text><text class="terminal-3550258889-r2" x="378.2" y="532.4" textLength="915" clip-path="url(#te [...]
-</text><text class="terminal-3550258889-r4" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-3550258889-line-22)">│</text><text class="terminal-3550258889-r7" x="378.2" y="556.8" textLength="915" clip-path="url(#terminal-3550258889-line-22)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
-</text><text class="terminal-3550258889-r4" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-3550258889-line-23)">│</text><text class="terminal-3550258889-r4" x="378.2" y="581.2" textLength="915" clip-path="url(#terminal-3550258889-line-23)">[default:&#160;4;&#160;1&lt;=x&lt;=8]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-3550258889-r4" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-3550258889-line-24)">│</text><text class="terminal-3550258889-r5" x="24.4" y="605.6" textLength="12.2" clip-path="url(#terminal-3550258889-line-24)">-</text><text class="terminal-3550258889-r5" x="36.6" y="605.6" textLength="85.4" clip-path="url(#terminal-3550258889-line-24)">-python</text><text class="terminal-3550258889-r5" x="122" y="605.6" textLength="109.8" clip-path="url(#terminal [...]
-</text><text class="terminal-3550258889-r4" x="0" y="630" textLength="12.2" clip-path="url(#terminal-3550258889-line-25)">│</text><text class="terminal-3550258889-r4" x="378.2" y="630" textLength="951.6" clip-path="url(#terminal-3550258889-line-25)">[default:&#160;3.7&#160;3.8&#160;3.9&#160;3.10]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
-</text><text class="terminal-3550258889-r4" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-3550258889-line-26)">│</text><text class="terminal-3550258889-r5" x="24.4" y="654.4" textLength="12.2" clip-path="url(#terminal-3550258889-line-26)">-</text><text class="terminal-3550258889-r5" x="36.6" y="654.4" textLength="61" clip-path="url(#terminal-3550258889-line-26)">-skip</text><text class="terminal-3550258889-r5" x="97.6" y="654.4" textLength="97.6" clip-path="url(#terminal-355 [...]
-</text><text class="terminal-3550258889-r4" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-3550258889-line-27)">│</text><text class="terminal-3550258889-r5" x="24.4" y="678.8" textLength="12.2" clip-path="url(#terminal-3550258889-line-27)">-</text><text class="terminal-3550258889-r5" x="36.6" y="678.8" textLength="73.2" clip-path="url(#terminal-3550258889-line-27)">-debug</text><text class="terminal-3550258889-r5" x="109.8" y="678.8" textLength="122" clip-path="url(#terminal- [...]
-</text><text class="terminal-3550258889-r4" x="0" y="703.2" textLength="12.2" clip-path="url(#terminal-3550258889-line-28)">│</text><text class="terminal-3550258889-r5" x="24.4" y="703.2" textLength="12.2" clip-path="url(#terminal-3550258889-line-28)">-</text><text class="terminal-3550258889-r5" x="36.6" y="703.2" textLength="97.6" clip-path="url(#terminal-3550258889-line-28)">-include</text><text class="terminal-3550258889-r5" x="134.2" y="703.2" textLength="195.2" clip-path="url(#termi [...]
-</text><text class="terminal-3550258889-r4" x="0" y="727.6" textLength="1464" clip-path="url(#terminal-3550258889-line-29)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3550258889-r2" x="1464" y="727.6" textLength="12.2" clip-path="url(#terminal-3550258889-line-29)">
-</text><text class="terminal-3550258889-r4" x="0" y="752" textLength="24.4" clip-path="url(#terminal-3550258889-line-30)">╭─</text><text class="terminal-3550258889-r4" x="24.4" y="752" textLength="1415.2" clip-path="url(#terminal-3550258889-line-30)">&#160;Advanced&#160;options&#160;(for&#160;power&#160;users)&#160;────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3550258889-r4" x="1439.6" y="752" textLength="24.4" clip-path="url [...]
-</text><text class="terminal-3550258889-r4" x="0" y="776.4" textLength="12.2" clip-path="url(#terminal-3550258889-line-31)">│</text><text class="terminal-3550258889-r5" x="24.4" y="776.4" textLength="12.2" clip-path="url(#terminal-3550258889-line-31)">-</text><text class="terminal-3550258889-r5" x="36.6" y="776.4" textLength="97.6" clip-path="url(#terminal-3550258889-line-31)">-builder</text><text class="terminal-3550258889-r2" x="463.6" y="776.4" textLength="756.4" clip-path="url(#termi [...]
-</text><text class="terminal-3550258889-r4" x="0" y="800.8" textLength="12.2" clip-path="url(#terminal-3550258889-line-32)">│</text><text class="terminal-3550258889-r5" x="24.4" y="800.8" textLength="12.2" clip-path="url(#terminal-3550258889-line-32)">-</text><text class="terminal-3550258889-r5" x="36.6" y="800.8" textLength="97.6" clip-path="url(#terminal-3550258889-line-32)">-install</text><text class="terminal-3550258889-r5" x="134.2" y="800.8" textLength="280.6" clip-path="url(#termi [...]
-</text><text class="terminal-3550258889-r4" x="0" y="825.2" textLength="12.2" clip-path="url(#terminal-3550258889-line-33)">│</text><text class="terminal-3550258889-r5" x="24.4" y="825.2" textLength="12.2" clip-path="url(#terminal-3550258889-line-33)">-</text><text class="terminal-3550258889-r5" x="36.6" y="825.2" textLength="97.6" clip-path="url(#terminal-3550258889-line-33)">-airflow</text><text class="terminal-3550258889-r5" x="134.2" y="825.2" textLength="207.4" clip-path="url(#termi [...]
-</text><text class="terminal-3550258889-r4" x="0" y="849.6" textLength="12.2" clip-path="url(#terminal-3550258889-line-34)">│</text><text class="terminal-3550258889-r7" x="463.6" y="849.6" textLength="866.2" clip-path="url(#terminal-3550258889-line-34)">(constraints-source-providers&#160;|&#160;constraints&#160;|&#160;constraints-no-providers)</text><text class="terminal-3550258889-r4" x="1451.8" y="849.6" textLength="12.2" clip-path="url(#terminal-3550258889-line-34)">│</text><text clas [...]
-</text><text class="terminal-3550258889-r4" x="0" y="874" textLength="12.2" clip-path="url(#terminal-3550258889-line-35)">│</text><text class="terminal-3550258889-r4" x="463.6" y="874" textLength="866.2" clip-path="url(#terminal-3550258889-line-35)">[default:&#160;constraints-source-providers]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text [...]
-</text><text class="terminal-3550258889-r4" x="0" y="898.4" textLength="12.2" clip-path="url(#terminal-3550258889-line-36)">│</text><text class="terminal-3550258889-r5" x="24.4" y="898.4" textLength="12.2" clip-path="url(#terminal-3550258889-line-36)">-</text><text class="terminal-3550258889-r5" x="36.6" y="898.4" textLength="97.6" clip-path="url(#terminal-3550258889-line-36)">-airflow</text><text class="terminal-3550258889-r5" x="134.2" y="898.4" textLength="268.4" clip-path="url(#termi [...]
-</text><text class="terminal-3550258889-r4" x="0" y="922.8" textLength="12.2" clip-path="url(#terminal-3550258889-line-37)">│</text><text class="terminal-3550258889-r5" x="24.4" y="922.8" textLength="12.2" clip-path="url(#terminal-3550258889-line-37)">-</text><text class="terminal-3550258889-r5" x="36.6" y="922.8" textLength="85.4" clip-path="url(#terminal-3550258889-line-37)">-python</text><text class="terminal-3550258889-r5" x="122" y="922.8" textLength="73.2" clip-path="url(#terminal- [...]
-</text><text class="terminal-3550258889-r4" x="0" y="947.2" textLength="12.2" clip-path="url(#terminal-3550258889-line-38)">│</text><text class="terminal-3550258889-r2" x="463.6" y="947.2" textLength="976" clip-path="url(#terminal-3550258889-line-38)">something&#160;like:&#160;python:VERSION-slim-bullseye.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-3550258889-r4" x="0" y="971.6" textLength="12.2" clip-path="url(#terminal-3550258889-line-39)">│</text><text class="terminal-3550258889-r7" x="463.6" y="971.6" textLength="976" clip-path="url(#terminal-3550258889-line-39)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
-</text><text class="terminal-3550258889-r4" x="0" y="996" textLength="12.2" clip-path="url(#terminal-3550258889-line-40)">│</text><text class="terminal-3550258889-r5" x="24.4" y="996" textLength="12.2" clip-path="url(#terminal-3550258889-line-40)">-</text><text class="terminal-3550258889-r5" x="36.6" y="996" textLength="134.2" clip-path="url(#terminal-3550258889-line-40)">-additional</text><text class="terminal-3550258889-r5" x="170.8" y="996" textLength="146.4" clip-path="url(#terminal- [...]
-</text><text class="terminal-3550258889-r4" x="0" y="1020.4" textLength="12.2" clip-path="url(#terminal-3550258889-line-41)">│</text><text class="terminal-3550258889-r5" x="24.4" y="1020.4" textLength="12.2" clip-path="url(#terminal-3550258889-line-41)">-</text><text class="terminal-3550258889-r5" x="36.6" y="1020.4" textLength="134.2" clip-path="url(#terminal-3550258889-line-41)">-additional</text><text class="terminal-3550258889-r5" x="170.8" y="1020.4" textLength="85.4" clip-path="url [...]
-</text><text class="terminal-3550258889-r4" x="0" y="1044.8" textLength="12.2" clip-path="url(#terminal-3550258889-line-42)">│</text><text class="terminal-3550258889-r5" x="24.4" y="1044.8" textLength="12.2" clip-path="url(#terminal-3550258889-line-42)">-</text><text class="terminal-3550258889-r5" x="36.6" y="1044.8" textLength="134.2" clip-path="url(#terminal-3550258889-line-42)">-additional</text><text class="terminal-3550258889-r5" x="170.8" y="1044.8" textLength="219.6" clip-path="ur [...]
-</text><text class="terminal-3550258889-r4" x="0" y="1069.2" textLength="12.2" clip-path="url(#terminal-3550258889-line-43)">│</text><text class="terminal-3550258889-r2" x="463.6" y="1069.2" textLength="976" clip-path="url(#terminal-3550258889-line-43)">itself).&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
-</text><text class="terminal-3550258889-r4" x="0" y="1093.6" textLength="12.2" clip-path="url(#terminal-3550258889-line-44)">│</text><text class="terminal-3550258889-r7" x="463.6" y="1093.6" textLength="976" clip-path="url(#terminal-3550258889-line-44)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
-</text><text class="terminal-3550258889-r4" x="0" y="1118" textLength="12.2" clip-path="url(#terminal-3550258889-line-45)">│</text><text class="terminal-3550258889-r5" x="24.4" y="1118" textLength="12.2" clip-path="url(#terminal-3550258889-line-45)">-</text><text class="terminal-3550258889-r5" x="36.6" y="1118" textLength="134.2" clip-path="url(#terminal-3550258889-line-45)">-additional</text><text class="terminal-3550258889-r5" x="170.8" y="1118" textLength="158.6" clip-path="url(#termi [...]
-</text><text class="terminal-3550258889-r4" x="0" y="1142.4" textLength="12.2" clip-path="url(#terminal-3550258889-line-46)">│</text><text class="terminal-3550258889-r5" x="24.4" y="1142.4" textLength="12.2" clip-path="url(#terminal-3550258889-line-46)">-</text><text class="terminal-3550258889-r5" x="36.6" y="1142.4" textLength="134.2" clip-path="url(#terminal-3550258889-line-46)">-additional</text><text class="terminal-3550258889-r5" x="170.8" y="1142.4" textLength="146.4" clip-path="ur [...]
-</text><text class="terminal-3550258889-r4" x="0" y="1166.8" textLength="12.2" clip-path="url(#terminal-3550258889-line-47)">│</text><text class="terminal-3550258889-r5" x="24.4" y="1166.8" textLength="12.2" clip-path="url(#terminal-3550258889-line-47)">-</text><text class="terminal-3550258889-r5" x="36.6" y="1166.8" textLength="134.2" clip-path="url(#terminal-3550258889-line-47)">-additional</text><text class="terminal-3550258889-r5" x="170.8" y="1166.8" textLength="195.2" clip-path="ur [...]
-</text><text class="terminal-3550258889-r4" x="0" y="1191.2" textLength="12.2" clip-path="url(#terminal-3550258889-line-48)">│</text><text class="terminal-3550258889-r5" x="24.4" y="1191.2" textLength="12.2" clip-path="url(#terminal-3550258889-line-48)">-</text><text class="terminal-3550258889-r5" x="36.6" y="1191.2" textLength="48.8" clip-path="url(#terminal-3550258889-line-48)">-dev</text><text class="terminal-3550258889-r5" x="85.4" y="1191.2" textLength="109.8" clip-path="url(#termin [...]
-</text><text class="terminal-3550258889-r4" x="0" y="1215.6" textLength="12.2" clip-path="url(#terminal-3550258889-line-49)">│</text><text class="terminal-3550258889-r5" x="24.4" y="1215.6" textLength="12.2" clip-path="url(#terminal-3550258889-line-49)">-</text><text class="terminal-3550258889-r5" x="36.6" y="1215.6" textLength="48.8" clip-path="url(#terminal-3550258889-line-49)">-dev</text><text class="terminal-3550258889-r5" x="85.4" y="1215.6" textLength="146.4" clip-path="url(#termin [...]
-</text><text class="terminal-3550258889-r4" x="0" y="1240" textLength="1464" clip-path="url(#terminal-3550258889-line-50)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3550258889-r2" x="1464" y="1240" textLength="12.2" clip-path="url(#terminal-3550258889-line-50)">
-</text><text class="terminal-3550258889-r4" x="0" y="1264.4" textLength="24.4" clip-path="url(#terminal-3550258889-line-51)">╭─</text><text class="terminal-3550258889-r4" x="24.4" y="1264.4" textLength="1415.2" clip-path="url(#terminal-3550258889-line-51)">&#160;Preparing&#160;cache&#160;and&#160;push&#160;(for&#160;maintainers&#160;and&#160;CI)&#160;─────────────────────────────────────────────────────────────────</text><text class="terminal-3550258889-r4" x="1439.6" y="1264.4" textLeng [...]
-</text><text class="terminal-3550258889-r4" x="0" y="1288.8" textLength="12.2" clip-path="url(#terminal-3550258889-line-52)">│</text><text class="terminal-3550258889-r5" x="24.4" y="1288.8" textLength="12.2" clip-path="url(#terminal-3550258889-line-52)">-</text><text class="terminal-3550258889-r5" x="36.6" y="1288.8" textLength="85.4" clip-path="url(#terminal-3550258889-line-52)">-github</text><text class="terminal-3550258889-r5" x="122" y="1288.8" textLength="73.2" clip-path="url(#termi [...]
-</text><text class="terminal-3550258889-r4" x="0" y="1313.2" textLength="12.2" clip-path="url(#terminal-3550258889-line-53)">│</text><text class="terminal-3550258889-r5" x="24.4" y="1313.2" textLength="12.2" clip-path="url(#terminal-3550258889-line-53)">-</text><text class="terminal-3550258889-r5" x="36.6" y="1313.2" textLength="85.4" clip-path="url(#terminal-3550258889-line-53)">-github</text><text class="terminal-3550258889-r5" x="122" y="1313.2" textLength="109.8" clip-path="url(#term [...]
-</text><text class="terminal-3550258889-r4" x="0" y="1337.6" textLength="12.2" clip-path="url(#terminal-3550258889-line-54)">│</text><text class="terminal-3550258889-r5" x="24.4" y="1337.6" textLength="12.2" clip-path="url(#terminal-3550258889-line-54)">-</text><text class="terminal-3550258889-r5" x="36.6" y="1337.6" textLength="109.8" clip-path="url(#terminal-3550258889-line-54)">-platform</text><text class="terminal-3550258889-r2" x="341.6" y="1337.6" textLength="329.4" clip-path="url( [...]
-</text><text class="terminal-3550258889-r4" x="0" y="1362" textLength="12.2" clip-path="url(#terminal-3550258889-line-55)">│</text><text class="terminal-3550258889-r5" x="24.4" y="1362" textLength="12.2" clip-path="url(#terminal-3550258889-line-55)">-</text><text class="terminal-3550258889-r5" x="36.6" y="1362" textLength="61" clip-path="url(#terminal-3550258889-line-55)">-push</text><text class="terminal-3550258889-r2" x="341.6" y="1362" textLength="353.8" clip-path="url(#terminal-35502 [...]
-</text><text class="terminal-3550258889-r4" x="0" y="1386.4" textLength="12.2" clip-path="url(#terminal-3550258889-line-56)">│</text><text class="terminal-3550258889-r5" x="24.4" y="1386.4" textLength="12.2" clip-path="url(#terminal-3550258889-line-56)">-</text><text class="terminal-3550258889-r5" x="36.6" y="1386.4" textLength="73.2" clip-path="url(#terminal-3550258889-line-56)">-empty</text><text class="terminal-3550258889-r5" x="109.8" y="1386.4" textLength="73.2" clip-path="url(#term [...]
-</text><text class="terminal-3550258889-r4" x="0" y="1410.8" textLength="12.2" clip-path="url(#terminal-3550258889-line-57)">│</text><text class="terminal-3550258889-r5" x="24.4" y="1410.8" textLength="12.2" clip-path="url(#terminal-3550258889-line-57)">-</text><text class="terminal-3550258889-r5" x="36.6" y="1410.8" textLength="97.6" clip-path="url(#terminal-3550258889-line-57)">-prepare</text><text class="terminal-3550258889-r5" x="134.2" y="1410.8" textLength="158.6" clip-path="url(#t [...]
-</text><text class="terminal-3550258889-r4" x="0" y="1435.2" textLength="12.2" clip-path="url(#terminal-3550258889-line-58)">│</text><text class="terminal-3550258889-r2" x="341.6" y="1435.2" textLength="1098" clip-path="url(#terminal-3550258889-line-58)">image).&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
-</text><text class="terminal-3550258889-r4" x="0" y="1459.6" textLength="1464" clip-path="url(#terminal-3550258889-line-59)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3550258889-r2" x="1464" y="1459.6" textLength="12.2" clip-path="url(#terminal-3550258889-line-59)">
-</text><text class="terminal-3550258889-r4" x="0" y="1484" textLength="24.4" clip-path="url(#terminal-3550258889-line-60)">╭─</text><text class="terminal-3550258889-r4" x="24.4" y="1484" textLength="1415.2" clip-path="url(#terminal-3550258889-line-60)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3550258889-r4" x="1439.6" y="1484" textLength="24.4" clip-path="url(#terminal-3 [...]
-</text><text class="terminal-3550258889-r4" x="0" y="1508.4" textLength="12.2" clip-path="url(#terminal-3550258889-line-61)">│</text><text class="terminal-3550258889-r5" x="24.4" y="1508.4" textLength="12.2" clip-path="url(#terminal-3550258889-line-61)">-</text><text class="terminal-3550258889-r5" x="36.6" y="1508.4" textLength="85.4" clip-path="url(#terminal-3550258889-line-61)">-github</text><text class="terminal-3550258889-r5" x="122" y="1508.4" textLength="134.2" clip-path="url(#term [...]
-</text><text class="terminal-3550258889-r4" x="0" y="1532.8" textLength="12.2" clip-path="url(#terminal-3550258889-line-62)">│</text><text class="terminal-3550258889-r5" x="24.4" y="1532.8" textLength="12.2" clip-path="url(#terminal-3550258889-line-62)">-</text><text class="terminal-3550258889-r5" x="36.6" y="1532.8" textLength="97.6" clip-path="url(#terminal-3550258889-line-62)">-verbose</text><text class="terminal-3550258889-r6" x="280.6" y="1532.8" textLength="24.4" clip-path="url(#te [...]
-</text><text class="terminal-3550258889-r4" x="0" y="1557.2" textLength="12.2" clip-path="url(#terminal-3550258889-line-63)">│</text><text class="terminal-3550258889-r5" x="24.4" y="1557.2" textLength="12.2" clip-path="url(#terminal-3550258889-line-63)">-</text><text class="terminal-3550258889-r5" x="36.6" y="1557.2" textLength="48.8" clip-path="url(#terminal-3550258889-line-63)">-dry</text><text class="terminal-3550258889-r5" x="85.4" y="1557.2" textLength="48.8" clip-path="url(#termina [...]
-</text><text class="terminal-3550258889-r4" x="0" y="1581.6" textLength="12.2" clip-path="url(#terminal-3550258889-line-64)">│</text><text class="terminal-3550258889-r5" x="24.4" y="1581.6" textLength="12.2" clip-path="url(#terminal-3550258889-line-64)">-</text><text class="terminal-3550258889-r5" x="36.6" y="1581.6" textLength="85.4" clip-path="url(#terminal-3550258889-line-64)">-answer</text><text class="terminal-3550258889-r6" x="280.6" y="1581.6" textLength="24.4" clip-path="url(#ter [...]
-</text><text class="terminal-3550258889-r4" x="0" y="1606" textLength="12.2" clip-path="url(#terminal-3550258889-line-65)">│</text><text class="terminal-3550258889-r5" x="24.4" y="1606" textLength="12.2" clip-path="url(#terminal-3550258889-line-65)">-</text><text class="terminal-3550258889-r5" x="36.6" y="1606" textLength="61" clip-path="url(#terminal-3550258889-line-65)">-help</text><text class="terminal-3550258889-r6" x="280.6" y="1606" textLength="24.4" clip-path="url(#terminal-355025 [...]
-</text><text class="terminal-3550258889-r4" x="0" y="1630.4" textLength="1464" clip-path="url(#terminal-3550258889-line-66)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3550258889-r2" x="1464" y="1630.4" textLength="12.2" clip-path="url(#terminal-3550258889-line-66)">
+    <g class="terminal-998746027-matrix">
+    <text class="terminal-998746027-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-998746027-line-0)">
+</text><text class="terminal-998746027-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-998746027-line-1)">Usage:&#160;</text><text class="terminal-998746027-r1" x="97.6" y="44.4" textLength="280.6" clip-path="url(#terminal-998746027-line-1)">breeze&#160;ci-image&#160;build&#160;[</text><text class="terminal-998746027-r4" x="378.2" y="44.4" textLength="85.4" clip-path="url(#terminal-998746027-line-1)">OPTIONS</text><text class="terminal-998746027-r1" x="463.6" y="44.4" te [...]
+</text><text class="terminal-998746027-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-998746027-line-2)">
+</text><text class="terminal-998746027-r2" x="12.2" y="93.2" textLength="73.2" clip-path="url(#terminal-998746027-line-3)">Build&#160;</text><text class="terminal-998746027-r4" x="85.4" y="93.2" textLength="24.4" clip-path="url(#terminal-998746027-line-3)">CI</text><text class="terminal-998746027-r2" x="109.8" y="93.2" textLength="793" clip-path="url(#terminal-998746027-line-3)">&#160;image.&#160;Include&#160;building&#160;multiple&#160;images&#160;for&#160;all&#160;python&#160;versions. [...]
+</text><text class="terminal-998746027-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-998746027-line-4)">
+</text><text class="terminal-998746027-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-998746027-line-5)">╭─</text><text class="terminal-998746027-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-998746027-line-5)">&#160;Basic&#160;usage&#160;───────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-998746027-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-998746027-l [...]
+</text><text class="terminal-998746027-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-998746027-line-6)">│</text><text class="terminal-998746027-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-998746027-line-6)">-</text><text class="terminal-998746027-r4" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-998746027-line-6)">-python</text><text class="terminal-998746027-r6" x="427" y="166.4" textLength="24.4" clip-path="url(#terminal-998746027- [...]
+</text><text class="terminal-998746027-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-998746027-line-7)">│</text><text class="terminal-998746027-r7" x="475.8" y="190.8" textLength="732" clip-path="url(#terminal-998746027-line-7)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10&#160;|&#160;3.11)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</tex [...]
+</text><text class="terminal-998746027-r5" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-998746027-line-8)">│</text><text class="terminal-998746027-r5" x="475.8" y="215.2" textLength="732" clip-path="url(#terminal-998746027-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-998746027-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-998746027-line-9)">│</text><text class="terminal-998746027-r4" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-998746027-line-9)">-</text><text class="terminal-998746027-r4" x="36.6" y="239.6" textLength="97.6" clip-path="url(#terminal-998746027-line-9)">-upgrade</text><text class="terminal-998746027-r4" x="134.2" y="239.6" textLength="268.4" clip-path="url(#terminal-998746 [...]
+</text><text class="terminal-998746027-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-998746027-line-10)">│</text><text class="terminal-998746027-r4" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-998746027-line-10)">-</text><text class="terminal-998746027-r4" x="36.6" y="264" textLength="97.6" clip-path="url(#terminal-998746027-line-10)">-upgrade</text><text class="terminal-998746027-r4" x="134.2" y="264" textLength="134.2" clip-path="url(#terminal-998746027-l [...]
+</text><text class="terminal-998746027-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-998746027-line-11)">│</text><text class="terminal-998746027-r2" x="475.8" y="288.4" textLength="963.8" clip-path="url(#terminal-998746027-line-11)">fails.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
+</text><text class="terminal-998746027-r5" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-998746027-line-12)">│</text><text class="terminal-998746027-r4" x="24.4" y="312.8" textLength="12.2" clip-path="url(#terminal-998746027-line-12)">-</text><text class="terminal-998746027-r4" x="36.6" y="312.8" textLength="73.2" clip-path="url(#terminal-998746027-line-12)">-image</text><text class="terminal-998746027-r4" x="109.8" y="312.8" textLength="48.8" clip-path="url(#terminal-998746 [...]
+</text><text class="terminal-998746027-r5" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-998746027-line-13)">│</text><text class="terminal-998746027-r4" x="24.4" y="337.2" textLength="12.2" clip-path="url(#terminal-998746027-line-13)">-</text><text class="terminal-998746027-r4" x="36.6" y="337.2" textLength="48.8" clip-path="url(#terminal-998746027-line-13)">-tag</text><text class="terminal-998746027-r4" x="85.4" y="337.2" textLength="122" clip-path="url(#terminal-998746027- [...]
+</text><text class="terminal-998746027-r5" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-998746027-line-14)">│</text><text class="terminal-998746027-r2" x="475.8" y="361.6" textLength="414.8" clip-path="url(#terminal-998746027-line-14)">when&#160;you&#160;build&#160;or&#160;pull&#160;image&#160;with&#160;</text><text class="terminal-998746027-r4" x="890.6" y="361.6" textLength="12.2" clip-path="url(#terminal-998746027-line-14)">-</text><text class="terminal-998746027-r4" x=" [...]
+</text><text class="terminal-998746027-r5" x="0" y="386" textLength="12.2" clip-path="url(#terminal-998746027-line-15)">│</text><text class="terminal-998746027-r4" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-998746027-line-15)">-</text><text class="terminal-998746027-r4" x="36.6" y="386" textLength="85.4" clip-path="url(#terminal-998746027-line-15)">-docker</text><text class="terminal-998746027-r4" x="122" y="386" textLength="73.2" clip-path="url(#terminal-998746027-line- [...]
+</text><text class="terminal-998746027-r5" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-998746027-line-16)">│</text><text class="terminal-998746027-r5" x="475.8" y="410.4" textLength="549" clip-path="url(#terminal-998746027-line-16)">[default:&#160;registry]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-998746027-r5" x="1451.8" y="410.4"  [...]
+</text><text class="terminal-998746027-r5" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-998746027-line-17)">│</text><text class="terminal-998746027-r4" x="24.4" y="434.8" textLength="12.2" clip-path="url(#terminal-998746027-line-17)">-</text><text class="terminal-998746027-r4" x="36.6" y="434.8" textLength="73.2" clip-path="url(#terminal-998746027-line-17)">-force</text><text class="terminal-998746027-r4" x="109.8" y="434.8" textLength="73.2" clip-path="url(#terminal-998746 [...]
+</text><text class="terminal-998746027-r5" x="0" y="459.2" textLength="1464" clip-path="url(#terminal-998746027-line-18)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-998746027-r2" x="1464" y="459.2" textLength="12.2" clip-path="url(#terminal-998746027-line-18)">
+</text><text class="terminal-998746027-r5" x="0" y="483.6" textLength="24.4" clip-path="url(#terminal-998746027-line-19)">╭─</text><text class="terminal-998746027-r5" x="24.4" y="483.6" textLength="1415.2" clip-path="url(#terminal-998746027-line-19)">&#160;Building&#160;images&#160;in&#160;parallel&#160;───────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-998746027-r5" x="1439.6" y="483.6" textLength="24.4" clip-path="url(#te [...]
+</text><text class="terminal-998746027-r5" x="0" y="508" textLength="12.2" clip-path="url(#terminal-998746027-line-20)">│</text><text class="terminal-998746027-r4" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-998746027-line-20)">-</text><text class="terminal-998746027-r4" x="36.6" y="508" textLength="48.8" clip-path="url(#terminal-998746027-line-20)">-run</text><text class="terminal-998746027-r4" x="85.4" y="508" textLength="146.4" clip-path="url(#terminal-998746027-line-2 [...]
+</text><text class="terminal-998746027-r5" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-998746027-line-21)">│</text><text class="terminal-998746027-r4" x="24.4" y="532.4" textLength="12.2" clip-path="url(#terminal-998746027-line-21)">-</text><text class="terminal-998746027-r4" x="36.6" y="532.4" textLength="146.4" clip-path="url(#terminal-998746027-line-21)">-parallelism</text><text class="terminal-998746027-r2" x="378.2" y="532.4" textLength="915" clip-path="url(#terminal- [...]
+</text><text class="terminal-998746027-r5" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-998746027-line-22)">│</text><text class="terminal-998746027-r7" x="378.2" y="556.8" textLength="915" clip-path="url(#terminal-998746027-line-22)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
+</text><text class="terminal-998746027-r5" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-998746027-line-23)">│</text><text class="terminal-998746027-r5" x="378.2" y="581.2" textLength="915" clip-path="url(#terminal-998746027-line-23)">[default:&#160;4;&#160;1&lt;=x&lt;=8]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
+</text><text class="terminal-998746027-r5" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-998746027-line-24)">│</text><text class="terminal-998746027-r4" x="24.4" y="605.6" textLength="12.2" clip-path="url(#terminal-998746027-line-24)">-</text><text class="terminal-998746027-r4" x="36.6" y="605.6" textLength="85.4" clip-path="url(#terminal-998746027-line-24)">-python</text><text class="terminal-998746027-r4" x="122" y="605.6" textLength="109.8" clip-path="url(#terminal-998746 [...]
+</text><text class="terminal-998746027-r5" x="0" y="630" textLength="12.2" clip-path="url(#terminal-998746027-line-25)">│</text><text class="terminal-998746027-r5" x="378.2" y="630" textLength="951.6" clip-path="url(#terminal-998746027-line-25)">[default:&#160;3.7&#160;3.8&#160;3.9&#160;3.10&#160;3.11]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
+</text><text class="terminal-998746027-r5" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-998746027-line-26)">│</text><text class="terminal-998746027-r4" x="24.4" y="654.4" textLength="12.2" clip-path="url(#terminal-998746027-line-26)">-</text><text class="terminal-998746027-r4" x="36.6" y="654.4" textLength="61" clip-path="url(#terminal-998746027-line-26)">-skip</text><text class="terminal-998746027-r4" x="97.6" y="654.4" textLength="97.6" clip-path="url(#terminal-998746027- [...]
+</text><text class="terminal-998746027-r5" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-998746027-line-27)">│</text><text class="terminal-998746027-r4" x="24.4" y="678.8" textLength="12.2" clip-path="url(#terminal-998746027-line-27)">-</text><text class="terminal-998746027-r4" x="36.6" y="678.8" textLength="73.2" clip-path="url(#terminal-998746027-line-27)">-debug</text><text class="terminal-998746027-r4" x="109.8" y="678.8" textLength="122" clip-path="url(#terminal-9987460 [...]
+</text><text class="terminal-998746027-r5" x="0" y="703.2" textLength="12.2" clip-path="url(#terminal-998746027-line-28)">│</text><text class="terminal-998746027-r4" x="24.4" y="703.2" textLength="12.2" clip-path="url(#terminal-998746027-line-28)">-</text><text class="terminal-998746027-r4" x="36.6" y="703.2" textLength="97.6" clip-path="url(#terminal-998746027-line-28)">-include</text><text class="terminal-998746027-r4" x="134.2" y="703.2" textLength="195.2" clip-path="url(#terminal-998 [...]
+</text><text class="terminal-998746027-r5" x="0" y="727.6" textLength="1464" clip-path="url(#terminal-998746027-line-29)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-998746027-r2" x="1464" y="727.6" textLength="12.2" clip-path="url(#terminal-998746027-line-29)">
+</text><text class="terminal-998746027-r5" x="0" y="752" textLength="24.4" clip-path="url(#terminal-998746027-line-30)">╭─</text><text class="terminal-998746027-r5" x="24.4" y="752" textLength="1415.2" clip-path="url(#terminal-998746027-line-30)">&#160;Advanced&#160;options&#160;(for&#160;power&#160;users)&#160;────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-998746027-r5" x="1439.6" y="752" textLength="24.4" clip-path="url(#ter [...]
+</text><text class="terminal-998746027-r5" x="0" y="776.4" textLength="12.2" clip-path="url(#terminal-998746027-line-31)">│</text><text class="terminal-998746027-r4" x="24.4" y="776.4" textLength="12.2" clip-path="url(#terminal-998746027-line-31)">-</text><text class="terminal-998746027-r4" x="36.6" y="776.4" textLength="97.6" clip-path="url(#terminal-998746027-line-31)">-builder</text><text class="terminal-998746027-r2" x="463.6" y="776.4" textLength="756.4" clip-path="url(#terminal-998 [...]
+</text><text class="terminal-998746027-r5" x="0" y="800.8" textLength="12.2" clip-path="url(#terminal-998746027-line-32)">│</text><text class="terminal-998746027-r4" x="24.4" y="800.8" textLength="12.2" clip-path="url(#terminal-998746027-line-32)">-</text><text class="terminal-998746027-r4" x="36.6" y="800.8" textLength="97.6" clip-path="url(#terminal-998746027-line-32)">-install</text><text class="terminal-998746027-r4" x="134.2" y="800.8" textLength="280.6" clip-path="url(#terminal-998 [...]
+</text><text class="terminal-998746027-r5" x="0" y="825.2" textLength="12.2" clip-path="url(#terminal-998746027-line-33)">│</text><text class="terminal-998746027-r4" x="24.4" y="825.2" textLength="12.2" clip-path="url(#terminal-998746027-line-33)">-</text><text class="terminal-998746027-r4" x="36.6" y="825.2" textLength="97.6" clip-path="url(#terminal-998746027-line-33)">-airflow</text><text class="terminal-998746027-r4" x="134.2" y="825.2" textLength="207.4" clip-path="url(#terminal-998 [...]
+</text><text class="terminal-998746027-r5" x="0" y="849.6" textLength="12.2" clip-path="url(#terminal-998746027-line-34)">│</text><text class="terminal-998746027-r7" x="463.6" y="849.6" textLength="866.2" clip-path="url(#terminal-998746027-line-34)">(constraints-source-providers&#160;|&#160;constraints&#160;|&#160;constraints-no-providers)</text><text class="terminal-998746027-r5" x="1451.8" y="849.6" textLength="12.2" clip-path="url(#terminal-998746027-line-34)">│</text><text class="ter [...]
+</text><text class="terminal-998746027-r5" x="0" y="874" textLength="12.2" clip-path="url(#terminal-998746027-line-35)">│</text><text class="terminal-998746027-r5" x="463.6" y="874" textLength="866.2" clip-path="url(#terminal-998746027-line-35)">[default:&#160;constraints-source-providers]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><te [...]
+</text><text class="terminal-998746027-r5" x="0" y="898.4" textLength="12.2" clip-path="url(#terminal-998746027-line-36)">│</text><text class="terminal-998746027-r4" x="24.4" y="898.4" textLength="12.2" clip-path="url(#terminal-998746027-line-36)">-</text><text class="terminal-998746027-r4" x="36.6" y="898.4" textLength="97.6" clip-path="url(#terminal-998746027-line-36)">-airflow</text><text class="terminal-998746027-r4" x="134.2" y="898.4" textLength="268.4" clip-path="url(#terminal-998 [...]
+</text><text class="terminal-998746027-r5" x="0" y="922.8" textLength="12.2" clip-path="url(#terminal-998746027-line-37)">│</text><text class="terminal-998746027-r4" x="24.4" y="922.8" textLength="12.2" clip-path="url(#terminal-998746027-line-37)">-</text><text class="terminal-998746027-r4" x="36.6" y="922.8" textLength="85.4" clip-path="url(#terminal-998746027-line-37)">-python</text><text class="terminal-998746027-r4" x="122" y="922.8" textLength="73.2" clip-path="url(#terminal-9987460 [...]
+</text><text class="terminal-998746027-r5" x="0" y="947.2" textLength="12.2" clip-path="url(#terminal-998746027-line-38)">│</text><text class="terminal-998746027-r2" x="463.6" y="947.2" textLength="280.6" clip-path="url(#terminal-998746027-line-38)">something&#160;like:&#160;python:</text><text class="terminal-998746027-r4" x="744.2" y="947.2" textLength="85.4" clip-path="url(#terminal-998746027-line-38)">VERSION</text><text class="terminal-998746027-r2" x="829.6" y="947.2" textLength="6 [...]
+</text><text class="terminal-998746027-r5" x="0" y="971.6" textLength="12.2" clip-path="url(#terminal-998746027-line-39)">│</text><text class="terminal-998746027-r7" x="463.6" y="971.6" textLength="976" clip-path="url(#terminal-998746027-line-39)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
+</text><text class="terminal-998746027-r5" x="0" y="996" textLength="12.2" clip-path="url(#terminal-998746027-line-40)">│</text><text class="terminal-998746027-r4" x="24.4" y="996" textLength="12.2" clip-path="url(#terminal-998746027-line-40)">-</text><text class="terminal-998746027-r4" x="36.6" y="996" textLength="134.2" clip-path="url(#terminal-998746027-line-40)">-additional</text><text class="terminal-998746027-r4" x="170.8" y="996" textLength="146.4" clip-path="url(#terminal-9987460 [...]
+</text><text class="terminal-998746027-r5" x="0" y="1020.4" textLength="12.2" clip-path="url(#terminal-998746027-line-41)">│</text><text class="terminal-998746027-r4" x="24.4" y="1020.4" textLength="12.2" clip-path="url(#terminal-998746027-line-41)">-</text><text class="terminal-998746027-r4" x="36.6" y="1020.4" textLength="134.2" clip-path="url(#terminal-998746027-line-41)">-additional</text><text class="terminal-998746027-r4" x="170.8" y="1020.4" textLength="85.4" clip-path="url(#termi [...]
+</text><text class="terminal-998746027-r5" x="0" y="1044.8" textLength="12.2" clip-path="url(#terminal-998746027-line-42)">│</text><text class="terminal-998746027-r4" x="24.4" y="1044.8" textLength="12.2" clip-path="url(#terminal-998746027-line-42)">-</text><text class="terminal-998746027-r4" x="36.6" y="1044.8" textLength="134.2" clip-path="url(#terminal-998746027-line-42)">-additional</text><text class="terminal-998746027-r4" x="170.8" y="1044.8" textLength="219.6" clip-path="url(#term [...]
+</text><text class="terminal-998746027-r5" x="0" y="1069.2" textLength="12.2" clip-path="url(#terminal-998746027-line-43)">│</text><text class="terminal-998746027-r2" x="463.6" y="1069.2" textLength="976" clip-path="url(#terminal-998746027-line-43)">itself).&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
+</text><text class="terminal-998746027-r5" x="0" y="1093.6" textLength="12.2" clip-path="url(#terminal-998746027-line-44)">│</text><text class="terminal-998746027-r7" x="463.6" y="1093.6" textLength="976" clip-path="url(#terminal-998746027-line-44)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
+</text><text class="terminal-998746027-r5" x="0" y="1118" textLength="12.2" clip-path="url(#terminal-998746027-line-45)">│</text><text class="terminal-998746027-r4" x="24.4" y="1118" textLength="12.2" clip-path="url(#terminal-998746027-line-45)">-</text><text class="terminal-998746027-r4" x="36.6" y="1118" textLength="134.2" clip-path="url(#terminal-998746027-line-45)">-additional</text><text class="terminal-998746027-r4" x="170.8" y="1118" textLength="158.6" clip-path="url(#terminal-998 [...]
+</text><text class="terminal-998746027-r5" x="0" y="1142.4" textLength="12.2" clip-path="url(#terminal-998746027-line-46)">│</text><text class="terminal-998746027-r4" x="24.4" y="1142.4" textLength="12.2" clip-path="url(#terminal-998746027-line-46)">-</text><text class="terminal-998746027-r4" x="36.6" y="1142.4" textLength="134.2" clip-path="url(#terminal-998746027-line-46)">-additional</text><text class="terminal-998746027-r4" x="170.8" y="1142.4" textLength="146.4" clip-path="url(#term [...]
+</text><text class="terminal-998746027-r5" x="0" y="1166.8" textLength="12.2" clip-path="url(#terminal-998746027-line-47)">│</text><text class="terminal-998746027-r4" x="24.4" y="1166.8" textLength="12.2" clip-path="url(#terminal-998746027-line-47)">-</text><text class="terminal-998746027-r4" x="36.6" y="1166.8" textLength="134.2" clip-path="url(#terminal-998746027-line-47)">-additional</text><text class="terminal-998746027-r4" x="170.8" y="1166.8" textLength="195.2" clip-path="url(#term [...]
+</text><text class="terminal-998746027-r5" x="0" y="1191.2" textLength="12.2" clip-path="url(#terminal-998746027-line-48)">│</text><text class="terminal-998746027-r4" x="24.4" y="1191.2" textLength="12.2" clip-path="url(#terminal-998746027-line-48)">-</text><text class="terminal-998746027-r4" x="36.6" y="1191.2" textLength="48.8" clip-path="url(#terminal-998746027-line-48)">-dev</text><text class="terminal-998746027-r4" x="85.4" y="1191.2" textLength="109.8" clip-path="url(#terminal-9987 [...]
+</text><text class="terminal-998746027-r5" x="0" y="1215.6" textLength="12.2" clip-path="url(#terminal-998746027-line-49)">│</text><text class="terminal-998746027-r4" x="24.4" y="1215.6" textLength="12.2" clip-path="url(#terminal-998746027-line-49)">-</text><text class="terminal-998746027-r4" x="36.6" y="1215.6" textLength="48.8" clip-path="url(#terminal-998746027-line-49)">-dev</text><text class="terminal-998746027-r4" x="85.4" y="1215.6" textLength="146.4" clip-path="url(#terminal-9987 [...]
+</text><text class="terminal-998746027-r5" x="0" y="1240" textLength="1464" clip-path="url(#terminal-998746027-line-50)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-998746027-r2" x="1464" y="1240" textLength="12.2" clip-path="url(#terminal-998746027-line-50)">
+</text><text class="terminal-998746027-r5" x="0" y="1264.4" textLength="24.4" clip-path="url(#terminal-998746027-line-51)">╭─</text><text class="terminal-998746027-r5" x="24.4" y="1264.4" textLength="1415.2" clip-path="url(#terminal-998746027-line-51)">&#160;Preparing&#160;cache&#160;and&#160;push&#160;(for&#160;maintainers&#160;and&#160;CI)&#160;─────────────────────────────────────────────────────────────────</text><text class="terminal-998746027-r5" x="1439.6" y="1264.4" textLength="2 [...]
+</text><text class="terminal-998746027-r5" x="0" y="1288.8" textLength="12.2" clip-path="url(#terminal-998746027-line-52)">│</text><text class="terminal-998746027-r4" x="24.4" y="1288.8" textLength="12.2" clip-path="url(#terminal-998746027-line-52)">-</text><text class="terminal-998746027-r4" x="36.6" y="1288.8" textLength="85.4" clip-path="url(#terminal-998746027-line-52)">-github</text><text class="terminal-998746027-r4" x="122" y="1288.8" textLength="73.2" clip-path="url(#terminal-998 [...]
+</text><text class="terminal-998746027-r5" x="0" y="1313.2" textLength="12.2" clip-path="url(#terminal-998746027-line-53)">│</text><text class="terminal-998746027-r4" x="24.4" y="1313.2" textLength="12.2" clip-path="url(#terminal-998746027-line-53)">-</text><text class="terminal-998746027-r4" x="36.6" y="1313.2" textLength="85.4" clip-path="url(#terminal-998746027-line-53)">-github</text><text class="terminal-998746027-r4" x="122" y="1313.2" textLength="109.8" clip-path="url(#terminal-99 [...]
+</text><text class="terminal-998746027-r5" x="0" y="1337.6" textLength="12.2" clip-path="url(#terminal-998746027-line-54)">│</text><text class="terminal-998746027-r4" x="24.4" y="1337.6" textLength="12.2" clip-path="url(#terminal-998746027-line-54)">-</text><text class="terminal-998746027-r4" x="36.6" y="1337.6" textLength="109.8" clip-path="url(#terminal-998746027-line-54)">-platform</text><text class="terminal-998746027-r2" x="341.6" y="1337.6" textLength="329.4" clip-path="url(#termin [...]
+</text><text class="terminal-998746027-r5" x="0" y="1362" textLength="12.2" clip-path="url(#terminal-998746027-line-55)">│</text><text class="terminal-998746027-r4" x="24.4" y="1362" textLength="12.2" clip-path="url(#terminal-998746027-line-55)">-</text><text class="terminal-998746027-r4" x="36.6" y="1362" textLength="61" clip-path="url(#terminal-998746027-line-55)">-push</text><text class="terminal-998746027-r2" x="341.6" y="1362" textLength="353.8" clip-path="url(#terminal-998746027-li [...]
+</text><text class="terminal-998746027-r5" x="0" y="1386.4" textLength="12.2" clip-path="url(#terminal-998746027-line-56)">│</text><text class="terminal-998746027-r4" x="24.4" y="1386.4" textLength="12.2" clip-path="url(#terminal-998746027-line-56)">-</text><text class="terminal-998746027-r4" x="36.6" y="1386.4" textLength="73.2" clip-path="url(#terminal-998746027-line-56)">-empty</text><text class="terminal-998746027-r4" x="109.8" y="1386.4" textLength="73.2" clip-path="url(#terminal-99 [...]
+</text><text class="terminal-998746027-r5" x="0" y="1410.8" textLength="12.2" clip-path="url(#terminal-998746027-line-57)">│</text><text class="terminal-998746027-r4" x="24.4" y="1410.8" textLength="12.2" clip-path="url(#terminal-998746027-line-57)">-</text><text class="terminal-998746027-r4" x="36.6" y="1410.8" textLength="97.6" clip-path="url(#terminal-998746027-line-57)">-prepare</text><text class="terminal-998746027-r4" x="134.2" y="1410.8" textLength="158.6" clip-path="url(#terminal [...]
+</text><text class="terminal-998746027-r5" x="0" y="1435.2" textLength="12.2" clip-path="url(#terminal-998746027-line-58)">│</text><text class="terminal-998746027-r2" x="341.6" y="1435.2" textLength="1098" clip-path="url(#terminal-998746027-line-58)">image).&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
+</text><text class="terminal-998746027-r5" x="0" y="1459.6" textLength="1464" clip-path="url(#terminal-998746027-line-59)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-998746027-r2" x="1464" y="1459.6" textLength="12.2" clip-path="url(#terminal-998746027-line-59)">
+</text><text class="terminal-998746027-r5" x="0" y="1484" textLength="24.4" clip-path="url(#terminal-998746027-line-60)">╭─</text><text class="terminal-998746027-r5" x="24.4" y="1484" textLength="1415.2" clip-path="url(#terminal-998746027-line-60)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-998746027-r5" x="1439.6" y="1484" textLength="24.4" clip-path="url(#terminal-998746 [...]
+</text><text class="terminal-998746027-r5" x="0" y="1508.4" textLength="12.2" clip-path="url(#terminal-998746027-line-61)">│</text><text class="terminal-998746027-r4" x="24.4" y="1508.4" textLength="12.2" clip-path="url(#terminal-998746027-line-61)">-</text><text class="terminal-998746027-r4" x="36.6" y="1508.4" textLength="85.4" clip-path="url(#terminal-998746027-line-61)">-github</text><text class="terminal-998746027-r4" x="122" y="1508.4" textLength="134.2" clip-path="url(#terminal-99 [...]
+</text><text class="terminal-998746027-r5" x="0" y="1532.8" textLength="12.2" clip-path="url(#terminal-998746027-line-62)">│</text><text class="terminal-998746027-r4" x="24.4" y="1532.8" textLength="12.2" clip-path="url(#terminal-998746027-line-62)">-</text><text class="terminal-998746027-r4" x="36.6" y="1532.8" textLength="97.6" clip-path="url(#terminal-998746027-line-62)">-verbose</text><text class="terminal-998746027-r6" x="280.6" y="1532.8" textLength="24.4" clip-path="url(#terminal- [...]
+</text><text class="terminal-998746027-r5" x="0" y="1557.2" textLength="12.2" clip-path="url(#terminal-998746027-line-63)">│</text><text class="terminal-998746027-r4" x="24.4" y="1557.2" textLength="12.2" clip-path="url(#terminal-998746027-line-63)">-</text><text class="terminal-998746027-r4" x="36.6" y="1557.2" textLength="48.8" clip-path="url(#terminal-998746027-line-63)">-dry</text><text class="terminal-998746027-r4" x="85.4" y="1557.2" textLength="48.8" clip-path="url(#terminal-99874 [...]
+</text><text class="terminal-998746027-r5" x="0" y="1581.6" textLength="12.2" clip-path="url(#terminal-998746027-line-64)">│</text><text class="terminal-998746027-r4" x="24.4" y="1581.6" textLength="12.2" clip-path="url(#terminal-998746027-line-64)">-</text><text class="terminal-998746027-r4" x="36.6" y="1581.6" textLength="85.4" clip-path="url(#terminal-998746027-line-64)">-answer</text><text class="terminal-998746027-r6" x="280.6" y="1581.6" textLength="24.4" clip-path="url(#terminal-9 [...]
+</text><text class="terminal-998746027-r5" x="0" y="1606" textLength="12.2" clip-path="url(#terminal-998746027-line-65)">│</text><text class="terminal-998746027-r4" x="24.4" y="1606" textLength="12.2" clip-path="url(#terminal-998746027-line-65)">-</text><text class="terminal-998746027-r4" x="36.6" y="1606" textLength="61" clip-path="url(#terminal-998746027-line-65)">-help</text><text class="terminal-998746027-r6" x="280.6" y="1606" textLength="24.4" clip-path="url(#terminal-998746027-lin [...]
+</text><text class="terminal-998746027-r5" x="0" y="1630.4" textLength="1464" clip-path="url(#terminal-998746027-line-66)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-998746027-r2" x="1464" y="1630.4" textLength="12.2" clip-path="url(#terminal-998746027-line-66)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_ci-image_pull.svg b/images/breeze/output_ci-image_pull.svg
index abcc06b9b3..6f2119c6b3 100644
--- a/images/breeze/output_ci-image_pull.svg
+++ b/images/breeze/output_ci-image_pull.svg
@@ -19,169 +19,169 @@
         font-weight: 700;
     }
 
-    .terminal-1876190902-matrix {
+    .terminal-2343659416-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-1876190902-title {
+    .terminal-2343659416-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-1876190902-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-1876190902-r2 { fill: #c5c8c6 }
-.terminal-1876190902-r3 { fill: #d0b344;font-weight: bold }
-.terminal-1876190902-r4 { fill: #868887 }
-.terminal-1876190902-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-1876190902-r6 { fill: #98a84b;font-weight: bold }
-.terminal-1876190902-r7 { fill: #8d7b39 }
+    .terminal-2343659416-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-2343659416-r2 { fill: #c5c8c6 }
+.terminal-2343659416-r3 { fill: #d0b344;font-weight: bold }
+.terminal-2343659416-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-2343659416-r5 { fill: #868887 }
+.terminal-2343659416-r6 { fill: #98a84b;font-weight: bold }
+.terminal-2343659416-r7 { fill: #8d7b39 }
     </style>
 
     <defs>
-    <clipPath id="terminal-1876190902-clip-terminal">
+    <clipPath id="terminal-2343659416-clip-terminal">
       <rect x="0" y="0" width="1463.0" height="779.8" />
     </clipPath>
-    <clipPath id="terminal-1876190902-line-0">
+    <clipPath id="terminal-2343659416-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-1">
+<clipPath id="terminal-2343659416-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-2">
+<clipPath id="terminal-2343659416-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-3">
+<clipPath id="terminal-2343659416-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-4">
+<clipPath id="terminal-2343659416-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-5">
+<clipPath id="terminal-2343659416-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-6">
+<clipPath id="terminal-2343659416-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-7">
+<clipPath id="terminal-2343659416-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-8">
+<clipPath id="terminal-2343659416-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-9">
+<clipPath id="terminal-2343659416-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-10">
+<clipPath id="terminal-2343659416-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-11">
+<clipPath id="terminal-2343659416-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-12">
+<clipPath id="terminal-2343659416-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-13">
+<clipPath id="terminal-2343659416-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-14">
+<clipPath id="terminal-2343659416-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-15">
+<clipPath id="terminal-2343659416-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-16">
+<clipPath id="terminal-2343659416-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-17">
+<clipPath id="terminal-2343659416-line-17">
     <rect x="0" y="416.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-18">
+<clipPath id="terminal-2343659416-line-18">
     <rect x="0" y="440.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-19">
+<clipPath id="terminal-2343659416-line-19">
     <rect x="0" y="465.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-20">
+<clipPath id="terminal-2343659416-line-20">
     <rect x="0" y="489.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-21">
+<clipPath id="terminal-2343659416-line-21">
     <rect x="0" y="513.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-22">
+<clipPath id="terminal-2343659416-line-22">
     <rect x="0" y="538.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-23">
+<clipPath id="terminal-2343659416-line-23">
     <rect x="0" y="562.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-24">
+<clipPath id="terminal-2343659416-line-24">
     <rect x="0" y="587.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-25">
+<clipPath id="terminal-2343659416-line-25">
     <rect x="0" y="611.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-26">
+<clipPath id="terminal-2343659416-line-26">
     <rect x="0" y="635.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-27">
+<clipPath id="terminal-2343659416-line-27">
     <rect x="0" y="660.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-28">
+<clipPath id="terminal-2343659416-line-28">
     <rect x="0" y="684.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-29">
+<clipPath id="terminal-2343659416-line-29">
     <rect x="0" y="709.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1876190902-line-30">
+<clipPath id="terminal-2343659416-line-30">
     <rect x="0" y="733.5" width="1464" height="24.65"/>
             </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="828.8" rx="8"/><text class="terminal-1876190902-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;ci-image&#160;pull</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="828.8" rx="8"/><text class="terminal-2343659416-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;ci-image&#160;pull</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-1876190902-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-2343659416-clip-terminal)">
     
-    <g class="terminal-1876190902-matrix">
-    <text class="terminal-1876190902-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-1876190902-line-0)">
-</text><text class="terminal-1876190902-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-1876190902-line-1)">Usage:&#160;</text><text class="terminal-1876190902-r1" x="97.6" y="44.4" textLength="646.6" clip-path="url(#terminal-1876190902-line-1)">breeze&#160;ci-image&#160;pull&#160;[OPTIONS]&#160;[EXTRA_PYTEST_ARGS]...</text><text class="terminal-1876190902-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-1876190902-line-1)">
-</text><text class="terminal-1876190902-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-1876190902-line-2)">
-</text><text class="terminal-1876190902-r2" x="12.2" y="93.2" textLength="1024.8" clip-path="url(#terminal-1876190902-line-3)">Pull&#160;and&#160;optionally&#160;verify&#160;CI&#160;images&#160;-&#160;possibly&#160;in&#160;parallel&#160;for&#160;all&#160;Python&#160;versions.</text><text class="terminal-1876190902-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-1876190902-line-3)">
-</text><text class="terminal-1876190902-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-1876190902-line-4)">
-</text><text class="terminal-1876190902-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-1876190902-line-5)">╭─</text><text class="terminal-1876190902-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-1876190902-line-5)">&#160;Pull&#160;image&#160;flags&#160;──────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1876190902-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-1 [...]
-</text><text class="terminal-1876190902-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-1876190902-line-6)">│</text><text class="terminal-1876190902-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-1876190902-line-6)">-</text><text class="terminal-1876190902-r5" x="36.6" y="166.4" textLength="73.2" clip-path="url(#terminal-1876190902-line-6)">-image</text><text class="terminal-1876190902-r5" x="109.8" y="166.4" textLength="48.8" clip-path="url(#terminal-18 [...]
-</text><text class="terminal-1876190902-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-1876190902-line-7)">│</text><text class="terminal-1876190902-r5" x="24.4" y="190.8" textLength="12.2" clip-path="url(#terminal-1876190902-line-7)">-</text><text class="terminal-1876190902-r5" x="36.6" y="190.8" textLength="85.4" clip-path="url(#terminal-1876190902-line-7)">-python</text><text class="terminal-1876190902-r6" x="244" y="190.8" textLength="24.4" clip-path="url(#terminal-187 [...]
-</text><text class="terminal-1876190902-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-1876190902-line-8)">│</text><text class="terminal-1876190902-r4" x="292.8" y="215.2" textLength="732" clip-path="url(#terminal-1876190902-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-1876190902-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-1876190902-line-9)">│</text><text class="terminal-1876190902-r5" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-1876190902-line-9)">-</text><text class="terminal-1876190902-r5" x="36.6" y="239.6" textLength="85.4" clip-path="url(#terminal-1876190902-line-9)">-github</text><text class="terminal-1876190902-r5" x="122" y="239.6" textLength="73.2" clip-path="url(#terminal-187 [...]
-</text><text class="terminal-1876190902-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-1876190902-line-10)">│</text><text class="terminal-1876190902-r5" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-1876190902-line-10)">-</text><text class="terminal-1876190902-r5" x="36.6" y="264" textLength="85.4" clip-path="url(#terminal-1876190902-line-10)">-verify</text><text class="terminal-1876190902-r2" x="292.8" y="264" textLength="158.6" clip-path="url(#terminal-18761 [...]
-</text><text class="terminal-1876190902-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-1876190902-line-11)">│</text><text class="terminal-1876190902-r5" x="24.4" y="288.4" textLength="12.2" clip-path="url(#terminal-1876190902-line-11)">-</text><text class="terminal-1876190902-r5" x="36.6" y="288.4" textLength="61" clip-path="url(#terminal-1876190902-line-11)">-wait</text><text class="terminal-1876190902-r5" x="97.6" y="288.4" textLength="122" clip-path="url(#terminal-1876 [...]
-</text><text class="terminal-1876190902-r4" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-1876190902-line-12)">│</text><text class="terminal-1876190902-r5" x="24.4" y="312.8" textLength="12.2" clip-path="url(#terminal-1876190902-line-12)">-</text><text class="terminal-1876190902-r5" x="36.6" y="312.8" textLength="48.8" clip-path="url(#terminal-1876190902-line-12)">-tag</text><text class="terminal-1876190902-r5" x="85.4" y="312.8" textLength="122" clip-path="url(#terminal-187 [...]
-</text><text class="terminal-1876190902-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-1876190902-line-13)">│</text><text class="terminal-1876190902-r2" x="292.8" y="337.2" textLength="231.8" clip-path="url(#terminal-1876190902-line-13)">or&#160;pull&#160;image&#160;with&#160;</text><text class="terminal-1876190902-r5" x="524.6" y="337.2" textLength="12.2" clip-path="url(#terminal-1876190902-line-13)">-</text><text class="terminal-1876190902-r5" x="536.8" y="337.2" textLe [...]
-</text><text class="terminal-1876190902-r4" x="0" y="361.6" textLength="1464" clip-path="url(#terminal-1876190902-line-14)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1876190902-r2" x="1464" y="361.6" textLength="12.2" clip-path="url(#terminal-1876190902-line-14)">
-</text><text class="terminal-1876190902-r4" x="0" y="386" textLength="24.4" clip-path="url(#terminal-1876190902-line-15)">╭─</text><text class="terminal-1876190902-r4" x="24.4" y="386" textLength="1415.2" clip-path="url(#terminal-1876190902-line-15)">&#160;Parallel&#160;running&#160;──────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1876190902-r4" x="1439.6" y="386" textLength="24.4" clip-path="url(#terminal-1876 [...]
-</text><text class="terminal-1876190902-r4" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-1876190902-line-16)">│</text><text class="terminal-1876190902-r5" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-1876190902-line-16)">-</text><text class="terminal-1876190902-r5" x="36.6" y="410.4" textLength="48.8" clip-path="url(#terminal-1876190902-line-16)">-run</text><text class="terminal-1876190902-r5" x="85.4" y="410.4" textLength="146.4" clip-path="url(#terminal-1 [...]
-</text><text class="terminal-1876190902-r4" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-1876190902-line-17)">│</text><text class="terminal-1876190902-r5" x="24.4" y="434.8" textLength="12.2" clip-path="url(#terminal-1876190902-line-17)">-</text><text class="terminal-1876190902-r5" x="36.6" y="434.8" textLength="146.4" clip-path="url(#terminal-1876190902-line-17)">-parallelism</text><text class="terminal-1876190902-r2" x="378.2" y="434.8" textLength="915" clip-path="url(#te [...]
-</text><text class="terminal-1876190902-r4" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-1876190902-line-18)">│</text><text class="terminal-1876190902-r7" x="378.2" y="459.2" textLength="915" clip-path="url(#terminal-1876190902-line-18)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
-</text><text class="terminal-1876190902-r4" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-1876190902-line-19)">│</text><text class="terminal-1876190902-r4" x="378.2" y="483.6" textLength="915" clip-path="url(#terminal-1876190902-line-19)">[default:&#160;4;&#160;1&lt;=x&lt;=8]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-1876190902-r4" x="0" y="508" textLength="12.2" clip-path="url(#terminal-1876190902-line-20)">│</text><text class="terminal-1876190902-r5" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-1876190902-line-20)">-</text><text class="terminal-1876190902-r5" x="36.6" y="508" textLength="85.4" clip-path="url(#terminal-1876190902-line-20)">-python</text><text class="terminal-1876190902-r5" x="122" y="508" textLength="109.8" clip-path="url(#terminal-1876190 [...]
-</text><text class="terminal-1876190902-r4" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-1876190902-line-21)">│</text><text class="terminal-1876190902-r4" x="378.2" y="532.4" textLength="951.6" clip-path="url(#terminal-1876190902-line-21)">[default:&#160;3.7&#160;3.8&#160;3.9&#160;3.10]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-1876190902-r4" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-1876190902-line-22)">│</text><text class="terminal-1876190902-r5" x="24.4" y="556.8" textLength="12.2" clip-path="url(#terminal-1876190902-line-22)">-</text><text class="terminal-1876190902-r5" x="36.6" y="556.8" textLength="61" clip-path="url(#terminal-1876190902-line-22)">-skip</text><text class="terminal-1876190902-r5" x="97.6" y="556.8" textLength="97.6" clip-path="url(#terminal-187 [...]
-</text><text class="terminal-1876190902-r4" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-1876190902-line-23)">│</text><text class="terminal-1876190902-r5" x="24.4" y="581.2" textLength="12.2" clip-path="url(#terminal-1876190902-line-23)">-</text><text class="terminal-1876190902-r5" x="36.6" y="581.2" textLength="73.2" clip-path="url(#terminal-1876190902-line-23)">-debug</text><text class="terminal-1876190902-r5" x="109.8" y="581.2" textLength="122" clip-path="url(#terminal- [...]
-</text><text class="terminal-1876190902-r4" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-1876190902-line-24)">│</text><text class="terminal-1876190902-r5" x="24.4" y="605.6" textLength="12.2" clip-path="url(#terminal-1876190902-line-24)">-</text><text class="terminal-1876190902-r5" x="36.6" y="605.6" textLength="97.6" clip-path="url(#terminal-1876190902-line-24)">-include</text><text class="terminal-1876190902-r5" x="134.2" y="605.6" textLength="195.2" clip-path="url(#termi [...]
-</text><text class="terminal-1876190902-r4" x="0" y="630" textLength="1464" clip-path="url(#terminal-1876190902-line-25)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1876190902-r2" x="1464" y="630" textLength="12.2" clip-path="url(#terminal-1876190902-line-25)">
-</text><text class="terminal-1876190902-r4" x="0" y="654.4" textLength="24.4" clip-path="url(#terminal-1876190902-line-26)">╭─</text><text class="terminal-1876190902-r4" x="24.4" y="654.4" textLength="1415.2" clip-path="url(#terminal-1876190902-line-26)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1876190902-r4" x="1439.6" y="654.4" textLength="24.4" clip-path="url(#termina [...]
-</text><text class="terminal-1876190902-r4" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-1876190902-line-27)">│</text><text class="terminal-1876190902-r5" x="24.4" y="678.8" textLength="12.2" clip-path="url(#terminal-1876190902-line-27)">-</text><text class="terminal-1876190902-r5" x="36.6" y="678.8" textLength="97.6" clip-path="url(#terminal-1876190902-line-27)">-verbose</text><text class="terminal-1876190902-r6" x="280.6" y="678.8" textLength="24.4" clip-path="url(#termin [...]
-</text><text class="terminal-1876190902-r4" x="0" y="703.2" textLength="12.2" clip-path="url(#terminal-1876190902-line-28)">│</text><text class="terminal-1876190902-r5" x="24.4" y="703.2" textLength="12.2" clip-path="url(#terminal-1876190902-line-28)">-</text><text class="terminal-1876190902-r5" x="36.6" y="703.2" textLength="48.8" clip-path="url(#terminal-1876190902-line-28)">-dry</text><text class="terminal-1876190902-r5" x="85.4" y="703.2" textLength="48.8" clip-path="url(#terminal-18 [...]
-</text><text class="terminal-1876190902-r4" x="0" y="727.6" textLength="12.2" clip-path="url(#terminal-1876190902-line-29)">│</text><text class="terminal-1876190902-r5" x="24.4" y="727.6" textLength="12.2" clip-path="url(#terminal-1876190902-line-29)">-</text><text class="terminal-1876190902-r5" x="36.6" y="727.6" textLength="85.4" clip-path="url(#terminal-1876190902-line-29)">-github</text><text class="terminal-1876190902-r5" x="122" y="727.6" textLength="134.2" clip-path="url(#terminal [...]
-</text><text class="terminal-1876190902-r4" x="0" y="752" textLength="12.2" clip-path="url(#terminal-1876190902-line-30)">│</text><text class="terminal-1876190902-r5" x="24.4" y="752" textLength="12.2" clip-path="url(#terminal-1876190902-line-30)">-</text><text class="terminal-1876190902-r5" x="36.6" y="752" textLength="61" clip-path="url(#terminal-1876190902-line-30)">-help</text><text class="terminal-1876190902-r6" x="280.6" y="752" textLength="24.4" clip-path="url(#terminal-1876190902 [...]
-</text><text class="terminal-1876190902-r4" x="0" y="776.4" textLength="1464" clip-path="url(#terminal-1876190902-line-31)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1876190902-r2" x="1464" y="776.4" textLength="12.2" clip-path="url(#terminal-1876190902-line-31)">
+    <g class="terminal-2343659416-matrix">
+    <text class="terminal-2343659416-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-2343659416-line-0)">
+</text><text class="terminal-2343659416-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-2343659416-line-1)">Usage:&#160;</text><text class="terminal-2343659416-r1" x="97.6" y="44.4" textLength="268.4" clip-path="url(#terminal-2343659416-line-1)">breeze&#160;ci-image&#160;pull&#160;[</text><text class="terminal-2343659416-r4" x="366" y="44.4" textLength="85.4" clip-path="url(#terminal-2343659416-line-1)">OPTIONS</text><text class="terminal-2343659416-r1" x="451.4" y="44.4 [...]
+</text><text class="terminal-2343659416-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-2343659416-line-2)">
+</text><text class="terminal-2343659416-r2" x="12.2" y="93.2" textLength="329.4" clip-path="url(#terminal-2343659416-line-3)">Pull&#160;and&#160;optionally&#160;verify&#160;</text><text class="terminal-2343659416-r4" x="341.6" y="93.2" textLength="24.4" clip-path="url(#terminal-2343659416-line-3)">CI</text><text class="terminal-2343659416-r2" x="366" y="93.2" textLength="671" clip-path="url(#terminal-2343659416-line-3)">&#160;images&#160;-&#160;possibly&#160;in&#160;parallel&#160;for&#16 [...]
+</text><text class="terminal-2343659416-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-2343659416-line-4)">
+</text><text class="terminal-2343659416-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-2343659416-line-5)">╭─</text><text class="terminal-2343659416-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-2343659416-line-5)">&#160;Pull&#160;image&#160;flags&#160;──────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2343659416-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-2 [...]
+</text><text class="terminal-2343659416-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-2343659416-line-6)">│</text><text class="terminal-2343659416-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-2343659416-line-6)">-</text><text class="terminal-2343659416-r4" x="36.6" y="166.4" textLength="73.2" clip-path="url(#terminal-2343659416-line-6)">-image</text><text class="terminal-2343659416-r4" x="109.8" y="166.4" textLength="48.8" clip-path="url(#terminal-23 [...]
+</text><text class="terminal-2343659416-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-2343659416-line-7)">│</text><text class="terminal-2343659416-r4" x="24.4" y="190.8" textLength="12.2" clip-path="url(#terminal-2343659416-line-7)">-</text><text class="terminal-2343659416-r4" x="36.6" y="190.8" textLength="85.4" clip-path="url(#terminal-2343659416-line-7)">-python</text><text class="terminal-2343659416-r6" x="244" y="190.8" textLength="24.4" clip-path="url(#terminal-234 [...]
+</text><text class="terminal-2343659416-r5" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-2343659416-line-8)">│</text><text class="terminal-2343659416-r5" x="292.8" y="215.2" textLength="732" clip-path="url(#terminal-2343659416-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-2343659416-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-2343659416-line-9)">│</text><text class="terminal-2343659416-r4" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-2343659416-line-9)">-</text><text class="terminal-2343659416-r4" x="36.6" y="239.6" textLength="85.4" clip-path="url(#terminal-2343659416-line-9)">-github</text><text class="terminal-2343659416-r4" x="122" y="239.6" textLength="73.2" clip-path="url(#terminal-234 [...]
+</text><text class="terminal-2343659416-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-2343659416-line-10)">│</text><text class="terminal-2343659416-r4" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-2343659416-line-10)">-</text><text class="terminal-2343659416-r4" x="36.6" y="264" textLength="85.4" clip-path="url(#terminal-2343659416-line-10)">-verify</text><text class="terminal-2343659416-r2" x="292.8" y="264" textLength="158.6" clip-path="url(#terminal-23436 [...]
+</text><text class="terminal-2343659416-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-2343659416-line-11)">│</text><text class="terminal-2343659416-r4" x="24.4" y="288.4" textLength="12.2" clip-path="url(#terminal-2343659416-line-11)">-</text><text class="terminal-2343659416-r4" x="36.6" y="288.4" textLength="61" clip-path="url(#terminal-2343659416-line-11)">-wait</text><text class="terminal-2343659416-r4" x="97.6" y="288.4" textLength="122" clip-path="url(#terminal-2343 [...]
+</text><text class="terminal-2343659416-r5" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-2343659416-line-12)">│</text><text class="terminal-2343659416-r4" x="24.4" y="312.8" textLength="12.2" clip-path="url(#terminal-2343659416-line-12)">-</text><text class="terminal-2343659416-r4" x="36.6" y="312.8" textLength="48.8" clip-path="url(#terminal-2343659416-line-12)">-tag</text><text class="terminal-2343659416-r4" x="85.4" y="312.8" textLength="122" clip-path="url(#terminal-234 [...]
+</text><text class="terminal-2343659416-r5" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-2343659416-line-13)">│</text><text class="terminal-2343659416-r2" x="292.8" y="337.2" textLength="231.8" clip-path="url(#terminal-2343659416-line-13)">or&#160;pull&#160;image&#160;with&#160;</text><text class="terminal-2343659416-r4" x="524.6" y="337.2" textLength="12.2" clip-path="url(#terminal-2343659416-line-13)">-</text><text class="terminal-2343659416-r4" x="536.8" y="337.2" textLe [...]
+</text><text class="terminal-2343659416-r5" x="0" y="361.6" textLength="1464" clip-path="url(#terminal-2343659416-line-14)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2343659416-r2" x="1464" y="361.6" textLength="12.2" clip-path="url(#terminal-2343659416-line-14)">
+</text><text class="terminal-2343659416-r5" x="0" y="386" textLength="24.4" clip-path="url(#terminal-2343659416-line-15)">╭─</text><text class="terminal-2343659416-r5" x="24.4" y="386" textLength="1415.2" clip-path="url(#terminal-2343659416-line-15)">&#160;Parallel&#160;running&#160;──────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2343659416-r5" x="1439.6" y="386" textLength="24.4" clip-path="url(#terminal-2343 [...]
+</text><text class="terminal-2343659416-r5" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-2343659416-line-16)">│</text><text class="terminal-2343659416-r4" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-2343659416-line-16)">-</text><text class="terminal-2343659416-r4" x="36.6" y="410.4" textLength="48.8" clip-path="url(#terminal-2343659416-line-16)">-run</text><text class="terminal-2343659416-r4" x="85.4" y="410.4" textLength="146.4" clip-path="url(#terminal-2 [...]
+</text><text class="terminal-2343659416-r5" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-2343659416-line-17)">│</text><text class="terminal-2343659416-r4" x="24.4" y="434.8" textLength="12.2" clip-path="url(#terminal-2343659416-line-17)">-</text><text class="terminal-2343659416-r4" x="36.6" y="434.8" textLength="146.4" clip-path="url(#terminal-2343659416-line-17)">-parallelism</text><text class="terminal-2343659416-r2" x="378.2" y="434.8" textLength="915" clip-path="url(#te [...]
+</text><text class="terminal-2343659416-r5" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-2343659416-line-18)">│</text><text class="terminal-2343659416-r7" x="378.2" y="459.2" textLength="915" clip-path="url(#terminal-2343659416-line-18)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
+</text><text class="terminal-2343659416-r5" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-2343659416-line-19)">│</text><text class="terminal-2343659416-r5" x="378.2" y="483.6" textLength="915" clip-path="url(#terminal-2343659416-line-19)">[default:&#160;4;&#160;1&lt;=x&lt;=8]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-2343659416-r5" x="0" y="508" textLength="12.2" clip-path="url(#terminal-2343659416-line-20)">│</text><text class="terminal-2343659416-r4" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-2343659416-line-20)">-</text><text class="terminal-2343659416-r4" x="36.6" y="508" textLength="85.4" clip-path="url(#terminal-2343659416-line-20)">-python</text><text class="terminal-2343659416-r4" x="122" y="508" textLength="109.8" clip-path="url(#terminal-2343659 [...]
+</text><text class="terminal-2343659416-r5" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-2343659416-line-21)">│</text><text class="terminal-2343659416-r5" x="378.2" y="532.4" textLength="951.6" clip-path="url(#terminal-2343659416-line-21)">[default:&#160;3.7&#160;3.8&#160;3.9&#160;3.10&#160;3.11]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-2343659416-r5" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-2343659416-line-22)">│</text><text class="terminal-2343659416-r4" x="24.4" y="556.8" textLength="12.2" clip-path="url(#terminal-2343659416-line-22)">-</text><text class="terminal-2343659416-r4" x="36.6" y="556.8" textLength="61" clip-path="url(#terminal-2343659416-line-22)">-skip</text><text class="terminal-2343659416-r4" x="97.6" y="556.8" textLength="97.6" clip-path="url(#terminal-234 [...]
+</text><text class="terminal-2343659416-r5" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-2343659416-line-23)">│</text><text class="terminal-2343659416-r4" x="24.4" y="581.2" textLength="12.2" clip-path="url(#terminal-2343659416-line-23)">-</text><text class="terminal-2343659416-r4" x="36.6" y="581.2" textLength="73.2" clip-path="url(#terminal-2343659416-line-23)">-debug</text><text class="terminal-2343659416-r4" x="109.8" y="581.2" textLength="122" clip-path="url(#terminal- [...]
+</text><text class="terminal-2343659416-r5" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-2343659416-line-24)">│</text><text class="terminal-2343659416-r4" x="24.4" y="605.6" textLength="12.2" clip-path="url(#terminal-2343659416-line-24)">-</text><text class="terminal-2343659416-r4" x="36.6" y="605.6" textLength="97.6" clip-path="url(#terminal-2343659416-line-24)">-include</text><text class="terminal-2343659416-r4" x="134.2" y="605.6" textLength="195.2" clip-path="url(#termi [...]
+</text><text class="terminal-2343659416-r5" x="0" y="630" textLength="1464" clip-path="url(#terminal-2343659416-line-25)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2343659416-r2" x="1464" y="630" textLength="12.2" clip-path="url(#terminal-2343659416-line-25)">
+</text><text class="terminal-2343659416-r5" x="0" y="654.4" textLength="24.4" clip-path="url(#terminal-2343659416-line-26)">╭─</text><text class="terminal-2343659416-r5" x="24.4" y="654.4" textLength="1415.2" clip-path="url(#terminal-2343659416-line-26)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2343659416-r5" x="1439.6" y="654.4" textLength="24.4" clip-path="url(#termina [...]
+</text><text class="terminal-2343659416-r5" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-2343659416-line-27)">│</text><text class="terminal-2343659416-r4" x="24.4" y="678.8" textLength="12.2" clip-path="url(#terminal-2343659416-line-27)">-</text><text class="terminal-2343659416-r4" x="36.6" y="678.8" textLength="97.6" clip-path="url(#terminal-2343659416-line-27)">-verbose</text><text class="terminal-2343659416-r6" x="280.6" y="678.8" textLength="24.4" clip-path="url(#termin [...]
+</text><text class="terminal-2343659416-r5" x="0" y="703.2" textLength="12.2" clip-path="url(#terminal-2343659416-line-28)">│</text><text class="terminal-2343659416-r4" x="24.4" y="703.2" textLength="12.2" clip-path="url(#terminal-2343659416-line-28)">-</text><text class="terminal-2343659416-r4" x="36.6" y="703.2" textLength="48.8" clip-path="url(#terminal-2343659416-line-28)">-dry</text><text class="terminal-2343659416-r4" x="85.4" y="703.2" textLength="48.8" clip-path="url(#terminal-23 [...]
+</text><text class="terminal-2343659416-r5" x="0" y="727.6" textLength="12.2" clip-path="url(#terminal-2343659416-line-29)">│</text><text class="terminal-2343659416-r4" x="24.4" y="727.6" textLength="12.2" clip-path="url(#terminal-2343659416-line-29)">-</text><text class="terminal-2343659416-r4" x="36.6" y="727.6" textLength="85.4" clip-path="url(#terminal-2343659416-line-29)">-github</text><text class="terminal-2343659416-r4" x="122" y="727.6" textLength="134.2" clip-path="url(#terminal [...]
+</text><text class="terminal-2343659416-r5" x="0" y="752" textLength="12.2" clip-path="url(#terminal-2343659416-line-30)">│</text><text class="terminal-2343659416-r4" x="24.4" y="752" textLength="12.2" clip-path="url(#terminal-2343659416-line-30)">-</text><text class="terminal-2343659416-r4" x="36.6" y="752" textLength="61" clip-path="url(#terminal-2343659416-line-30)">-help</text><text class="terminal-2343659416-r6" x="280.6" y="752" textLength="24.4" clip-path="url(#terminal-2343659416 [...]
+</text><text class="terminal-2343659416-r5" x="0" y="776.4" textLength="1464" clip-path="url(#terminal-2343659416-line-31)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2343659416-r2" x="1464" y="776.4" textLength="12.2" clip-path="url(#terminal-2343659416-line-31)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_ci-image_verify.svg b/images/breeze/output_ci-image_verify.svg
index 3b7d4be25b..ee3b030158 100644
--- a/images/breeze/output_ci-image_verify.svg
+++ b/images/breeze/output_ci-image_verify.svg
@@ -19,113 +19,113 @@
         font-weight: 700;
     }
 
-    .terminal-4266854521-matrix {
+    .terminal-3263695128-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-4266854521-title {
+    .terminal-3263695128-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-4266854521-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-4266854521-r2 { fill: #c5c8c6 }
-.terminal-4266854521-r3 { fill: #d0b344;font-weight: bold }
-.terminal-4266854521-r4 { fill: #868887 }
-.terminal-4266854521-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-4266854521-r6 { fill: #98a84b;font-weight: bold }
-.terminal-4266854521-r7 { fill: #8d7b39 }
+    .terminal-3263695128-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-3263695128-r2 { fill: #c5c8c6 }
+.terminal-3263695128-r3 { fill: #d0b344;font-weight: bold }
+.terminal-3263695128-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-3263695128-r5 { fill: #868887 }
+.terminal-3263695128-r6 { fill: #98a84b;font-weight: bold }
+.terminal-3263695128-r7 { fill: #8d7b39 }
     </style>
 
     <defs>
-    <clipPath id="terminal-4266854521-clip-terminal">
+    <clipPath id="terminal-3263695128-clip-terminal">
       <rect x="0" y="0" width="1463.0" height="438.2" />
     </clipPath>
-    <clipPath id="terminal-4266854521-line-0">
+    <clipPath id="terminal-3263695128-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4266854521-line-1">
+<clipPath id="terminal-3263695128-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4266854521-line-2">
+<clipPath id="terminal-3263695128-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4266854521-line-3">
+<clipPath id="terminal-3263695128-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4266854521-line-4">
+<clipPath id="terminal-3263695128-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4266854521-line-5">
+<clipPath id="terminal-3263695128-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4266854521-line-6">
+<clipPath id="terminal-3263695128-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4266854521-line-7">
+<clipPath id="terminal-3263695128-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4266854521-line-8">
+<clipPath id="terminal-3263695128-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4266854521-line-9">
+<clipPath id="terminal-3263695128-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4266854521-line-10">
+<clipPath id="terminal-3263695128-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4266854521-line-11">
+<clipPath id="terminal-3263695128-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4266854521-line-12">
+<clipPath id="terminal-3263695128-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4266854521-line-13">
+<clipPath id="terminal-3263695128-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4266854521-line-14">
+<clipPath id="terminal-3263695128-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4266854521-line-15">
+<clipPath id="terminal-3263695128-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4266854521-line-16">
+<clipPath id="terminal-3263695128-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="487.2" rx="8"/><text class="terminal-4266854521-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;ci-image&#160;verify</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="487.2" rx="8"/><text class="terminal-3263695128-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;ci-image&#160;verify</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-4266854521-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-3263695128-clip-terminal)">
     
-    <g class="terminal-4266854521-matrix">
-    <text class="terminal-4266854521-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-4266854521-line-0)">
-</text><text class="terminal-4266854521-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-4266854521-line-1)">Usage:&#160;</text><text class="terminal-4266854521-r1" x="97.6" y="44.4" textLength="671" clip-path="url(#terminal-4266854521-line-1)">breeze&#160;ci-image&#160;verify&#160;[OPTIONS]&#160;[EXTRA_PYTEST_ARGS]...</text><text class="terminal-4266854521-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-4266854521-line-1)">
-</text><text class="terminal-4266854521-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-4266854521-line-2)">
-</text><text class="terminal-4266854521-r2" x="12.2" y="93.2" textLength="195.2" clip-path="url(#terminal-4266854521-line-3)">Verify&#160;CI&#160;image.</text><text class="terminal-4266854521-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-4266854521-line-3)">
-</text><text class="terminal-4266854521-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-4266854521-line-4)">
-</text><text class="terminal-4266854521-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-4266854521-line-5)">╭─</text><text class="terminal-4266854521-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-4266854521-line-5)">&#160;Verify&#160;image&#160;flags&#160;────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-4266854521-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-4 [...]
-</text><text class="terminal-4266854521-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-4266854521-line-6)">│</text><text class="terminal-4266854521-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-4266854521-line-6)">-</text><text class="terminal-4266854521-r5" x="36.6" y="166.4" textLength="73.2" clip-path="url(#terminal-4266854521-line-6)">-image</text><text class="terminal-4266854521-r5" x="109.8" y="166.4" textLength="61" clip-path="url(#terminal-4266 [...]
-</text><text class="terminal-4266854521-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-4266854521-line-7)">│</text><text class="terminal-4266854521-r5" x="24.4" y="190.8" textLength="12.2" clip-path="url(#terminal-4266854521-line-7)">-</text><text class="terminal-4266854521-r5" x="36.6" y="190.8" textLength="85.4" clip-path="url(#terminal-4266854521-line-7)">-python</text><text class="terminal-4266854521-r6" x="195.2" y="190.8" textLength="24.4" clip-path="url(#terminal-4 [...]
-</text><text class="terminal-4266854521-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-4266854521-line-8)">│</text><text class="terminal-4266854521-r4" x="244" y="215.2" textLength="732" clip-path="url(#terminal-4266854521-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
-</text><text class="terminal-4266854521-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-4266854521-line-9)">│</text><text class="terminal-4266854521-r5" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-4266854521-line-9)">-</text><text class="terminal-4266854521-r5" x="36.6" y="239.6" textLength="73.2" clip-path="url(#terminal-4266854521-line-9)">-image</text><text class="terminal-4266854521-r5" x="109.8" y="239.6" textLength="48.8" clip-path="url(#terminal-42 [...]
-</text><text class="terminal-4266854521-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-4266854521-line-10)">│</text><text class="terminal-4266854521-r5" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-4266854521-line-10)">-</text><text class="terminal-4266854521-r5" x="36.6" y="264" textLength="61" clip-path="url(#terminal-4266854521-line-10)">-pull</text><text class="terminal-4266854521-r2" x="244" y="264" textLength="646.6" clip-path="url(#terminal-4266854521- [...]
-</text><text class="terminal-4266854521-r4" x="0" y="288.4" textLength="1464" clip-path="url(#terminal-4266854521-line-11)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-4266854521-r2" x="1464" y="288.4" textLength="12.2" clip-path="url(#terminal-4266854521-line-11)">
-</text><text class="terminal-4266854521-r4" x="0" y="312.8" textLength="24.4" clip-path="url(#terminal-4266854521-line-12)">╭─</text><text class="terminal-4266854521-r4" x="24.4" y="312.8" textLength="1415.2" clip-path="url(#terminal-4266854521-line-12)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-4266854521-r4" x="1439.6" y="312.8" textLength="24.4" clip-path="url(#termina [...]
-</text><text class="terminal-4266854521-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-4266854521-line-13)">│</text><text class="terminal-4266854521-r5" x="24.4" y="337.2" textLength="12.2" clip-path="url(#terminal-4266854521-line-13)">-</text><text class="terminal-4266854521-r5" x="36.6" y="337.2" textLength="97.6" clip-path="url(#terminal-4266854521-line-13)">-verbose</text><text class="terminal-4266854521-r6" x="280.6" y="337.2" textLength="24.4" clip-path="url(#termin [...]
-</text><text class="terminal-4266854521-r4" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-4266854521-line-14)">│</text><text class="terminal-4266854521-r5" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-4266854521-line-14)">-</text><text class="terminal-4266854521-r5" x="36.6" y="361.6" textLength="48.8" clip-path="url(#terminal-4266854521-line-14)">-dry</text><text class="terminal-4266854521-r5" x="85.4" y="361.6" textLength="48.8" clip-path="url(#terminal-42 [...]
-</text><text class="terminal-4266854521-r4" x="0" y="386" textLength="12.2" clip-path="url(#terminal-4266854521-line-15)">│</text><text class="terminal-4266854521-r5" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-4266854521-line-15)">-</text><text class="terminal-4266854521-r5" x="36.6" y="386" textLength="85.4" clip-path="url(#terminal-4266854521-line-15)">-github</text><text class="terminal-4266854521-r5" x="122" y="386" textLength="134.2" clip-path="url(#terminal-4266854 [...]
-</text><text class="terminal-4266854521-r4" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-4266854521-line-16)">│</text><text class="terminal-4266854521-r5" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-4266854521-line-16)">-</text><text class="terminal-4266854521-r5" x="36.6" y="410.4" textLength="61" clip-path="url(#terminal-4266854521-line-16)">-help</text><text class="terminal-4266854521-r6" x="280.6" y="410.4" textLength="24.4" clip-path="url(#terminal-42 [...]
-</text><text class="terminal-4266854521-r4" x="0" y="434.8" textLength="1464" clip-path="url(#terminal-4266854521-line-17)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-4266854521-r2" x="1464" y="434.8" textLength="12.2" clip-path="url(#terminal-4266854521-line-17)">
+    <g class="terminal-3263695128-matrix">
+    <text class="terminal-3263695128-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-3263695128-line-0)">
+</text><text class="terminal-3263695128-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-3263695128-line-1)">Usage:&#160;</text><text class="terminal-3263695128-r1" x="97.6" y="44.4" textLength="292.8" clip-path="url(#terminal-3263695128-line-1)">breeze&#160;ci-image&#160;verify&#160;[</text><text class="terminal-3263695128-r4" x="390.4" y="44.4" textLength="85.4" clip-path="url(#terminal-3263695128-line-1)">OPTIONS</text><text class="terminal-3263695128-r1" x="475.8" y=" [...]
+</text><text class="terminal-3263695128-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-3263695128-line-2)">
+</text><text class="terminal-3263695128-r2" x="12.2" y="93.2" textLength="85.4" clip-path="url(#terminal-3263695128-line-3)">Verify&#160;</text><text class="terminal-3263695128-r4" x="97.6" y="93.2" textLength="24.4" clip-path="url(#terminal-3263695128-line-3)">CI</text><text class="terminal-3263695128-r2" x="122" y="93.2" textLength="85.4" clip-path="url(#terminal-3263695128-line-3)">&#160;image.</text><text class="terminal-3263695128-r2" x="1464" y="93.2" textLength="12.2" clip-path="u [...]
+</text><text class="terminal-3263695128-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-3263695128-line-4)">
+</text><text class="terminal-3263695128-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-3263695128-line-5)">╭─</text><text class="terminal-3263695128-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-3263695128-line-5)">&#160;Verify&#160;image&#160;flags&#160;────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3263695128-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-3 [...]
+</text><text class="terminal-3263695128-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-3263695128-line-6)">│</text><text class="terminal-3263695128-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-3263695128-line-6)">-</text><text class="terminal-3263695128-r4" x="36.6" y="166.4" textLength="73.2" clip-path="url(#terminal-3263695128-line-6)">-image</text><text class="terminal-3263695128-r4" x="109.8" y="166.4" textLength="61" clip-path="url(#terminal-3263 [...]
+</text><text class="terminal-3263695128-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-3263695128-line-7)">│</text><text class="terminal-3263695128-r4" x="24.4" y="190.8" textLength="12.2" clip-path="url(#terminal-3263695128-line-7)">-</text><text class="terminal-3263695128-r4" x="36.6" y="190.8" textLength="85.4" clip-path="url(#terminal-3263695128-line-7)">-python</text><text class="terminal-3263695128-r6" x="195.2" y="190.8" textLength="24.4" clip-path="url(#terminal-3 [...]
+</text><text class="terminal-3263695128-r5" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-3263695128-line-8)">│</text><text class="terminal-3263695128-r5" x="244" y="215.2" textLength="732" clip-path="url(#terminal-3263695128-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
+</text><text class="terminal-3263695128-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-3263695128-line-9)">│</text><text class="terminal-3263695128-r4" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-3263695128-line-9)">-</text><text class="terminal-3263695128-r4" x="36.6" y="239.6" textLength="73.2" clip-path="url(#terminal-3263695128-line-9)">-image</text><text class="terminal-3263695128-r4" x="109.8" y="239.6" textLength="48.8" clip-path="url(#terminal-32 [...]
+</text><text class="terminal-3263695128-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-3263695128-line-10)">│</text><text class="terminal-3263695128-r4" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-3263695128-line-10)">-</text><text class="terminal-3263695128-r4" x="36.6" y="264" textLength="61" clip-path="url(#terminal-3263695128-line-10)">-pull</text><text class="terminal-3263695128-r2" x="244" y="264" textLength="646.6" clip-path="url(#terminal-3263695128- [...]
+</text><text class="terminal-3263695128-r5" x="0" y="288.4" textLength="1464" clip-path="url(#terminal-3263695128-line-11)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3263695128-r2" x="1464" y="288.4" textLength="12.2" clip-path="url(#terminal-3263695128-line-11)">
+</text><text class="terminal-3263695128-r5" x="0" y="312.8" textLength="24.4" clip-path="url(#terminal-3263695128-line-12)">╭─</text><text class="terminal-3263695128-r5" x="24.4" y="312.8" textLength="1415.2" clip-path="url(#terminal-3263695128-line-12)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3263695128-r5" x="1439.6" y="312.8" textLength="24.4" clip-path="url(#termina [...]
+</text><text class="terminal-3263695128-r5" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-3263695128-line-13)">│</text><text class="terminal-3263695128-r4" x="24.4" y="337.2" textLength="12.2" clip-path="url(#terminal-3263695128-line-13)">-</text><text class="terminal-3263695128-r4" x="36.6" y="337.2" textLength="97.6" clip-path="url(#terminal-3263695128-line-13)">-verbose</text><text class="terminal-3263695128-r6" x="280.6" y="337.2" textLength="24.4" clip-path="url(#termin [...]
+</text><text class="terminal-3263695128-r5" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-3263695128-line-14)">│</text><text class="terminal-3263695128-r4" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-3263695128-line-14)">-</text><text class="terminal-3263695128-r4" x="36.6" y="361.6" textLength="48.8" clip-path="url(#terminal-3263695128-line-14)">-dry</text><text class="terminal-3263695128-r4" x="85.4" y="361.6" textLength="48.8" clip-path="url(#terminal-32 [...]
+</text><text class="terminal-3263695128-r5" x="0" y="386" textLength="12.2" clip-path="url(#terminal-3263695128-line-15)">│</text><text class="terminal-3263695128-r4" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-3263695128-line-15)">-</text><text class="terminal-3263695128-r4" x="36.6" y="386" textLength="85.4" clip-path="url(#terminal-3263695128-line-15)">-github</text><text class="terminal-3263695128-r4" x="122" y="386" textLength="134.2" clip-path="url(#terminal-3263695 [...]
+</text><text class="terminal-3263695128-r5" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-3263695128-line-16)">│</text><text class="terminal-3263695128-r4" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-3263695128-line-16)">-</text><text class="terminal-3263695128-r4" x="36.6" y="410.4" textLength="61" clip-path="url(#terminal-3263695128-line-16)">-help</text><text class="terminal-3263695128-r6" x="280.6" y="410.4" textLength="24.4" clip-path="url(#terminal-32 [...]
+</text><text class="terminal-3263695128-r5" x="0" y="434.8" textLength="1464" clip-path="url(#terminal-3263695128-line-17)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3263695128-r2" x="1464" y="434.8" textLength="12.2" clip-path="url(#terminal-3263695128-line-17)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_ci.svg b/images/breeze/output_ci.svg
index ad5ff72659..601f54e29a 100644
--- a/images/breeze/output_ci.svg
+++ b/images/breeze/output_ci.svg
@@ -35,8 +35,8 @@
     .terminal-1385492439-r1 { fill: #c5c8c6;font-weight: bold }
 .terminal-1385492439-r2 { fill: #c5c8c6 }
 .terminal-1385492439-r3 { fill: #d0b344;font-weight: bold }
-.terminal-1385492439-r4 { fill: #868887 }
-.terminal-1385492439-r5 { fill: #68a0b3;font-weight: bold }
+.terminal-1385492439-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-1385492439-r5 { fill: #868887 }
 .terminal-1385492439-r6 { fill: #98a84b;font-weight: bold }
     </style>
 
@@ -105,22 +105,22 @@
     
     <g class="terminal-1385492439-matrix">
     <text class="terminal-1385492439-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-1385492439-line-0)">
-</text><text class="terminal-1385492439-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-1385492439-line-1)">Usage:&#160;</text><text class="terminal-1385492439-r1" x="97.6" y="44.4" textLength="451.4" clip-path="url(#terminal-1385492439-line-1)">breeze&#160;ci&#160;[OPTIONS]&#160;COMMAND&#160;[ARGS]...</text><text class="terminal-1385492439-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-1385492439-line-1)">
+</text><text class="terminal-1385492439-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-1385492439-line-1)">Usage:&#160;</text><text class="terminal-1385492439-r1" x="97.6" y="44.4" textLength="134.2" clip-path="url(#terminal-1385492439-line-1)">breeze&#160;ci&#160;[</text><text class="terminal-1385492439-r4" x="231.8" y="44.4" textLength="85.4" clip-path="url(#terminal-1385492439-line-1)">OPTIONS</text><text class="terminal-1385492439-r1" x="317.2" y="44.4" textLength=" [...]
 </text><text class="terminal-1385492439-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-1385492439-line-2)">
-</text><text class="terminal-1385492439-r2" x="12.2" y="93.2" textLength="732" clip-path="url(#terminal-1385492439-line-3)">Tools&#160;that&#160;CI&#160;workflows&#160;use&#160;to&#160;cleanup/manage&#160;CI&#160;environment</text><text class="terminal-1385492439-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-1385492439-line-3)">
+</text><text class="terminal-1385492439-r2" x="12.2" y="93.2" textLength="134.2" clip-path="url(#terminal-1385492439-line-3)">Tools&#160;that&#160;</text><text class="terminal-1385492439-r4" x="146.4" y="93.2" textLength="24.4" clip-path="url(#terminal-1385492439-line-3)">CI</text><text class="terminal-1385492439-r2" x="170.8" y="93.2" textLength="402.6" clip-path="url(#terminal-1385492439-line-3)">&#160;workflows&#160;use&#160;to&#160;cleanup/manage&#160;</text><text class="terminal-138 [...]
 </text><text class="terminal-1385492439-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-1385492439-line-4)">
-</text><text class="terminal-1385492439-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-1385492439-line-5)">╭─</text><text class="terminal-1385492439-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-1385492439-line-5)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1385492439-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-138549 [...]
-</text><text class="terminal-1385492439-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-1385492439-line-6)">│</text><text class="terminal-1385492439-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-1385492439-line-6)">-</text><text class="terminal-1385492439-r5" x="36.6" y="166.4" textLength="61" clip-path="url(#terminal-1385492439-line-6)">-help</text><text class="terminal-1385492439-r6" x="122" y="166.4" textLength="24.4" clip-path="url(#terminal-1385492 [...]
-</text><text class="terminal-1385492439-r4" x="0" y="190.8" textLength="1464" clip-path="url(#terminal-1385492439-line-7)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1385492439-r2" x="1464" y="190.8" textLength="12.2" clip-path="url(#terminal-1385492439-line-7)">
-</text><text class="terminal-1385492439-r4" x="0" y="215.2" textLength="24.4" clip-path="url(#terminal-1385492439-line-8)">╭─</text><text class="terminal-1385492439-r4" x="24.4" y="215.2" textLength="1415.2" clip-path="url(#terminal-1385492439-line-8)">&#160;CI&#160;commands&#160;───────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1385492439-r4" x="1439.6" y="215.2" textLength="24.4" clip-path="url(#terminal- [...]
-</text><text class="terminal-1385492439-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-1385492439-line-9)">│</text><text class="terminal-1385492439-r5" x="24.4" y="239.6" textLength="280.6" clip-path="url(#terminal-1385492439-line-9)">fix-ownership&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-1385492439-r2" x="329.4" y="239.6" textLength="1110.2" clip-path="url(#terminal-1385492439-line-9)">Fix&#160;ownership&#160;of&#160;source& [...]
-</text><text class="terminal-1385492439-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-1385492439-line-10)">│</text><text class="terminal-1385492439-r5" x="24.4" y="264" textLength="280.6" clip-path="url(#terminal-1385492439-line-10)">free-space&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-1385492439-r2" x="329.4" y="264" textLength="1110.2" clip-path="url(#terminal-1385492439-line-10)">Free&#160;space&#160;for&#1 [...]
-</text><text class="terminal-1385492439-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-1385492439-line-11)">│</text><text class="terminal-1385492439-r5" x="24.4" y="288.4" textLength="280.6" clip-path="url(#terminal-1385492439-line-11)">resource-check&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-1385492439-r2" x="329.4" y="288.4" textLength="1110.2" clip-path="url(#terminal-1385492439-line-11)">Check&#160;if&#160;available&#160;docker& [...]
-</text><text class="terminal-1385492439-r4" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-1385492439-line-12)">│</text><text class="terminal-1385492439-r5" x="24.4" y="312.8" textLength="280.6" clip-path="url(#terminal-1385492439-line-12)">selective-check&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-1385492439-r2" x="329.4" y="312.8" textLength="1110.2" clip-path="url(#terminal-1385492439-line-12)">Checks&#160;what&#160;kind&#160;of&#160;tests& [...]
-</text><text class="terminal-1385492439-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-1385492439-line-13)">│</text><text class="terminal-1385492439-r5" x="24.4" y="337.2" textLength="280.6" clip-path="url(#terminal-1385492439-line-13)">find-newer-dependencies</text><text class="terminal-1385492439-r2" x="329.4" y="337.2" textLength="1110.2" clip-path="url(#terminal-1385492439-line-13)">Finds&#160;which&#160;dependencies&#160;are&#160;being&#160;upgraded.&#160;&#160;&#160 [...]
-</text><text class="terminal-1385492439-r4" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-1385492439-line-14)">│</text><text class="terminal-1385492439-r5" x="24.4" y="361.6" textLength="280.6" clip-path="url(#terminal-1385492439-line-14)">get-workflow-info&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-1385492439-r2" x="329.4" y="361.6" textLength="1110.2" clip-path="url(#terminal-1385492439-line-14)">Retrieve&#160;information&#160;about&#160;current&#160;w [...]
-</text><text class="terminal-1385492439-r4" x="0" y="386" textLength="12.2" clip-path="url(#terminal-1385492439-line-15)">│</text><text class="terminal-1385492439-r2" x="329.4" y="386" textLength="1110.2" clip-path="url(#terminal-1385492439-line-15)">extracted&#160;from&#160;it.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
-</text><text class="terminal-1385492439-r4" x="0" y="410.4" textLength="1464" clip-path="url(#terminal-1385492439-line-16)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1385492439-r2" x="1464" y="410.4" textLength="12.2" clip-path="url(#terminal-1385492439-line-16)">
+</text><text class="terminal-1385492439-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-1385492439-line-5)">╭─</text><text class="terminal-1385492439-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-1385492439-line-5)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1385492439-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-138549 [...]
+</text><text class="terminal-1385492439-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-1385492439-line-6)">│</text><text class="terminal-1385492439-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-1385492439-line-6)">-</text><text class="terminal-1385492439-r4" x="36.6" y="166.4" textLength="61" clip-path="url(#terminal-1385492439-line-6)">-help</text><text class="terminal-1385492439-r6" x="122" y="166.4" textLength="24.4" clip-path="url(#terminal-1385492 [...]
+</text><text class="terminal-1385492439-r5" x="0" y="190.8" textLength="1464" clip-path="url(#terminal-1385492439-line-7)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1385492439-r2" x="1464" y="190.8" textLength="12.2" clip-path="url(#terminal-1385492439-line-7)">
+</text><text class="terminal-1385492439-r5" x="0" y="215.2" textLength="24.4" clip-path="url(#terminal-1385492439-line-8)">╭─</text><text class="terminal-1385492439-r5" x="24.4" y="215.2" textLength="1415.2" clip-path="url(#terminal-1385492439-line-8)">&#160;CI&#160;commands&#160;───────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1385492439-r5" x="1439.6" y="215.2" textLength="24.4" clip-path="url(#terminal- [...]
+</text><text class="terminal-1385492439-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-1385492439-line-9)">│</text><text class="terminal-1385492439-r4" x="24.4" y="239.6" textLength="280.6" clip-path="url(#terminal-1385492439-line-9)">fix-ownership&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-1385492439-r2" x="329.4" y="239.6" textLength="1110.2" clip-path="url(#terminal-1385492439-line-9)">Fix&#160;ownership&#160;of&#160;source& [...]
+</text><text class="terminal-1385492439-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-1385492439-line-10)">│</text><text class="terminal-1385492439-r4" x="24.4" y="264" textLength="280.6" clip-path="url(#terminal-1385492439-line-10)">free-space&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-1385492439-r2" x="329.4" y="264" textLength="329.4" clip-path="url(#terminal-1385492439-line-10)">Free&#160;space&#160;for&#16 [...]
+</text><text class="terminal-1385492439-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-1385492439-line-11)">│</text><text class="terminal-1385492439-r4" x="24.4" y="288.4" textLength="280.6" clip-path="url(#terminal-1385492439-line-11)">resource-check&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-1385492439-r2" x="329.4" y="288.4" textLength="1110.2" clip-path="url(#terminal-1385492439-line-11)">Check&#160;if&#160;available&#160;docker& [...]
+</text><text class="terminal-1385492439-r5" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-1385492439-line-12)">│</text><text class="terminal-1385492439-r4" x="24.4" y="312.8" textLength="280.6" clip-path="url(#terminal-1385492439-line-12)">selective-check&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-1385492439-r2" x="329.4" y="312.8" textLength="1110.2" clip-path="url(#terminal-1385492439-line-12)">Checks&#160;what&#160;kind&#160;of&#160;tests& [...]
+</text><text class="terminal-1385492439-r5" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-1385492439-line-13)">│</text><text class="terminal-1385492439-r4" x="24.4" y="337.2" textLength="280.6" clip-path="url(#terminal-1385492439-line-13)">find-newer-dependencies</text><text class="terminal-1385492439-r2" x="329.4" y="337.2" textLength="1110.2" clip-path="url(#terminal-1385492439-line-13)">Finds&#160;which&#160;dependencies&#160;are&#160;being&#160;upgraded.&#160;&#160;&#160 [...]
+</text><text class="terminal-1385492439-r5" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-1385492439-line-14)">│</text><text class="terminal-1385492439-r4" x="24.4" y="361.6" textLength="280.6" clip-path="url(#terminal-1385492439-line-14)">get-workflow-info&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-1385492439-r2" x="329.4" y="361.6" textLength="1110.2" clip-path="url(#terminal-1385492439-line-14)">Retrieve&#160;information&#160;about&#160;current&#160;w [...]
+</text><text class="terminal-1385492439-r5" x="0" y="386" textLength="12.2" clip-path="url(#terminal-1385492439-line-15)">│</text><text class="terminal-1385492439-r2" x="329.4" y="386" textLength="1110.2" clip-path="url(#terminal-1385492439-line-15)">extracted&#160;from&#160;it.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
+</text><text class="terminal-1385492439-r5" x="0" y="410.4" textLength="1464" clip-path="url(#terminal-1385492439-line-16)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1385492439-r2" x="1464" y="410.4" textLength="12.2" clip-path="url(#terminal-1385492439-line-16)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_ci_find-newer-dependencies.svg b/images/breeze/output_ci_find-newer-dependencies.svg
index 95bba2a0b9..43029e4361 100644
--- a/images/breeze/output_ci_find-newer-dependencies.svg
+++ b/images/breeze/output_ci_find-newer-dependencies.svg
@@ -19,121 +19,121 @@
         font-weight: 700;
     }
 
-    .terminal-1646402681-matrix {
+    .terminal-3800571160-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-1646402681-title {
+    .terminal-3800571160-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-1646402681-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-1646402681-r2 { fill: #c5c8c6 }
-.terminal-1646402681-r3 { fill: #d0b344;font-weight: bold }
-.terminal-1646402681-r4 { fill: #868887 }
-.terminal-1646402681-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-1646402681-r6 { fill: #98a84b;font-weight: bold }
-.terminal-1646402681-r7 { fill: #8d7b39 }
+    .terminal-3800571160-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-3800571160-r2 { fill: #c5c8c6 }
+.terminal-3800571160-r3 { fill: #d0b344;font-weight: bold }
+.terminal-3800571160-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-3800571160-r5 { fill: #868887 }
+.terminal-3800571160-r6 { fill: #98a84b;font-weight: bold }
+.terminal-3800571160-r7 { fill: #8d7b39 }
     </style>
 
     <defs>
-    <clipPath id="terminal-1646402681-clip-terminal">
+    <clipPath id="terminal-3800571160-clip-terminal">
       <rect x="0" y="0" width="1463.0" height="487.0" />
     </clipPath>
-    <clipPath id="terminal-1646402681-line-0">
+    <clipPath id="terminal-3800571160-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1646402681-line-1">
+<clipPath id="terminal-3800571160-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1646402681-line-2">
+<clipPath id="terminal-3800571160-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1646402681-line-3">
+<clipPath id="terminal-3800571160-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1646402681-line-4">
+<clipPath id="terminal-3800571160-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1646402681-line-5">
+<clipPath id="terminal-3800571160-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1646402681-line-6">
+<clipPath id="terminal-3800571160-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1646402681-line-7">
+<clipPath id="terminal-3800571160-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1646402681-line-8">
+<clipPath id="terminal-3800571160-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1646402681-line-9">
+<clipPath id="terminal-3800571160-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1646402681-line-10">
+<clipPath id="terminal-3800571160-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1646402681-line-11">
+<clipPath id="terminal-3800571160-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1646402681-line-12">
+<clipPath id="terminal-3800571160-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1646402681-line-13">
+<clipPath id="terminal-3800571160-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1646402681-line-14">
+<clipPath id="terminal-3800571160-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1646402681-line-15">
+<clipPath id="terminal-3800571160-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1646402681-line-16">
+<clipPath id="terminal-3800571160-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1646402681-line-17">
+<clipPath id="terminal-3800571160-line-17">
     <rect x="0" y="416.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1646402681-line-18">
+<clipPath id="terminal-3800571160-line-18">
     <rect x="0" y="440.7" width="1464" height="24.65"/>
             </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="536" rx="8"/><text class="terminal-1646402681-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;ci&#160;find-newer-dependencies</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="536" rx="8"/><text class="terminal-3800571160-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;ci&#160;find-newer-dependencies</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-1646402681-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-3800571160-clip-terminal)">
     
-    <g class="terminal-1646402681-matrix">
-    <text class="terminal-1646402681-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-1646402681-line-0)">
-</text><text class="terminal-1646402681-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-1646402681-line-1)">Usage:&#160;</text><text class="terminal-1646402681-r1" x="97.6" y="44.4" textLength="524.6" clip-path="url(#terminal-1646402681-line-1)">breeze&#160;ci&#160;find-newer-dependencies&#160;[OPTIONS]</text><text class="terminal-1646402681-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-1646402681-line-1)">
-</text><text class="terminal-1646402681-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-1646402681-line-2)">
-</text><text class="terminal-1646402681-r2" x="12.2" y="93.2" textLength="536.8" clip-path="url(#terminal-1646402681-line-3)">Finds&#160;which&#160;dependencies&#160;are&#160;being&#160;upgraded.</text><text class="terminal-1646402681-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-1646402681-line-3)">
-</text><text class="terminal-1646402681-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-1646402681-line-4)">
-</text><text class="terminal-1646402681-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-1646402681-line-5)">╭─</text><text class="terminal-1646402681-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-1646402681-line-5)">&#160;Find&#160;newer&#160;dependencies&#160;flags&#160;─────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1646402681-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#termi [...]
-</text><text class="terminal-1646402681-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-1646402681-line-6)">│</text><text class="terminal-1646402681-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-1646402681-line-6)">-</text><text class="terminal-1646402681-r5" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-1646402681-line-6)">-python</text><text class="terminal-1646402681-r6" x="427" y="166.4" textLength="24.4" clip-path="url(#terminal-164 [...]
-</text><text class="terminal-1646402681-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-1646402681-line-7)">│</text><text class="terminal-1646402681-r7" x="475.8" y="190.8" textLength="732" clip-path="url(#terminal-1646402681-line-7)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
-</text><text class="terminal-1646402681-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-1646402681-line-8)">│</text><text class="terminal-1646402681-r4" x="475.8" y="215.2" textLength="732" clip-path="url(#terminal-1646402681-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-1646402681-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-1646402681-line-9)">│</text><text class="terminal-1646402681-r5" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-1646402681-line-9)">-</text><text class="terminal-1646402681-r5" x="36.6" y="239.6" textLength="109.8" clip-path="url(#terminal-1646402681-line-9)">-timezone</text><text class="terminal-1646402681-r2" x="475.8" y="239.6" textLength="402.6" clip-path="url(#termin [...]
-</text><text class="terminal-1646402681-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-1646402681-line-10)">│</text><text class="terminal-1646402681-r5" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-1646402681-line-10)">-</text><text class="terminal-1646402681-r5" x="36.6" y="264" textLength="97.6" clip-path="url(#terminal-1646402681-line-10)">-airflow</text><text class="terminal-1646402681-r5" x="134.2" y="264" textLength="268.4" clip-path="url(#terminal-1646 [...]
-</text><text class="terminal-1646402681-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-1646402681-line-11)">│</text><text class="terminal-1646402681-r2" x="475.8" y="288.4" textLength="963.8" clip-path="url(#terminal-1646402681-line-11)">specify&#160;constraints&#160;for&#160;the&#160;installed&#160;version&#160;and&#160;to&#160;find&#160;newer&#160;dependencies&#160;&#160;&#160;</text><text class="terminal-1646402681-r4" x="1451.8" y="288.4" textLength="12.2" clip-path=" [...]
-</text><text class="terminal-1646402681-r4" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-1646402681-line-12)">│</text><text class="terminal-1646402681-r7" x="475.8" y="312.8" textLength="963.8" clip-path="url(#terminal-1646402681-line-12)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
-</text><text class="terminal-1646402681-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-1646402681-line-13)">│</text><text class="terminal-1646402681-r5" x="24.4" y="337.2" textLength="12.2" clip-path="url(#terminal-1646402681-line-13)">-</text><text class="terminal-1646402681-r5" x="36.6" y="337.2" textLength="97.6" clip-path="url(#terminal-1646402681-line-13)">-updated</text><text class="terminal-1646402681-r5" x="134.2" y="337.2" textLength="146.4" clip-path="url(#termi [...]
-</text><text class="terminal-1646402681-r4" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-1646402681-line-14)">│</text><text class="terminal-1646402681-r5" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-1646402681-line-14)">-</text><text class="terminal-1646402681-r5" x="36.6" y="361.6" textLength="48.8" clip-path="url(#terminal-1646402681-line-14)">-max</text><text class="terminal-1646402681-r5" x="85.4" y="361.6" textLength="48.8" clip-path="url(#terminal-16 [...]
-</text><text class="terminal-1646402681-r4" x="0" y="386" textLength="12.2" clip-path="url(#terminal-1646402681-line-15)">│</text><text class="terminal-1646402681-r7" x="475.8" y="386" textLength="902.8" clip-path="url(#terminal-1646402681-line-15)">(INTEGER)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-1646402681-r4" x="0" y="410.4" textLength="1464" clip-path="url(#terminal-1646402681-line-16)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1646402681-r2" x="1464" y="410.4" textLength="12.2" clip-path="url(#terminal-1646402681-line-16)">
-</text><text class="terminal-1646402681-r4" x="0" y="434.8" textLength="24.4" clip-path="url(#terminal-1646402681-line-17)">╭─</text><text class="terminal-1646402681-r4" x="24.4" y="434.8" textLength="1415.2" clip-path="url(#terminal-1646402681-line-17)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1646402681-r4" x="1439.6" y="434.8" textLength="24.4" clip-path="url(#termina [...]
-</text><text class="terminal-1646402681-r4" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-1646402681-line-18)">│</text><text class="terminal-1646402681-r5" x="24.4" y="459.2" textLength="12.2" clip-path="url(#terminal-1646402681-line-18)">-</text><text class="terminal-1646402681-r5" x="36.6" y="459.2" textLength="61" clip-path="url(#terminal-1646402681-line-18)">-help</text><text class="terminal-1646402681-r6" x="122" y="459.2" textLength="24.4" clip-path="url(#terminal-1646 [...]
-</text><text class="terminal-1646402681-r4" x="0" y="483.6" textLength="1464" clip-path="url(#terminal-1646402681-line-19)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1646402681-r2" x="1464" y="483.6" textLength="12.2" clip-path="url(#terminal-1646402681-line-19)">
+    <g class="terminal-3800571160-matrix">
+    <text class="terminal-3800571160-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-3800571160-line-0)">
+</text><text class="terminal-3800571160-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-3800571160-line-1)">Usage:&#160;</text><text class="terminal-3800571160-r1" x="97.6" y="44.4" textLength="427" clip-path="url(#terminal-3800571160-line-1)">breeze&#160;ci&#160;find-newer-dependencies&#160;[</text><text class="terminal-3800571160-r4" x="524.6" y="44.4" textLength="85.4" clip-path="url(#terminal-3800571160-line-1)">OPTIONS</text><text class="terminal-3800571160-r1" x="6 [...]
+</text><text class="terminal-3800571160-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-3800571160-line-2)">
+</text><text class="terminal-3800571160-r2" x="12.2" y="93.2" textLength="536.8" clip-path="url(#terminal-3800571160-line-3)">Finds&#160;which&#160;dependencies&#160;are&#160;being&#160;upgraded.</text><text class="terminal-3800571160-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-3800571160-line-3)">
+</text><text class="terminal-3800571160-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-3800571160-line-4)">
+</text><text class="terminal-3800571160-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-3800571160-line-5)">╭─</text><text class="terminal-3800571160-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-3800571160-line-5)">&#160;Find&#160;newer&#160;dependencies&#160;flags&#160;─────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3800571160-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#termi [...]
+</text><text class="terminal-3800571160-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-3800571160-line-6)">│</text><text class="terminal-3800571160-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-3800571160-line-6)">-</text><text class="terminal-3800571160-r4" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-3800571160-line-6)">-python</text><text class="terminal-3800571160-r6" x="427" y="166.4" textLength="24.4" clip-path="url(#terminal-380 [...]
+</text><text class="terminal-3800571160-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-3800571160-line-7)">│</text><text class="terminal-3800571160-r7" x="475.8" y="190.8" textLength="732" clip-path="url(#terminal-3800571160-line-7)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10&#160;|&#160;3.11)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;< [...]
+</text><text class="terminal-3800571160-r5" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-3800571160-line-8)">│</text><text class="terminal-3800571160-r5" x="475.8" y="215.2" textLength="732" clip-path="url(#terminal-3800571160-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-3800571160-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-3800571160-line-9)">│</text><text class="terminal-3800571160-r4" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-3800571160-line-9)">-</text><text class="terminal-3800571160-r4" x="36.6" y="239.6" textLength="109.8" clip-path="url(#terminal-3800571160-line-9)">-timezone</text><text class="terminal-3800571160-r2" x="475.8" y="239.6" textLength="402.6" clip-path="url(#termin [...]
+</text><text class="terminal-3800571160-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-3800571160-line-10)">│</text><text class="terminal-3800571160-r4" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-3800571160-line-10)">-</text><text class="terminal-3800571160-r4" x="36.6" y="264" textLength="97.6" clip-path="url(#terminal-3800571160-line-10)">-airflow</text><text class="terminal-3800571160-r4" x="134.2" y="264" textLength="268.4" clip-path="url(#terminal-3800 [...]
+</text><text class="terminal-3800571160-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-3800571160-line-11)">│</text><text class="terminal-3800571160-r2" x="475.8" y="288.4" textLength="963.8" clip-path="url(#terminal-3800571160-line-11)">specify&#160;constraints&#160;for&#160;the&#160;installed&#160;version&#160;and&#160;to&#160;find&#160;newer&#160;dependencies&#160;&#160;&#160;</text><text class="terminal-3800571160-r5" x="1451.8" y="288.4" textLength="12.2" clip-path=" [...]
+</text><text class="terminal-3800571160-r5" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-3800571160-line-12)">│</text><text class="terminal-3800571160-r7" x="475.8" y="312.8" textLength="963.8" clip-path="url(#terminal-3800571160-line-12)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
+</text><text class="terminal-3800571160-r5" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-3800571160-line-13)">│</text><text class="terminal-3800571160-r4" x="24.4" y="337.2" textLength="12.2" clip-path="url(#terminal-3800571160-line-13)">-</text><text class="terminal-3800571160-r4" x="36.6" y="337.2" textLength="97.6" clip-path="url(#terminal-3800571160-line-13)">-updated</text><text class="terminal-3800571160-r4" x="134.2" y="337.2" textLength="146.4" clip-path="url(#termi [...]
+</text><text class="terminal-3800571160-r5" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-3800571160-line-14)">│</text><text class="terminal-3800571160-r4" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-3800571160-line-14)">-</text><text class="terminal-3800571160-r4" x="36.6" y="361.6" textLength="48.8" clip-path="url(#terminal-3800571160-line-14)">-max</text><text class="terminal-3800571160-r4" x="85.4" y="361.6" textLength="48.8" clip-path="url(#terminal-38 [...]
+</text><text class="terminal-3800571160-r5" x="0" y="386" textLength="12.2" clip-path="url(#terminal-3800571160-line-15)">│</text><text class="terminal-3800571160-r7" x="475.8" y="386" textLength="902.8" clip-path="url(#terminal-3800571160-line-15)">(INTEGER)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-3800571160-r5" x="0" y="410.4" textLength="1464" clip-path="url(#terminal-3800571160-line-16)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3800571160-r2" x="1464" y="410.4" textLength="12.2" clip-path="url(#terminal-3800571160-line-16)">
+</text><text class="terminal-3800571160-r5" x="0" y="434.8" textLength="24.4" clip-path="url(#terminal-3800571160-line-17)">╭─</text><text class="terminal-3800571160-r5" x="24.4" y="434.8" textLength="1415.2" clip-path="url(#terminal-3800571160-line-17)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3800571160-r5" x="1439.6" y="434.8" textLength="24.4" clip-path="url(#termina [...]
+</text><text class="terminal-3800571160-r5" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-3800571160-line-18)">│</text><text class="terminal-3800571160-r4" x="24.4" y="459.2" textLength="12.2" clip-path="url(#terminal-3800571160-line-18)">-</text><text class="terminal-3800571160-r4" x="36.6" y="459.2" textLength="61" clip-path="url(#terminal-3800571160-line-18)">-help</text><text class="terminal-3800571160-r6" x="122" y="459.2" textLength="24.4" clip-path="url(#terminal-3800 [...]
+</text><text class="terminal-3800571160-r5" x="0" y="483.6" textLength="1464" clip-path="url(#terminal-3800571160-line-19)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3800571160-r2" x="1464" y="483.6" textLength="12.2" clip-path="url(#terminal-3800571160-line-19)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_k8s.svg b/images/breeze/output_k8s.svg
index 9b6e868d5d..d9e05970f4 100644
--- a/images/breeze/output_k8s.svg
+++ b/images/breeze/output_k8s.svg
@@ -35,8 +35,8 @@
     .terminal-781963109-r1 { fill: #c5c8c6;font-weight: bold }
 .terminal-781963109-r2 { fill: #c5c8c6 }
 .terminal-781963109-r3 { fill: #d0b344;font-weight: bold }
-.terminal-781963109-r4 { fill: #868887 }
-.terminal-781963109-r5 { fill: #68a0b3;font-weight: bold }
+.terminal-781963109-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-781963109-r5 { fill: #868887 }
 .terminal-781963109-r6 { fill: #98a84b;font-weight: bold }
     </style>
 
@@ -147,36 +147,36 @@
     
     <g class="terminal-781963109-matrix">
     <text class="terminal-781963109-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-781963109-line-0)">
-</text><text class="terminal-781963109-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-781963109-line-1)">Usage:&#160;</text><text class="terminal-781963109-r1" x="97.6" y="44.4" textLength="463.6" clip-path="url(#terminal-781963109-line-1)">breeze&#160;k8s&#160;[OPTIONS]&#160;COMMAND&#160;[ARGS]...</text><text class="terminal-781963109-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-781963109-line-1)">
+</text><text class="terminal-781963109-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-781963109-line-1)">Usage:&#160;</text><text class="terminal-781963109-r1" x="97.6" y="44.4" textLength="146.4" clip-path="url(#terminal-781963109-line-1)">breeze&#160;k8s&#160;[</text><text class="terminal-781963109-r4" x="244" y="44.4" textLength="85.4" clip-path="url(#terminal-781963109-line-1)">OPTIONS</text><text class="terminal-781963109-r1" x="329.4" y="44.4" textLength="24.4" cl [...]
 </text><text class="terminal-781963109-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-781963109-line-2)">
 </text><text class="terminal-781963109-r2" x="12.2" y="93.2" textLength="597.8" clip-path="url(#terminal-781963109-line-3)">Tools&#160;that&#160;developers&#160;use&#160;to&#160;run&#160;Kubernetes&#160;tests</text><text class="terminal-781963109-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-781963109-line-3)">
 </text><text class="terminal-781963109-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-781963109-line-4)">
-</text><text class="terminal-781963109-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-781963109-line-5)">╭─</text><text class="terminal-781963109-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-781963109-line-5)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-781963109-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-781963109-l [...]
-</text><text class="terminal-781963109-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-781963109-line-6)">│</text><text class="terminal-781963109-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-781963109-line-6)">-</text><text class="terminal-781963109-r5" x="36.6" y="166.4" textLength="61" clip-path="url(#terminal-781963109-line-6)">-help</text><text class="terminal-781963109-r6" x="122" y="166.4" textLength="24.4" clip-path="url(#terminal-781963109-line [...]
-</text><text class="terminal-781963109-r4" x="0" y="190.8" textLength="1464" clip-path="url(#terminal-781963109-line-7)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-781963109-r2" x="1464" y="190.8" textLength="12.2" clip-path="url(#terminal-781963109-line-7)">
-</text><text class="terminal-781963109-r4" x="0" y="215.2" textLength="24.4" clip-path="url(#terminal-781963109-line-8)">╭─</text><text class="terminal-781963109-r4" x="24.4" y="215.2" textLength="1415.2" clip-path="url(#terminal-781963109-line-8)">&#160;K8S&#160;cluster&#160;management&#160;commands&#160;───────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-781963109-r4" x="1439.6" y="215.2" textLength="24.4" clip-path="url(#term [...]
-</text><text class="terminal-781963109-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-781963109-line-9)">│</text><text class="terminal-781963109-r5" x="24.4" y="239.6" textLength="207.4" clip-path="url(#terminal-781963109-line-9)">setup-env&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-781963109-r2" x="256.2" y="239.6" textLength="1183.4" clip-path="url(#terminal-781963109-line-9)">Setup&#160;shared&#160;Kubernetes&#160;virtual&#160;environme [...]
-</text><text class="terminal-781963109-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-781963109-line-10)">│</text><text class="terminal-781963109-r5" x="24.4" y="264" textLength="207.4" clip-path="url(#terminal-781963109-line-10)">create-cluster&#160;&#160;&#160;</text><text class="terminal-781963109-r2" x="256.2" y="264" textLength="1183.4" clip-path="url(#terminal-781963109-line-10)">Create&#160;a&#160;KinD&#160;Cluster&#160;for&#160;Python&#160;and&#160;Kubernetes&#160;v [...]
-</text><text class="terminal-781963109-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-781963109-line-11)">│</text><text class="terminal-781963109-r2" x="256.2" y="288.4" textLength="1183.4" clip-path="url(#terminal-781963109-line-11)">in&#160;parallel).&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-781963109-r4" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-781963109-line-12)">│</text><text class="terminal-781963109-r5" x="24.4" y="312.8" textLength="207.4" clip-path="url(#terminal-781963109-line-12)">configure-cluster</text><text class="terminal-781963109-r2" x="256.2" y="312.8" textLength="1183.4" clip-path="url(#terminal-781963109-line-12)">Configures&#160;cluster&#160;for&#160;airflow&#160;deployment&#160;-&#160;creates&#160;namespaces& [...]
-</text><text class="terminal-781963109-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-781963109-line-13)">│</text><text class="terminal-781963109-r2" x="256.2" y="337.2" textLength="1183.4" clip-path="url(#terminal-781963109-line-13)">all&#160;clusters&#160;in&#160;parallel).&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
-</text><text class="terminal-781963109-r4" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-781963109-line-14)">│</text><text class="terminal-781963109-r5" x="24.4" y="361.6" textLength="207.4" clip-path="url(#terminal-781963109-line-14)">build-k8s-image&#160;&#160;</text><text class="terminal-781963109-r2" x="256.2" y="361.6" textLength="1183.4" clip-path="url(#terminal-781963109-line-14)">Build&#160;k8s-ready&#160;airflow&#160;image&#160;(optionally&#160;all&#160;images&#160; [...]
-</text><text class="terminal-781963109-r4" x="0" y="386" textLength="12.2" clip-path="url(#terminal-781963109-line-15)">│</text><text class="terminal-781963109-r5" x="24.4" y="386" textLength="207.4" clip-path="url(#terminal-781963109-line-15)">upload-k8s-image&#160;</text><text class="terminal-781963109-r2" x="256.2" y="386" textLength="1183.4" clip-path="url(#terminal-781963109-line-15)">Upload&#160;k8s-ready&#160;airflow&#160;image&#160;to&#160;the&#160;KinD&#160;cluster&#160;(optiona [...]
-</text><text class="terminal-781963109-r4" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-781963109-line-16)">│</text><text class="terminal-781963109-r5" x="24.4" y="410.4" textLength="207.4" clip-path="url(#terminal-781963109-line-16)">deploy-airflow&#160;&#160;&#160;</text><text class="terminal-781963109-r2" x="256.2" y="410.4" textLength="1183.4" clip-path="url(#terminal-781963109-line-16)">Deploy&#160;airflow&#160;image&#160;to&#160;the&#160;current&#160;KinD&#160;cluster [...]
-</text><text class="terminal-781963109-r4" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-781963109-line-17)">│</text><text class="terminal-781963109-r5" x="24.4" y="434.8" textLength="207.4" clip-path="url(#terminal-781963109-line-17)">delete-cluster&#160;&#160;&#160;</text><text class="terminal-781963109-r2" x="256.2" y="434.8" textLength="1183.4" clip-path="url(#terminal-781963109-line-17)">Delete&#160;the&#160;current&#160;KinD&#160;Cluster&#160;(optionally&#160;all&#160; [...]
-</text><text class="terminal-781963109-r4" x="0" y="459.2" textLength="1464" clip-path="url(#terminal-781963109-line-18)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-781963109-r2" x="1464" y="459.2" textLength="12.2" clip-path="url(#terminal-781963109-line-18)">
-</text><text class="terminal-781963109-r4" x="0" y="483.6" textLength="24.4" clip-path="url(#terminal-781963109-line-19)">╭─</text><text class="terminal-781963109-r4" x="24.4" y="483.6" textLength="1415.2" clip-path="url(#terminal-781963109-line-19)">&#160;K8S&#160;inspection&#160;commands&#160;───────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-781963109-r4" x="1439.6" y="483.6" textLength="24.4" clip-path="url(#termina [...]
-</text><text class="terminal-781963109-r4" x="0" y="508" textLength="12.2" clip-path="url(#terminal-781963109-line-20)">│</text><text class="terminal-781963109-r5" x="24.4" y="508" textLength="97.6" clip-path="url(#terminal-781963109-line-20)">status&#160;&#160;</text><text class="terminal-781963109-r2" x="146.4" y="508" textLength="1293.2" clip-path="url(#terminal-781963109-line-20)">Check&#160;status&#160;of&#160;the&#160;current&#160;cluster&#160;and&#160;airflow&#160;deployed&#160;to [...]
-</text><text class="terminal-781963109-r4" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-781963109-line-21)">│</text><text class="terminal-781963109-r5" x="24.4" y="532.4" textLength="97.6" clip-path="url(#terminal-781963109-line-21)">logs&#160;&#160;&#160;&#160;</text><text class="terminal-781963109-r2" x="146.4" y="532.4" textLength="463.6" clip-path="url(#terminal-781963109-line-21)">Dump&#160;k8s&#160;logs&#160;to&#160;${TMP_DIR}/kind_logs_</text><text class="terminal-78 [...]
-</text><text class="terminal-781963109-r4" x="0" y="556.8" textLength="1464" clip-path="url(#terminal-781963109-line-22)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-781963109-r2" x="1464" y="556.8" textLength="12.2" clip-path="url(#terminal-781963109-line-22)">
-</text><text class="terminal-781963109-r4" x="0" y="581.2" textLength="24.4" clip-path="url(#terminal-781963109-line-23)">╭─</text><text class="terminal-781963109-r4" x="24.4" y="581.2" textLength="1415.2" clip-path="url(#terminal-781963109-line-23)">&#160;K8S&#160;testing&#160;commands&#160;──────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-781963109-r4" x="1439.6" y="581.2" textLength="24.4" clip-path="url(#termina [...]
-</text><text class="terminal-781963109-r4" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-781963109-line-24)">│</text><text class="terminal-781963109-r5" x="24.4" y="605.6" textLength="219.6" clip-path="url(#terminal-781963109-line-24)">tests&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-781963109-r2" x="268.4" y="605.6" textLength="1171.2" clip-path="url(#terminal-781963109-line-24)">Run&#160;tests&#160;against&#160 [...]
-</text><text class="terminal-781963109-r4" x="0" y="630" textLength="12.2" clip-path="url(#terminal-781963109-line-25)">│</text><text class="terminal-781963109-r5" x="24.4" y="630" textLength="219.6" clip-path="url(#terminal-781963109-line-25)">run-complete-tests</text><text class="terminal-781963109-r2" x="268.4" y="630" textLength="1171.2" clip-path="url(#terminal-781963109-line-25)">Run&#160;complete&#160;k8s&#160;tests&#160;consisting&#160;of:&#160;creating&#160;cluster,&#160;buildin [...]
-</text><text class="terminal-781963109-r4" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-781963109-line-26)">│</text><text class="terminal-781963109-r2" x="268.4" y="654.4" textLength="1171.2" clip-path="url(#terminal-781963109-line-26)">airflow,&#160;running&#160;tests&#160;and&#160;deleting&#160;clusters&#160;(optionally&#160;for&#160;all&#160;clusters&#160;in&#160;parallel).&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-781963109-r4" x= [...]
-</text><text class="terminal-781963109-r4" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-781963109-line-27)">│</text><text class="terminal-781963109-r5" x="24.4" y="678.8" textLength="219.6" clip-path="url(#terminal-781963109-line-27)">shell&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-781963109-r2" x="268.4" y="678.8" textLength="1171.2" clip-path="url(#terminal-781963109-line-27)">Run&#160;shell&#160;environment& [...]
-</text><text class="terminal-781963109-r4" x="0" y="703.2" textLength="12.2" clip-path="url(#terminal-781963109-line-28)">│</text><text class="terminal-781963109-r5" x="24.4" y="703.2" textLength="219.6" clip-path="url(#terminal-781963109-line-28)">k9s&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-781963109-r2" x="268.4" y="703.2" textLength="1171.2" clip-path="url(#terminal-781963109-line-28)">Run&#160;k9s&#160;tool [...]
-</text><text class="terminal-781963109-r4" x="0" y="727.6" textLength="12.2" clip-path="url(#terminal-781963109-line-29)">│</text><text class="terminal-781963109-r5" x="24.4" y="727.6" textLength="219.6" clip-path="url(#terminal-781963109-line-29)">logs&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-781963109-r2" x="268.4" y="727.6" textLength="463.6" clip-path="url(#terminal-781963109-line-29)">Dump&#160;k8s&#160;logs&#160 [...]
-</text><text class="terminal-781963109-r4" x="0" y="752" textLength="1464" clip-path="url(#terminal-781963109-line-30)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-781963109-r2" x="1464" y="752" textLength="12.2" clip-path="url(#terminal-781963109-line-30)">
+</text><text class="terminal-781963109-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-781963109-line-5)">╭─</text><text class="terminal-781963109-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-781963109-line-5)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-781963109-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-781963109-l [...]
+</text><text class="terminal-781963109-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-781963109-line-6)">│</text><text class="terminal-781963109-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-781963109-line-6)">-</text><text class="terminal-781963109-r4" x="36.6" y="166.4" textLength="61" clip-path="url(#terminal-781963109-line-6)">-help</text><text class="terminal-781963109-r6" x="122" y="166.4" textLength="24.4" clip-path="url(#terminal-781963109-line [...]
+</text><text class="terminal-781963109-r5" x="0" y="190.8" textLength="1464" clip-path="url(#terminal-781963109-line-7)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-781963109-r2" x="1464" y="190.8" textLength="12.2" clip-path="url(#terminal-781963109-line-7)">
+</text><text class="terminal-781963109-r5" x="0" y="215.2" textLength="24.4" clip-path="url(#terminal-781963109-line-8)">╭─</text><text class="terminal-781963109-r5" x="24.4" y="215.2" textLength="1415.2" clip-path="url(#terminal-781963109-line-8)">&#160;K8S&#160;cluster&#160;management&#160;commands&#160;───────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-781963109-r5" x="1439.6" y="215.2" textLength="24.4" clip-path="url(#term [...]
+</text><text class="terminal-781963109-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-781963109-line-9)">│</text><text class="terminal-781963109-r4" x="24.4" y="239.6" textLength="207.4" clip-path="url(#terminal-781963109-line-9)">setup-env&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-781963109-r2" x="256.2" y="239.6" textLength="1183.4" clip-path="url(#terminal-781963109-line-9)">Setup&#160;shared&#160;Kubernetes&#160;virtual&#160;environme [...]
+</text><text class="terminal-781963109-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-781963109-line-10)">│</text><text class="terminal-781963109-r4" x="24.4" y="264" textLength="207.4" clip-path="url(#terminal-781963109-line-10)">create-cluster&#160;&#160;&#160;</text><text class="terminal-781963109-r2" x="256.2" y="264" textLength="1183.4" clip-path="url(#terminal-781963109-line-10)">Create&#160;a&#160;KinD&#160;Cluster&#160;for&#160;Python&#160;and&#160;Kubernetes&#160;v [...]
+</text><text class="terminal-781963109-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-781963109-line-11)">│</text><text class="terminal-781963109-r2" x="256.2" y="288.4" textLength="1183.4" clip-path="url(#terminal-781963109-line-11)">in&#160;parallel).&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-781963109-r5" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-781963109-line-12)">│</text><text class="terminal-781963109-r4" x="24.4" y="312.8" textLength="207.4" clip-path="url(#terminal-781963109-line-12)">configure-cluster</text><text class="terminal-781963109-r2" x="256.2" y="312.8" textLength="1183.4" clip-path="url(#terminal-781963109-line-12)">Configures&#160;cluster&#160;for&#160;airflow&#160;deployment&#160;-&#160;creates&#160;namespaces& [...]
+</text><text class="terminal-781963109-r5" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-781963109-line-13)">│</text><text class="terminal-781963109-r2" x="256.2" y="337.2" textLength="1183.4" clip-path="url(#terminal-781963109-line-13)">all&#160;clusters&#160;in&#160;parallel).&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
+</text><text class="terminal-781963109-r5" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-781963109-line-14)">│</text><text class="terminal-781963109-r4" x="24.4" y="361.6" textLength="207.4" clip-path="url(#terminal-781963109-line-14)">build-k8s-image&#160;&#160;</text><text class="terminal-781963109-r2" x="256.2" y="361.6" textLength="1183.4" clip-path="url(#terminal-781963109-line-14)">Build&#160;k8s-ready&#160;airflow&#160;image&#160;(optionally&#160;all&#160;images&#160; [...]
+</text><text class="terminal-781963109-r5" x="0" y="386" textLength="12.2" clip-path="url(#terminal-781963109-line-15)">│</text><text class="terminal-781963109-r4" x="24.4" y="386" textLength="207.4" clip-path="url(#terminal-781963109-line-15)">upload-k8s-image&#160;</text><text class="terminal-781963109-r2" x="256.2" y="386" textLength="1183.4" clip-path="url(#terminal-781963109-line-15)">Upload&#160;k8s-ready&#160;airflow&#160;image&#160;to&#160;the&#160;KinD&#160;cluster&#160;(optiona [...]
+</text><text class="terminal-781963109-r5" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-781963109-line-16)">│</text><text class="terminal-781963109-r4" x="24.4" y="410.4" textLength="207.4" clip-path="url(#terminal-781963109-line-16)">deploy-airflow&#160;&#160;&#160;</text><text class="terminal-781963109-r2" x="256.2" y="410.4" textLength="1183.4" clip-path="url(#terminal-781963109-line-16)">Deploy&#160;airflow&#160;image&#160;to&#160;the&#160;current&#160;KinD&#160;cluster [...]
+</text><text class="terminal-781963109-r5" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-781963109-line-17)">│</text><text class="terminal-781963109-r4" x="24.4" y="434.8" textLength="207.4" clip-path="url(#terminal-781963109-line-17)">delete-cluster&#160;&#160;&#160;</text><text class="terminal-781963109-r2" x="256.2" y="434.8" textLength="1183.4" clip-path="url(#terminal-781963109-line-17)">Delete&#160;the&#160;current&#160;KinD&#160;Cluster&#160;(optionally&#160;all&#160; [...]
+</text><text class="terminal-781963109-r5" x="0" y="459.2" textLength="1464" clip-path="url(#terminal-781963109-line-18)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-781963109-r2" x="1464" y="459.2" textLength="12.2" clip-path="url(#terminal-781963109-line-18)">
+</text><text class="terminal-781963109-r5" x="0" y="483.6" textLength="24.4" clip-path="url(#terminal-781963109-line-19)">╭─</text><text class="terminal-781963109-r5" x="24.4" y="483.6" textLength="1415.2" clip-path="url(#terminal-781963109-line-19)">&#160;K8S&#160;inspection&#160;commands&#160;───────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-781963109-r5" x="1439.6" y="483.6" textLength="24.4" clip-path="url(#termina [...]
+</text><text class="terminal-781963109-r5" x="0" y="508" textLength="12.2" clip-path="url(#terminal-781963109-line-20)">│</text><text class="terminal-781963109-r4" x="24.4" y="508" textLength="97.6" clip-path="url(#terminal-781963109-line-20)">status&#160;&#160;</text><text class="terminal-781963109-r2" x="146.4" y="508" textLength="1293.2" clip-path="url(#terminal-781963109-line-20)">Check&#160;status&#160;of&#160;the&#160;current&#160;cluster&#160;and&#160;airflow&#160;deployed&#160;to [...]
+</text><text class="terminal-781963109-r5" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-781963109-line-21)">│</text><text class="terminal-781963109-r4" x="24.4" y="532.4" textLength="97.6" clip-path="url(#terminal-781963109-line-21)">logs&#160;&#160;&#160;&#160;</text><text class="terminal-781963109-r2" x="146.4" y="532.4" textLength="231.8" clip-path="url(#terminal-781963109-line-21)">Dump&#160;k8s&#160;logs&#160;to&#160;${</text><text class="terminal-781963109-r4" x="378. [...]
+</text><text class="terminal-781963109-r5" x="0" y="556.8" textLength="1464" clip-path="url(#terminal-781963109-line-22)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-781963109-r2" x="1464" y="556.8" textLength="12.2" clip-path="url(#terminal-781963109-line-22)">
+</text><text class="terminal-781963109-r5" x="0" y="581.2" textLength="24.4" clip-path="url(#terminal-781963109-line-23)">╭─</text><text class="terminal-781963109-r5" x="24.4" y="581.2" textLength="1415.2" clip-path="url(#terminal-781963109-line-23)">&#160;K8S&#160;testing&#160;commands&#160;──────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-781963109-r5" x="1439.6" y="581.2" textLength="24.4" clip-path="url(#termina [...]
+</text><text class="terminal-781963109-r5" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-781963109-line-24)">│</text><text class="terminal-781963109-r4" x="24.4" y="605.6" textLength="219.6" clip-path="url(#terminal-781963109-line-24)">tests&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-781963109-r2" x="268.4" y="605.6" textLength="1171.2" clip-path="url(#terminal-781963109-line-24)">Run&#160;tests&#160;against&#160 [...]
+</text><text class="terminal-781963109-r5" x="0" y="630" textLength="12.2" clip-path="url(#terminal-781963109-line-25)">│</text><text class="terminal-781963109-r4" x="24.4" y="630" textLength="219.6" clip-path="url(#terminal-781963109-line-25)">run-complete-tests</text><text class="terminal-781963109-r2" x="268.4" y="630" textLength="1171.2" clip-path="url(#terminal-781963109-line-25)">Run&#160;complete&#160;k8s&#160;tests&#160;consisting&#160;of:&#160;creating&#160;cluster,&#160;buildin [...]
+</text><text class="terminal-781963109-r5" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-781963109-line-26)">│</text><text class="terminal-781963109-r2" x="268.4" y="654.4" textLength="1171.2" clip-path="url(#terminal-781963109-line-26)">airflow,&#160;running&#160;tests&#160;and&#160;deleting&#160;clusters&#160;(optionally&#160;for&#160;all&#160;clusters&#160;in&#160;parallel).&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-781963109-r5" x= [...]
+</text><text class="terminal-781963109-r5" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-781963109-line-27)">│</text><text class="terminal-781963109-r4" x="24.4" y="678.8" textLength="219.6" clip-path="url(#terminal-781963109-line-27)">shell&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-781963109-r2" x="268.4" y="678.8" textLength="1171.2" clip-path="url(#terminal-781963109-line-27)">Run&#160;shell&#160;environment& [...]
+</text><text class="terminal-781963109-r5" x="0" y="703.2" textLength="12.2" clip-path="url(#terminal-781963109-line-28)">│</text><text class="terminal-781963109-r4" x="24.4" y="703.2" textLength="219.6" clip-path="url(#terminal-781963109-line-28)">k9s&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-781963109-r2" x="268.4" y="703.2" textLength="1171.2" clip-path="url(#terminal-781963109-line-28)">Run&#160;k9s&#160;tool [...]
+</text><text class="terminal-781963109-r5" x="0" y="727.6" textLength="12.2" clip-path="url(#terminal-781963109-line-29)">│</text><text class="terminal-781963109-r4" x="24.4" y="727.6" textLength="219.6" clip-path="url(#terminal-781963109-line-29)">logs&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-781963109-r2" x="268.4" y="727.6" textLength="231.8" clip-path="url(#terminal-781963109-line-29)">Dump&#160;k8s&#160;logs&#160 [...]
+</text><text class="terminal-781963109-r5" x="0" y="752" textLength="1464" clip-path="url(#terminal-781963109-line-30)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-781963109-r2" x="1464" y="752" textLength="12.2" clip-path="url(#terminal-781963109-line-30)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_k8s_build-k8s-image.svg b/images/breeze/output_k8s_build-k8s-image.svg
index d34d962cc9..1422f1dc77 100644
--- a/images/breeze/output_k8s_build-k8s-image.svg
+++ b/images/breeze/output_k8s_build-k8s-image.svg
@@ -1,4 +1,4 @@
-<svg class="rich-terminal" viewBox="0 0 1482 708.8" xmlns="http://www.w3.org/2000/svg">
+<svg class="rich-terminal" viewBox="0 0 1482 733.1999999999999" xmlns="http://www.w3.org/2000/svg">
     <!-- Generated with Rich https://www.textualize.io -->
     <style>
 
@@ -19,149 +19,153 @@
         font-weight: 700;
     }
 
-    .terminal-925219226-matrix {
+    .terminal-590269750-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-925219226-title {
+    .terminal-590269750-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-925219226-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-925219226-r2 { fill: #c5c8c6 }
-.terminal-925219226-r3 { fill: #d0b344;font-weight: bold }
-.terminal-925219226-r4 { fill: #868887 }
-.terminal-925219226-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-925219226-r6 { fill: #98a84b;font-weight: bold }
-.terminal-925219226-r7 { fill: #8d7b39 }
+    .terminal-590269750-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-590269750-r2 { fill: #c5c8c6 }
+.terminal-590269750-r3 { fill: #d0b344;font-weight: bold }
+.terminal-590269750-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-590269750-r5 { fill: #868887 }
+.terminal-590269750-r6 { fill: #98a84b;font-weight: bold }
+.terminal-590269750-r7 { fill: #8d7b39 }
     </style>
 
     <defs>
-    <clipPath id="terminal-925219226-clip-terminal">
-      <rect x="0" y="0" width="1463.0" height="657.8" />
+    <clipPath id="terminal-590269750-clip-terminal">
+      <rect x="0" y="0" width="1463.0" height="682.1999999999999" />
     </clipPath>
-    <clipPath id="terminal-925219226-line-0">
+    <clipPath id="terminal-590269750-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-925219226-line-1">
+<clipPath id="terminal-590269750-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-925219226-line-2">
+<clipPath id="terminal-590269750-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-925219226-line-3">
+<clipPath id="terminal-590269750-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-925219226-line-4">
+<clipPath id="terminal-590269750-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-925219226-line-5">
+<clipPath id="terminal-590269750-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-925219226-line-6">
+<clipPath id="terminal-590269750-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-925219226-line-7">
+<clipPath id="terminal-590269750-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-925219226-line-8">
+<clipPath id="terminal-590269750-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-925219226-line-9">
+<clipPath id="terminal-590269750-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-925219226-line-10">
+<clipPath id="terminal-590269750-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-925219226-line-11">
+<clipPath id="terminal-590269750-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-925219226-line-12">
+<clipPath id="terminal-590269750-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-925219226-line-13">
+<clipPath id="terminal-590269750-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-925219226-line-14">
+<clipPath id="terminal-590269750-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-925219226-line-15">
+<clipPath id="terminal-590269750-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-925219226-line-16">
+<clipPath id="terminal-590269750-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-925219226-line-17">
+<clipPath id="terminal-590269750-line-17">
     <rect x="0" y="416.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-925219226-line-18">
+<clipPath id="terminal-590269750-line-18">
     <rect x="0" y="440.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-925219226-line-19">
+<clipPath id="terminal-590269750-line-19">
     <rect x="0" y="465.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-925219226-line-20">
+<clipPath id="terminal-590269750-line-20">
     <rect x="0" y="489.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-925219226-line-21">
+<clipPath id="terminal-590269750-line-21">
     <rect x="0" y="513.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-925219226-line-22">
+<clipPath id="terminal-590269750-line-22">
     <rect x="0" y="538.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-925219226-line-23">
+<clipPath id="terminal-590269750-line-23">
     <rect x="0" y="562.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-925219226-line-24">
+<clipPath id="terminal-590269750-line-24">
     <rect x="0" y="587.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-925219226-line-25">
+<clipPath id="terminal-590269750-line-25">
     <rect x="0" y="611.5" width="1464" height="24.65"/>
             </clipPath>
+<clipPath id="terminal-590269750-line-26">
+    <rect x="0" y="635.9" width="1464" height="24.65"/>
+            </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="706.8" rx="8"/><text class="terminal-925219226-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;k8s&#160;build-k8s-image</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="731.2" rx="8"/><text class="terminal-590269750-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;k8s&#160;build-k8s-image</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-925219226-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-590269750-clip-terminal)">
     
-    <g class="terminal-925219226-matrix">
-    <text class="terminal-925219226-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-925219226-line-0)">
-</text><text class="terminal-925219226-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-925219226-line-1)">Usage:&#160;</text><text class="terminal-925219226-r1" x="97.6" y="44.4" textLength="439.2" clip-path="url(#terminal-925219226-line-1)">breeze&#160;k8s&#160;build-k8s-image&#160;[OPTIONS]</text><text class="terminal-925219226-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-925219226-line-1)">
-</text><text class="terminal-925219226-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-925219226-line-2)">
-</text><text class="terminal-925219226-r2" x="12.2" y="93.2" textLength="805.2" clip-path="url(#terminal-925219226-line-3)">Build&#160;k8s-ready&#160;airflow&#160;image&#160;(optionally&#160;all&#160;images&#160;in&#160;parallel).</text><text class="terminal-925219226-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-925219226-line-3)">
-</text><text class="terminal-925219226-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-925219226-line-4)">
-</text><text class="terminal-925219226-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-925219226-line-5)">╭─</text><text class="terminal-925219226-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-925219226-line-5)">&#160;Build&#160;image&#160;flags&#160;─────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-925219226-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-925219 [...]
-</text><text class="terminal-925219226-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-925219226-line-6)">│</text><text class="terminal-925219226-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-925219226-line-6)">-</text><text class="terminal-925219226-r5" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-925219226-line-6)">-python</text><text class="terminal-925219226-r6" x="292.8" y="166.4" textLength="24.4" clip-path="url(#terminal-92521922 [...]
-</text><text class="terminal-925219226-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-925219226-line-7)">│</text><text class="terminal-925219226-r4" x="341.6" y="190.8" textLength="732" clip-path="url(#terminal-925219226-line-7)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-925219226-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-925219226-line-8)">│</text><text class="terminal-925219226-r5" x="24.4" y="215.2" textLength="12.2" clip-path="url(#terminal-925219226-line-8)">-</text><text class="terminal-925219226-r5" x="36.6" y="215.2" textLength="97.6" clip-path="url(#terminal-925219226-line-8)">-rebuild</text><text class="terminal-925219226-r5" x="134.2" y="215.2" textLength="134.2" clip-path="url(#terminal-925219 [...]
-</text><text class="terminal-925219226-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-925219226-line-9)">│</text><text class="terminal-925219226-r5" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-925219226-line-9)">-</text><text class="terminal-925219226-r5" x="36.6" y="239.6" textLength="73.2" clip-path="url(#terminal-925219226-line-9)">-image</text><text class="terminal-925219226-r5" x="109.8" y="239.6" textLength="48.8" clip-path="url(#terminal-925219226 [...]
-</text><text class="terminal-925219226-r4" x="0" y="264" textLength="1464" clip-path="url(#terminal-925219226-line-10)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-925219226-r2" x="1464" y="264" textLength="12.2" clip-path="url(#terminal-925219226-line-10)">
-</text><text class="terminal-925219226-r4" x="0" y="288.4" textLength="24.4" clip-path="url(#terminal-925219226-line-11)">╭─</text><text class="terminal-925219226-r4" x="24.4" y="288.4" textLength="1415.2" clip-path="url(#terminal-925219226-line-11)">&#160;Parallel&#160;options&#160;──────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-925219226-r4" x="1439.6" y="288.4" textLength="24.4" clip-path="url(#terminal-925 [...]
-</text><text class="terminal-925219226-r4" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-925219226-line-12)">│</text><text class="terminal-925219226-r5" x="24.4" y="312.8" textLength="12.2" clip-path="url(#terminal-925219226-line-12)">-</text><text class="terminal-925219226-r5" x="36.6" y="312.8" textLength="48.8" clip-path="url(#terminal-925219226-line-12)">-run</text><text class="terminal-925219226-r5" x="85.4" y="312.8" textLength="146.4" clip-path="url(#terminal-92521922 [...]
-</text><text class="terminal-925219226-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-925219226-line-13)">│</text><text class="terminal-925219226-r5" x="24.4" y="337.2" textLength="12.2" clip-path="url(#terminal-925219226-line-13)">-</text><text class="terminal-925219226-r5" x="36.6" y="337.2" textLength="146.4" clip-path="url(#terminal-925219226-line-13)">-parallelism</text><text class="terminal-925219226-r2" x="378.2" y="337.2" textLength="915" clip-path="url(#terminal- [...]
-</text><text class="terminal-925219226-r4" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-925219226-line-14)">│</text><text class="terminal-925219226-r7" x="378.2" y="361.6" textLength="915" clip-path="url(#terminal-925219226-line-14)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
-</text><text class="terminal-925219226-r4" x="0" y="386" textLength="12.2" clip-path="url(#terminal-925219226-line-15)">│</text><text class="terminal-925219226-r4" x="378.2" y="386" textLength="915" clip-path="url(#terminal-925219226-line-15)">[default:&#160;4;&#160;1&lt;=x&lt;=8]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-925219226-r4" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-925219226-line-16)">│</text><text class="terminal-925219226-r5" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-925219226-line-16)">-</text><text class="terminal-925219226-r5" x="36.6" y="410.4" textLength="85.4" clip-path="url(#terminal-925219226-line-16)">-python</text><text class="terminal-925219226-r5" x="122" y="410.4" textLength="109.8" clip-path="url(#terminal-925219 [...]
-</text><text class="terminal-925219226-r4" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-925219226-line-17)">│</text><text class="terminal-925219226-r4" x="378.2" y="434.8" textLength="951.6" clip-path="url(#terminal-925219226-line-17)">[default:&#160;3.7&#160;3.8&#160;3.9&#160;3.10]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
-</text><text class="terminal-925219226-r4" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-925219226-line-18)">│</text><text class="terminal-925219226-r5" x="24.4" y="459.2" textLength="12.2" clip-path="url(#terminal-925219226-line-18)">-</text><text class="terminal-925219226-r5" x="36.6" y="459.2" textLength="61" clip-path="url(#terminal-925219226-line-18)">-skip</text><text class="terminal-925219226-r5" x="97.6" y="459.2" textLength="97.6" clip-path="url(#terminal-925219226- [...]
-</text><text class="terminal-925219226-r4" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-925219226-line-19)">│</text><text class="terminal-925219226-r5" x="24.4" y="483.6" textLength="12.2" clip-path="url(#terminal-925219226-line-19)">-</text><text class="terminal-925219226-r5" x="36.6" y="483.6" textLength="73.2" clip-path="url(#terminal-925219226-line-19)">-debug</text><text class="terminal-925219226-r5" x="109.8" y="483.6" textLength="122" clip-path="url(#terminal-9252192 [...]
-</text><text class="terminal-925219226-r4" x="0" y="508" textLength="12.2" clip-path="url(#terminal-925219226-line-20)">│</text><text class="terminal-925219226-r5" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-925219226-line-20)">-</text><text class="terminal-925219226-r5" x="36.6" y="508" textLength="97.6" clip-path="url(#terminal-925219226-line-20)">-include</text><text class="terminal-925219226-r5" x="134.2" y="508" textLength="195.2" clip-path="url(#terminal-925219226-l [...]
-</text><text class="terminal-925219226-r4" x="0" y="532.4" textLength="1464" clip-path="url(#terminal-925219226-line-21)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-925219226-r2" x="1464" y="532.4" textLength="12.2" clip-path="url(#terminal-925219226-line-21)">
-</text><text class="terminal-925219226-r4" x="0" y="556.8" textLength="24.4" clip-path="url(#terminal-925219226-line-22)">╭─</text><text class="terminal-925219226-r4" x="24.4" y="556.8" textLength="1415.2" clip-path="url(#terminal-925219226-line-22)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-925219226-r4" x="1439.6" y="556.8" textLength="24.4" clip-path="url(#terminal-925 [...]
-</text><text class="terminal-925219226-r4" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-925219226-line-23)">│</text><text class="terminal-925219226-r5" x="24.4" y="581.2" textLength="12.2" clip-path="url(#terminal-925219226-line-23)">-</text><text class="terminal-925219226-r5" x="36.6" y="581.2" textLength="97.6" clip-path="url(#terminal-925219226-line-23)">-verbose</text><text class="terminal-925219226-r6" x="158.6" y="581.2" textLength="24.4" clip-path="url(#terminal-9252 [...]
-</text><text class="terminal-925219226-r4" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-925219226-line-24)">│</text><text class="terminal-925219226-r5" x="24.4" y="605.6" textLength="12.2" clip-path="url(#terminal-925219226-line-24)">-</text><text class="terminal-925219226-r5" x="36.6" y="605.6" textLength="48.8" clip-path="url(#terminal-925219226-line-24)">-dry</text><text class="terminal-925219226-r5" x="85.4" y="605.6" textLength="48.8" clip-path="url(#terminal-925219226 [...]
-</text><text class="terminal-925219226-r4" x="0" y="630" textLength="12.2" clip-path="url(#terminal-925219226-line-25)">│</text><text class="terminal-925219226-r5" x="24.4" y="630" textLength="12.2" clip-path="url(#terminal-925219226-line-25)">-</text><text class="terminal-925219226-r5" x="36.6" y="630" textLength="61" clip-path="url(#terminal-925219226-line-25)">-help</text><text class="terminal-925219226-r6" x="158.6" y="630" textLength="24.4" clip-path="url(#terminal-925219226-line-25 [...]
-</text><text class="terminal-925219226-r4" x="0" y="654.4" textLength="1464" clip-path="url(#terminal-925219226-line-26)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-925219226-r2" x="1464" y="654.4" textLength="12.2" clip-path="url(#terminal-925219226-line-26)">
+    <g class="terminal-590269750-matrix">
+    <text class="terminal-590269750-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-590269750-line-0)">
+</text><text class="terminal-590269750-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-590269750-line-1)">Usage:&#160;</text><text class="terminal-590269750-r1" x="97.6" y="44.4" textLength="341.6" clip-path="url(#terminal-590269750-line-1)">breeze&#160;k8s&#160;build-k8s-image&#160;[</text><text class="terminal-590269750-r4" x="439.2" y="44.4" textLength="85.4" clip-path="url(#terminal-590269750-line-1)">OPTIONS</text><text class="terminal-590269750-r1" x="524.6" y="44. [...]
+</text><text class="terminal-590269750-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-590269750-line-2)">
+</text><text class="terminal-590269750-r2" x="12.2" y="93.2" textLength="805.2" clip-path="url(#terminal-590269750-line-3)">Build&#160;k8s-ready&#160;airflow&#160;image&#160;(optionally&#160;all&#160;images&#160;in&#160;parallel).</text><text class="terminal-590269750-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-590269750-line-3)">
+</text><text class="terminal-590269750-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-590269750-line-4)">
+</text><text class="terminal-590269750-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-590269750-line-5)">╭─</text><text class="terminal-590269750-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-590269750-line-5)">&#160;Build&#160;image&#160;flags&#160;─────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-590269750-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-590269 [...]
+</text><text class="terminal-590269750-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-590269750-line-6)">│</text><text class="terminal-590269750-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-590269750-line-6)">-</text><text class="terminal-590269750-r4" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-590269750-line-6)">-python</text><text class="terminal-590269750-r6" x="292.8" y="166.4" textLength="24.4" clip-path="url(#terminal-59026975 [...]
+</text><text class="terminal-590269750-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-590269750-line-7)">│</text><text class="terminal-590269750-r7" x="341.6" y="190.8" textLength="732" clip-path="url(#terminal-590269750-line-7)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10&#160;|&#160;3.11)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</tex [...]
+</text><text class="terminal-590269750-r5" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-590269750-line-8)">│</text><text class="terminal-590269750-r5" x="341.6" y="215.2" textLength="732" clip-path="url(#terminal-590269750-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-590269750-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-590269750-line-9)">│</text><text class="terminal-590269750-r4" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-590269750-line-9)">-</text><text class="terminal-590269750-r4" x="36.6" y="239.6" textLength="97.6" clip-path="url(#terminal-590269750-line-9)">-rebuild</text><text class="terminal-590269750-r4" x="134.2" y="239.6" textLength="134.2" clip-path="url(#terminal-590269 [...]
+</text><text class="terminal-590269750-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-590269750-line-10)">│</text><text class="terminal-590269750-r4" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-590269750-line-10)">-</text><text class="terminal-590269750-r4" x="36.6" y="264" textLength="73.2" clip-path="url(#terminal-590269750-line-10)">-image</text><text class="terminal-590269750-r4" x="109.8" y="264" textLength="48.8" clip-path="url(#terminal-590269750-line [...]
+</text><text class="terminal-590269750-r5" x="0" y="288.4" textLength="1464" clip-path="url(#terminal-590269750-line-11)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-590269750-r2" x="1464" y="288.4" textLength="12.2" clip-path="url(#terminal-590269750-line-11)">
+</text><text class="terminal-590269750-r5" x="0" y="312.8" textLength="24.4" clip-path="url(#terminal-590269750-line-12)">╭─</text><text class="terminal-590269750-r5" x="24.4" y="312.8" textLength="1415.2" clip-path="url(#terminal-590269750-line-12)">&#160;Parallel&#160;options&#160;──────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-590269750-r5" x="1439.6" y="312.8" textLength="24.4" clip-path="url(#terminal-590 [...]
+</text><text class="terminal-590269750-r5" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-590269750-line-13)">│</text><text class="terminal-590269750-r4" x="24.4" y="337.2" textLength="12.2" clip-path="url(#terminal-590269750-line-13)">-</text><text class="terminal-590269750-r4" x="36.6" y="337.2" textLength="48.8" clip-path="url(#terminal-590269750-line-13)">-run</text><text class="terminal-590269750-r4" x="85.4" y="337.2" textLength="146.4" clip-path="url(#terminal-59026975 [...]
+</text><text class="terminal-590269750-r5" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-590269750-line-14)">│</text><text class="terminal-590269750-r4" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-590269750-line-14)">-</text><text class="terminal-590269750-r4" x="36.6" y="361.6" textLength="146.4" clip-path="url(#terminal-590269750-line-14)">-parallelism</text><text class="terminal-590269750-r2" x="378.2" y="361.6" textLength="915" clip-path="url(#terminal- [...]
+</text><text class="terminal-590269750-r5" x="0" y="386" textLength="12.2" clip-path="url(#terminal-590269750-line-15)">│</text><text class="terminal-590269750-r7" x="378.2" y="386" textLength="915" clip-path="url(#terminal-590269750-line-15)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
+</text><text class="terminal-590269750-r5" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-590269750-line-16)">│</text><text class="terminal-590269750-r5" x="378.2" y="410.4" textLength="915" clip-path="url(#terminal-590269750-line-16)">[default:&#160;4;&#160;1&lt;=x&lt;=8]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
+</text><text class="terminal-590269750-r5" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-590269750-line-17)">│</text><text class="terminal-590269750-r4" x="24.4" y="434.8" textLength="12.2" clip-path="url(#terminal-590269750-line-17)">-</text><text class="terminal-590269750-r4" x="36.6" y="434.8" textLength="85.4" clip-path="url(#terminal-590269750-line-17)">-python</text><text class="terminal-590269750-r4" x="122" y="434.8" textLength="109.8" clip-path="url(#terminal-590269 [...]
+</text><text class="terminal-590269750-r5" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-590269750-line-18)">│</text><text class="terminal-590269750-r5" x="378.2" y="459.2" textLength="951.6" clip-path="url(#terminal-590269750-line-18)">[default:&#160;3.7&#160;3.8&#160;3.9&#160;3.10&#160;3.11]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-590269750-r5" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-590269750-line-19)">│</text><text class="terminal-590269750-r4" x="24.4" y="483.6" textLength="12.2" clip-path="url(#terminal-590269750-line-19)">-</text><text class="terminal-590269750-r4" x="36.6" y="483.6" textLength="61" clip-path="url(#terminal-590269750-line-19)">-skip</text><text class="terminal-590269750-r4" x="97.6" y="483.6" textLength="97.6" clip-path="url(#terminal-590269750- [...]
+</text><text class="terminal-590269750-r5" x="0" y="508" textLength="12.2" clip-path="url(#terminal-590269750-line-20)">│</text><text class="terminal-590269750-r4" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-590269750-line-20)">-</text><text class="terminal-590269750-r4" x="36.6" y="508" textLength="73.2" clip-path="url(#terminal-590269750-line-20)">-debug</text><text class="terminal-590269750-r4" x="109.8" y="508" textLength="122" clip-path="url(#terminal-590269750-line- [...]
+</text><text class="terminal-590269750-r5" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-590269750-line-21)">│</text><text class="terminal-590269750-r4" x="24.4" y="532.4" textLength="12.2" clip-path="url(#terminal-590269750-line-21)">-</text><text class="terminal-590269750-r4" x="36.6" y="532.4" textLength="97.6" clip-path="url(#terminal-590269750-line-21)">-include</text><text class="terminal-590269750-r4" x="134.2" y="532.4" textLength="195.2" clip-path="url(#terminal-590 [...]
+</text><text class="terminal-590269750-r5" x="0" y="556.8" textLength="1464" clip-path="url(#terminal-590269750-line-22)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-590269750-r2" x="1464" y="556.8" textLength="12.2" clip-path="url(#terminal-590269750-line-22)">
+</text><text class="terminal-590269750-r5" x="0" y="581.2" textLength="24.4" clip-path="url(#terminal-590269750-line-23)">╭─</text><text class="terminal-590269750-r5" x="24.4" y="581.2" textLength="1415.2" clip-path="url(#terminal-590269750-line-23)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-590269750-r5" x="1439.6" y="581.2" textLength="24.4" clip-path="url(#terminal-590 [...]
+</text><text class="terminal-590269750-r5" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-590269750-line-24)">│</text><text class="terminal-590269750-r4" x="24.4" y="605.6" textLength="12.2" clip-path="url(#terminal-590269750-line-24)">-</text><text class="terminal-590269750-r4" x="36.6" y="605.6" textLength="97.6" clip-path="url(#terminal-590269750-line-24)">-verbose</text><text class="terminal-590269750-r6" x="158.6" y="605.6" textLength="24.4" clip-path="url(#terminal-5902 [...]
+</text><text class="terminal-590269750-r5" x="0" y="630" textLength="12.2" clip-path="url(#terminal-590269750-line-25)">│</text><text class="terminal-590269750-r4" x="24.4" y="630" textLength="12.2" clip-path="url(#terminal-590269750-line-25)">-</text><text class="terminal-590269750-r4" x="36.6" y="630" textLength="48.8" clip-path="url(#terminal-590269750-line-25)">-dry</text><text class="terminal-590269750-r4" x="85.4" y="630" textLength="48.8" clip-path="url(#terminal-590269750-line-25 [...]
+</text><text class="terminal-590269750-r5" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-590269750-line-26)">│</text><text class="terminal-590269750-r4" x="24.4" y="654.4" textLength="12.2" clip-path="url(#terminal-590269750-line-26)">-</text><text class="terminal-590269750-r4" x="36.6" y="654.4" textLength="61" clip-path="url(#terminal-590269750-line-26)">-help</text><text class="terminal-590269750-r6" x="158.6" y="654.4" textLength="24.4" clip-path="url(#terminal-590269750 [...]
+</text><text class="terminal-590269750-r5" x="0" y="678.8" textLength="1464" clip-path="url(#terminal-590269750-line-27)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-590269750-r2" x="1464" y="678.8" textLength="12.2" clip-path="url(#terminal-590269750-line-27)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_k8s_configure-cluster.svg b/images/breeze/output_k8s_configure-cluster.svg
index 761b21aebe..97543ad6ef 100644
--- a/images/breeze/output_k8s_configure-cluster.svg
+++ b/images/breeze/output_k8s_configure-cluster.svg
@@ -19,157 +19,157 @@
         font-weight: 700;
     }
 
-    .terminal-2822430757-matrix {
+    .terminal-2651709703-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-2822430757-title {
+    .terminal-2651709703-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-2822430757-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-2822430757-r2 { fill: #c5c8c6 }
-.terminal-2822430757-r3 { fill: #d0b344;font-weight: bold }
-.terminal-2822430757-r4 { fill: #868887 }
-.terminal-2822430757-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-2822430757-r6 { fill: #98a84b;font-weight: bold }
-.terminal-2822430757-r7 { fill: #8d7b39 }
+    .terminal-2651709703-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-2651709703-r2 { fill: #c5c8c6 }
+.terminal-2651709703-r3 { fill: #d0b344;font-weight: bold }
+.terminal-2651709703-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-2651709703-r5 { fill: #868887 }
+.terminal-2651709703-r6 { fill: #98a84b;font-weight: bold }
+.terminal-2651709703-r7 { fill: #8d7b39 }
     </style>
 
     <defs>
-    <clipPath id="terminal-2822430757-clip-terminal">
+    <clipPath id="terminal-2651709703-clip-terminal">
       <rect x="0" y="0" width="1463.0" height="706.5999999999999" />
     </clipPath>
-    <clipPath id="terminal-2822430757-line-0">
+    <clipPath id="terminal-2651709703-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-1">
+<clipPath id="terminal-2651709703-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-2">
+<clipPath id="terminal-2651709703-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-3">
+<clipPath id="terminal-2651709703-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-4">
+<clipPath id="terminal-2651709703-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-5">
+<clipPath id="terminal-2651709703-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-6">
+<clipPath id="terminal-2651709703-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-7">
+<clipPath id="terminal-2651709703-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-8">
+<clipPath id="terminal-2651709703-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-9">
+<clipPath id="terminal-2651709703-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-10">
+<clipPath id="terminal-2651709703-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-11">
+<clipPath id="terminal-2651709703-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-12">
+<clipPath id="terminal-2651709703-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-13">
+<clipPath id="terminal-2651709703-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-14">
+<clipPath id="terminal-2651709703-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-15">
+<clipPath id="terminal-2651709703-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-16">
+<clipPath id="terminal-2651709703-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-17">
+<clipPath id="terminal-2651709703-line-17">
     <rect x="0" y="416.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-18">
+<clipPath id="terminal-2651709703-line-18">
     <rect x="0" y="440.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-19">
+<clipPath id="terminal-2651709703-line-19">
     <rect x="0" y="465.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-20">
+<clipPath id="terminal-2651709703-line-20">
     <rect x="0" y="489.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-21">
+<clipPath id="terminal-2651709703-line-21">
     <rect x="0" y="513.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-22">
+<clipPath id="terminal-2651709703-line-22">
     <rect x="0" y="538.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-23">
+<clipPath id="terminal-2651709703-line-23">
     <rect x="0" y="562.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-24">
+<clipPath id="terminal-2651709703-line-24">
     <rect x="0" y="587.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-25">
+<clipPath id="terminal-2651709703-line-25">
     <rect x="0" y="611.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-26">
+<clipPath id="terminal-2651709703-line-26">
     <rect x="0" y="635.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2822430757-line-27">
+<clipPath id="terminal-2651709703-line-27">
     <rect x="0" y="660.3" width="1464" height="24.65"/>
             </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="755.6" rx="8"/><text class="terminal-2822430757-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;k8s&#160;configure-cluster</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="755.6" rx="8"/><text class="terminal-2651709703-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;k8s&#160;configure-cluster</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-2822430757-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-2651709703-clip-terminal)">
     
-    <g class="terminal-2822430757-matrix">
-    <text class="terminal-2822430757-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-2822430757-line-0)">
-</text><text class="terminal-2822430757-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-2822430757-line-1)">Usage:&#160;</text><text class="terminal-2822430757-r1" x="97.6" y="44.4" textLength="463.6" clip-path="url(#terminal-2822430757-line-1)">breeze&#160;k8s&#160;configure-cluster&#160;[OPTIONS]</text><text class="terminal-2822430757-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-2822430757-line-1)">
-</text><text class="terminal-2822430757-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-2822430757-line-2)">
-</text><text class="terminal-2822430757-r2" x="12.2" y="93.2" textLength="1390.8" clip-path="url(#terminal-2822430757-line-3)">Configures&#160;cluster&#160;for&#160;airflow&#160;deployment&#160;-&#160;creates&#160;namespaces&#160;and&#160;test&#160;resources&#160;(optionally&#160;for&#160;all&#160;clusters&#160;in&#160;</text><text class="terminal-2822430757-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-2822430757-line-3)">
-</text><text class="terminal-2822430757-r2" x="12.2" y="117.6" textLength="122" clip-path="url(#terminal-2822430757-line-4)">parallel).</text><text class="terminal-2822430757-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-2822430757-line-4)">
-</text><text class="terminal-2822430757-r2" x="1464" y="142" textLength="12.2" clip-path="url(#terminal-2822430757-line-5)">
-</text><text class="terminal-2822430757-r4" x="0" y="166.4" textLength="24.4" clip-path="url(#terminal-2822430757-line-6)">╭─</text><text class="terminal-2822430757-r4" x="24.4" y="166.4" textLength="1415.2" clip-path="url(#terminal-2822430757-line-6)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2822430757-r4" x="1439.6" y="166.4" textLength="24.4" clip-path="url(#terminal- [...]
-</text><text class="terminal-2822430757-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-2822430757-line-7)">│</text><text class="terminal-2822430757-r5" x="24.4" y="190.8" textLength="12.2" clip-path="url(#terminal-2822430757-line-7)">-</text><text class="terminal-2822430757-r5" x="36.6" y="190.8" textLength="85.4" clip-path="url(#terminal-2822430757-line-7)">-python</text><text class="terminal-2822430757-r6" x="353.8" y="190.8" textLength="24.4" clip-path="url(#terminal-2 [...]
-</text><text class="terminal-2822430757-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-2822430757-line-8)">│</text><text class="terminal-2822430757-r7" x="402.6" y="215.2" textLength="732" clip-path="url(#terminal-2822430757-line-8)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
-</text><text class="terminal-2822430757-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-2822430757-line-9)">│</text><text class="terminal-2822430757-r4" x="402.6" y="239.6" textLength="732" clip-path="url(#terminal-2822430757-line-9)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-2822430757-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-2822430757-line-10)">│</text><text class="terminal-2822430757-r5" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-2822430757-line-10)">-</text><text class="terminal-2822430757-r5" x="36.6" y="264" textLength="134.2" clip-path="url(#terminal-2822430757-line-10)">-kubernetes</text><text class="terminal-2822430757-r5" x="170.8" y="264" textLength="97.6" clip-path="url(#terminal-2 [...]
-</text><text class="terminal-2822430757-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-2822430757-line-11)">│</text><text class="terminal-2822430757-r7" x="402.6" y="288.4" textLength="658.8" clip-path="url(#terminal-2822430757-line-11)">(&gt;v1.25.2&lt;&#160;|&#160;v1.24.6&#160;|&#160;v1.23.12&#160;|&#160;v1.22.15&#160;|&#160;v1.21.14)</text><text class="terminal-2822430757-r4" x="1451.8" y="288.4" textLength="12.2" clip-path="url(#terminal-2822430757-line-11)">│</text>< [...]
-</text><text class="terminal-2822430757-r4" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-2822430757-line-12)">│</text><text class="terminal-2822430757-r4" x="402.6" y="312.8" textLength="658.8" clip-path="url(#terminal-2822430757-line-12)">[default:&#160;v1.25.2]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-2822430757-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-2822430757-line-13)">│</text><text class="terminal-2822430757-r5" x="24.4" y="337.2" textLength="12.2" clip-path="url(#terminal-2822430757-line-13)">-</text><text class="terminal-2822430757-r5" x="36.6" y="337.2" textLength="48.8" clip-path="url(#terminal-2822430757-line-13)">-run</text><text class="terminal-2822430757-r5" x="85.4" y="337.2" textLength="146.4" clip-path="url(#terminal-2 [...]
-</text><text class="terminal-2822430757-r4" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-2822430757-line-14)">│</text><text class="terminal-2822430757-r5" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-2822430757-line-14)">-</text><text class="terminal-2822430757-r5" x="36.6" y="361.6" textLength="146.4" clip-path="url(#terminal-2822430757-line-14)">-parallelism</text><text class="terminal-2822430757-r2" x="402.6" y="361.6" textLength="1037" clip-path="url(#t [...]
-</text><text class="terminal-2822430757-r4" x="0" y="386" textLength="12.2" clip-path="url(#terminal-2822430757-line-15)">│</text><text class="terminal-2822430757-r2" x="402.6" y="386" textLength="1037" clip-path="url(#terminal-2822430757-line-15)">cluster&#160;operations.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
-</text><text class="terminal-2822430757-r4" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-2822430757-line-16)">│</text><text class="terminal-2822430757-r7" x="402.6" y="410.4" textLength="1037" clip-path="url(#terminal-2822430757-line-16)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
-</text><text class="terminal-2822430757-r4" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-2822430757-line-17)">│</text><text class="terminal-2822430757-r4" x="402.6" y="434.8" textLength="1037" clip-path="url(#terminal-2822430757-line-17)">[default:&#160;2;&#160;1&lt;=x&lt;=4]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
-</text><text class="terminal-2822430757-r4" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-2822430757-line-18)">│</text><text class="terminal-2822430757-r5" x="24.4" y="459.2" textLength="12.2" clip-path="url(#terminal-2822430757-line-18)">-</text><text class="terminal-2822430757-r5" x="36.6" y="459.2" textLength="61" clip-path="url(#terminal-2822430757-line-18)">-skip</text><text class="terminal-2822430757-r5" x="97.6" y="459.2" textLength="97.6" clip-path="url(#terminal-282 [...]
-</text><text class="terminal-2822430757-r4" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-2822430757-line-19)">│</text><text class="terminal-2822430757-r5" x="24.4" y="483.6" textLength="12.2" clip-path="url(#terminal-2822430757-line-19)">-</text><text class="terminal-2822430757-r5" x="36.6" y="483.6" textLength="73.2" clip-path="url(#terminal-2822430757-line-19)">-debug</text><text class="terminal-2822430757-r5" x="109.8" y="483.6" textLength="122" clip-path="url(#terminal- [...]
-</text><text class="terminal-2822430757-r4" x="0" y="508" textLength="12.2" clip-path="url(#terminal-2822430757-line-20)">│</text><text class="terminal-2822430757-r5" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-2822430757-line-20)">-</text><text class="terminal-2822430757-r5" x="36.6" y="508" textLength="97.6" clip-path="url(#terminal-2822430757-line-20)">-include</text><text class="terminal-2822430757-r5" x="134.2" y="508" textLength="195.2" clip-path="url(#terminal-2822 [...]
-</text><text class="terminal-2822430757-r4" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-2822430757-line-21)">│</text><text class="terminal-2822430757-r5" x="24.4" y="532.4" textLength="12.2" clip-path="url(#terminal-2822430757-line-21)">-</text><text class="terminal-2822430757-r5" x="36.6" y="532.4" textLength="85.4" clip-path="url(#terminal-2822430757-line-21)">-python</text><text class="terminal-2822430757-r5" x="122" y="532.4" textLength="109.8" clip-path="url(#terminal [...]
-</text><text class="terminal-2822430757-r4" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-2822430757-line-22)">│</text><text class="terminal-2822430757-r4" x="402.6" y="556.8" textLength="951.6" clip-path="url(#terminal-2822430757-line-22)">[default:&#160;3.7&#160;3.8&#160;3.9&#160;3.10]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-2822430757-r4" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-2822430757-line-23)">│</text><text class="terminal-2822430757-r5" x="24.4" y="581.2" textLength="12.2" clip-path="url(#terminal-2822430757-line-23)">-</text><text class="terminal-2822430757-r5" x="36.6" y="581.2" textLength="134.2" clip-path="url(#terminal-2822430757-line-23)">-kubernetes</text><text class="terminal-2822430757-r5" x="170.8" y="581.2" textLength="109.8" clip-path="url(#t [...]
-</text><text class="terminal-2822430757-r4" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-2822430757-line-24)">│</text><text class="terminal-2822430757-r4" x="402.6" y="605.6" textLength="756.4" clip-path="url(#terminal-2822430757-line-24)">[default:&#160;v1.25.2&#160;v1.24.6&#160;v1.23.12&#160;v1.22.15&#160;v1.21.14]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-2822430757-r4" x="1451.8" y="605.6" textLength="12.2" clip-path="url(#termina [...]
-</text><text class="terminal-2822430757-r4" x="0" y="630" textLength="12.2" clip-path="url(#terminal-2822430757-line-25)">│</text><text class="terminal-2822430757-r5" x="24.4" y="630" textLength="12.2" clip-path="url(#terminal-2822430757-line-25)">-</text><text class="terminal-2822430757-r5" x="36.6" y="630" textLength="97.6" clip-path="url(#terminal-2822430757-line-25)">-verbose</text><text class="terminal-2822430757-r6" x="353.8" y="630" textLength="24.4" clip-path="url(#terminal-28224 [...]
-</text><text class="terminal-2822430757-r4" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-2822430757-line-26)">│</text><text class="terminal-2822430757-r5" x="24.4" y="654.4" textLength="12.2" clip-path="url(#terminal-2822430757-line-26)">-</text><text class="terminal-2822430757-r5" x="36.6" y="654.4" textLength="48.8" clip-path="url(#terminal-2822430757-line-26)">-dry</text><text class="terminal-2822430757-r5" x="85.4" y="654.4" textLength="48.8" clip-path="url(#terminal-28 [...]
-</text><text class="terminal-2822430757-r4" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-2822430757-line-27)">│</text><text class="terminal-2822430757-r5" x="24.4" y="678.8" textLength="12.2" clip-path="url(#terminal-2822430757-line-27)">-</text><text class="terminal-2822430757-r5" x="36.6" y="678.8" textLength="61" clip-path="url(#terminal-2822430757-line-27)">-help</text><text class="terminal-2822430757-r6" x="353.8" y="678.8" textLength="24.4" clip-path="url(#terminal-28 [...]
-</text><text class="terminal-2822430757-r4" x="0" y="703.2" textLength="1464" clip-path="url(#terminal-2822430757-line-28)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2822430757-r2" x="1464" y="703.2" textLength="12.2" clip-path="url(#terminal-2822430757-line-28)">
+    <g class="terminal-2651709703-matrix">
+    <text class="terminal-2651709703-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-2651709703-line-0)">
+</text><text class="terminal-2651709703-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-2651709703-line-1)">Usage:&#160;</text><text class="terminal-2651709703-r1" x="97.6" y="44.4" textLength="366" clip-path="url(#terminal-2651709703-line-1)">breeze&#160;k8s&#160;configure-cluster&#160;[</text><text class="terminal-2651709703-r4" x="463.6" y="44.4" textLength="85.4" clip-path="url(#terminal-2651709703-line-1)">OPTIONS</text><text class="terminal-2651709703-r1" x="549" y [...]
+</text><text class="terminal-2651709703-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-2651709703-line-2)">
+</text><text class="terminal-2651709703-r2" x="12.2" y="93.2" textLength="1390.8" clip-path="url(#terminal-2651709703-line-3)">Configures&#160;cluster&#160;for&#160;airflow&#160;deployment&#160;-&#160;creates&#160;namespaces&#160;and&#160;test&#160;resources&#160;(optionally&#160;for&#160;all&#160;clusters&#160;in&#160;</text><text class="terminal-2651709703-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-2651709703-line-3)">
+</text><text class="terminal-2651709703-r2" x="12.2" y="117.6" textLength="122" clip-path="url(#terminal-2651709703-line-4)">parallel).</text><text class="terminal-2651709703-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-2651709703-line-4)">
+</text><text class="terminal-2651709703-r2" x="1464" y="142" textLength="12.2" clip-path="url(#terminal-2651709703-line-5)">
+</text><text class="terminal-2651709703-r5" x="0" y="166.4" textLength="24.4" clip-path="url(#terminal-2651709703-line-6)">╭─</text><text class="terminal-2651709703-r5" x="24.4" y="166.4" textLength="1415.2" clip-path="url(#terminal-2651709703-line-6)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2651709703-r5" x="1439.6" y="166.4" textLength="24.4" clip-path="url(#terminal- [...]
+</text><text class="terminal-2651709703-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-2651709703-line-7)">│</text><text class="terminal-2651709703-r4" x="24.4" y="190.8" textLength="12.2" clip-path="url(#terminal-2651709703-line-7)">-</text><text class="terminal-2651709703-r4" x="36.6" y="190.8" textLength="85.4" clip-path="url(#terminal-2651709703-line-7)">-python</text><text class="terminal-2651709703-r6" x="353.8" y="190.8" textLength="24.4" clip-path="url(#terminal-2 [...]
+</text><text class="terminal-2651709703-r5" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-2651709703-line-8)">│</text><text class="terminal-2651709703-r7" x="402.6" y="215.2" textLength="732" clip-path="url(#terminal-2651709703-line-8)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10&#160;|&#160;3.11)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;< [...]
+</text><text class="terminal-2651709703-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-2651709703-line-9)">│</text><text class="terminal-2651709703-r5" x="402.6" y="239.6" textLength="732" clip-path="url(#terminal-2651709703-line-9)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-2651709703-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-2651709703-line-10)">│</text><text class="terminal-2651709703-r4" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-2651709703-line-10)">-</text><text class="terminal-2651709703-r4" x="36.6" y="264" textLength="134.2" clip-path="url(#terminal-2651709703-line-10)">-kubernetes</text><text class="terminal-2651709703-r4" x="170.8" y="264" textLength="97.6" clip-path="url(#terminal-2 [...]
+</text><text class="terminal-2651709703-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-2651709703-line-11)">│</text><text class="terminal-2651709703-r7" x="402.6" y="288.4" textLength="658.8" clip-path="url(#terminal-2651709703-line-11)">(&gt;v1.25.2&lt;&#160;|&#160;v1.24.6&#160;|&#160;v1.23.12&#160;|&#160;v1.22.15&#160;|&#160;v1.21.14)</text><text class="terminal-2651709703-r5" x="1451.8" y="288.4" textLength="12.2" clip-path="url(#terminal-2651709703-line-11)">│</text>< [...]
+</text><text class="terminal-2651709703-r5" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-2651709703-line-12)">│</text><text class="terminal-2651709703-r5" x="402.6" y="312.8" textLength="658.8" clip-path="url(#terminal-2651709703-line-12)">[default:&#160;v1.25.2]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-2651709703-r5" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-2651709703-line-13)">│</text><text class="terminal-2651709703-r4" x="24.4" y="337.2" textLength="12.2" clip-path="url(#terminal-2651709703-line-13)">-</text><text class="terminal-2651709703-r4" x="36.6" y="337.2" textLength="48.8" clip-path="url(#terminal-2651709703-line-13)">-run</text><text class="terminal-2651709703-r4" x="85.4" y="337.2" textLength="146.4" clip-path="url(#terminal-2 [...]
+</text><text class="terminal-2651709703-r5" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-2651709703-line-14)">│</text><text class="terminal-2651709703-r4" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-2651709703-line-14)">-</text><text class="terminal-2651709703-r4" x="36.6" y="361.6" textLength="146.4" clip-path="url(#terminal-2651709703-line-14)">-parallelism</text><text class="terminal-2651709703-r2" x="402.6" y="361.6" textLength="1037" clip-path="url(#t [...]
+</text><text class="terminal-2651709703-r5" x="0" y="386" textLength="12.2" clip-path="url(#terminal-2651709703-line-15)">│</text><text class="terminal-2651709703-r2" x="402.6" y="386" textLength="1037" clip-path="url(#terminal-2651709703-line-15)">cluster&#160;operations.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
+</text><text class="terminal-2651709703-r5" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-2651709703-line-16)">│</text><text class="terminal-2651709703-r7" x="402.6" y="410.4" textLength="1037" clip-path="url(#terminal-2651709703-line-16)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
+</text><text class="terminal-2651709703-r5" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-2651709703-line-17)">│</text><text class="terminal-2651709703-r5" x="402.6" y="434.8" textLength="1037" clip-path="url(#terminal-2651709703-line-17)">[default:&#160;2;&#160;1&lt;=x&lt;=4]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
+</text><text class="terminal-2651709703-r5" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-2651709703-line-18)">│</text><text class="terminal-2651709703-r4" x="24.4" y="459.2" textLength="12.2" clip-path="url(#terminal-2651709703-line-18)">-</text><text class="terminal-2651709703-r4" x="36.6" y="459.2" textLength="61" clip-path="url(#terminal-2651709703-line-18)">-skip</text><text class="terminal-2651709703-r4" x="97.6" y="459.2" textLength="97.6" clip-path="url(#terminal-265 [...]
+</text><text class="terminal-2651709703-r5" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-2651709703-line-19)">│</text><text class="terminal-2651709703-r4" x="24.4" y="483.6" textLength="12.2" clip-path="url(#terminal-2651709703-line-19)">-</text><text class="terminal-2651709703-r4" x="36.6" y="483.6" textLength="73.2" clip-path="url(#terminal-2651709703-line-19)">-debug</text><text class="terminal-2651709703-r4" x="109.8" y="483.6" textLength="122" clip-path="url(#terminal- [...]
+</text><text class="terminal-2651709703-r5" x="0" y="508" textLength="12.2" clip-path="url(#terminal-2651709703-line-20)">│</text><text class="terminal-2651709703-r4" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-2651709703-line-20)">-</text><text class="terminal-2651709703-r4" x="36.6" y="508" textLength="97.6" clip-path="url(#terminal-2651709703-line-20)">-include</text><text class="terminal-2651709703-r4" x="134.2" y="508" textLength="195.2" clip-path="url(#terminal-2651 [...]
+</text><text class="terminal-2651709703-r5" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-2651709703-line-21)">│</text><text class="terminal-2651709703-r4" x="24.4" y="532.4" textLength="12.2" clip-path="url(#terminal-2651709703-line-21)">-</text><text class="terminal-2651709703-r4" x="36.6" y="532.4" textLength="85.4" clip-path="url(#terminal-2651709703-line-21)">-python</text><text class="terminal-2651709703-r4" x="122" y="532.4" textLength="109.8" clip-path="url(#terminal [...]
+</text><text class="terminal-2651709703-r5" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-2651709703-line-22)">│</text><text class="terminal-2651709703-r5" x="402.6" y="556.8" textLength="951.6" clip-path="url(#terminal-2651709703-line-22)">[default:&#160;3.7&#160;3.8&#160;3.9&#160;3.10&#160;3.11]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-2651709703-r5" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-2651709703-line-23)">│</text><text class="terminal-2651709703-r4" x="24.4" y="581.2" textLength="12.2" clip-path="url(#terminal-2651709703-line-23)">-</text><text class="terminal-2651709703-r4" x="36.6" y="581.2" textLength="134.2" clip-path="url(#terminal-2651709703-line-23)">-kubernetes</text><text class="terminal-2651709703-r4" x="170.8" y="581.2" textLength="109.8" clip-path="url(#t [...]
+</text><text class="terminal-2651709703-r5" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-2651709703-line-24)">│</text><text class="terminal-2651709703-r5" x="402.6" y="605.6" textLength="756.4" clip-path="url(#terminal-2651709703-line-24)">[default:&#160;v1.25.2&#160;v1.24.6&#160;v1.23.12&#160;v1.22.15&#160;v1.21.14]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-2651709703-r5" x="1451.8" y="605.6" textLength="12.2" clip-path="url(#termina [...]
+</text><text class="terminal-2651709703-r5" x="0" y="630" textLength="12.2" clip-path="url(#terminal-2651709703-line-25)">│</text><text class="terminal-2651709703-r4" x="24.4" y="630" textLength="12.2" clip-path="url(#terminal-2651709703-line-25)">-</text><text class="terminal-2651709703-r4" x="36.6" y="630" textLength="97.6" clip-path="url(#terminal-2651709703-line-25)">-verbose</text><text class="terminal-2651709703-r6" x="353.8" y="630" textLength="24.4" clip-path="url(#terminal-26517 [...]
+</text><text class="terminal-2651709703-r5" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-2651709703-line-26)">│</text><text class="terminal-2651709703-r4" x="24.4" y="654.4" textLength="12.2" clip-path="url(#terminal-2651709703-line-26)">-</text><text class="terminal-2651709703-r4" x="36.6" y="654.4" textLength="48.8" clip-path="url(#terminal-2651709703-line-26)">-dry</text><text class="terminal-2651709703-r4" x="85.4" y="654.4" textLength="48.8" clip-path="url(#terminal-26 [...]
+</text><text class="terminal-2651709703-r5" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-2651709703-line-27)">│</text><text class="terminal-2651709703-r4" x="24.4" y="678.8" textLength="12.2" clip-path="url(#terminal-2651709703-line-27)">-</text><text class="terminal-2651709703-r4" x="36.6" y="678.8" textLength="61" clip-path="url(#terminal-2651709703-line-27)">-help</text><text class="terminal-2651709703-r6" x="353.8" y="678.8" textLength="24.4" clip-path="url(#terminal-26 [...]
+</text><text class="terminal-2651709703-r5" x="0" y="703.2" textLength="1464" clip-path="url(#terminal-2651709703-line-28)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2651709703-r2" x="1464" y="703.2" textLength="12.2" clip-path="url(#terminal-2651709703-line-28)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_k8s_create-cluster.svg b/images/breeze/output_k8s_create-cluster.svg
index da407be401..df39cea739 100644
--- a/images/breeze/output_k8s_create-cluster.svg
+++ b/images/breeze/output_k8s_create-cluster.svg
@@ -19,173 +19,173 @@
         font-weight: 700;
     }
 
-    .terminal-3311949748-matrix {
+    .terminal-660625558-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-3311949748-title {
+    .terminal-660625558-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-3311949748-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-3311949748-r2 { fill: #c5c8c6 }
-.terminal-3311949748-r3 { fill: #d0b344;font-weight: bold }
-.terminal-3311949748-r4 { fill: #868887 }
-.terminal-3311949748-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-3311949748-r6 { fill: #98a84b;font-weight: bold }
-.terminal-3311949748-r7 { fill: #8d7b39 }
+    .terminal-660625558-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-660625558-r2 { fill: #c5c8c6 }
+.terminal-660625558-r3 { fill: #d0b344;font-weight: bold }
+.terminal-660625558-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-660625558-r5 { fill: #868887 }
+.terminal-660625558-r6 { fill: #98a84b;font-weight: bold }
+.terminal-660625558-r7 { fill: #8d7b39 }
     </style>
 
     <defs>
-    <clipPath id="terminal-3311949748-clip-terminal">
+    <clipPath id="terminal-660625558-clip-terminal">
       <rect x="0" y="0" width="1463.0" height="804.1999999999999" />
     </clipPath>
-    <clipPath id="terminal-3311949748-line-0">
+    <clipPath id="terminal-660625558-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-1">
+<clipPath id="terminal-660625558-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-2">
+<clipPath id="terminal-660625558-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-3">
+<clipPath id="terminal-660625558-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-4">
+<clipPath id="terminal-660625558-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-5">
+<clipPath id="terminal-660625558-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-6">
+<clipPath id="terminal-660625558-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-7">
+<clipPath id="terminal-660625558-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-8">
+<clipPath id="terminal-660625558-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-9">
+<clipPath id="terminal-660625558-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-10">
+<clipPath id="terminal-660625558-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-11">
+<clipPath id="terminal-660625558-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-12">
+<clipPath id="terminal-660625558-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-13">
+<clipPath id="terminal-660625558-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-14">
+<clipPath id="terminal-660625558-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-15">
+<clipPath id="terminal-660625558-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-16">
+<clipPath id="terminal-660625558-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-17">
+<clipPath id="terminal-660625558-line-17">
     <rect x="0" y="416.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-18">
+<clipPath id="terminal-660625558-line-18">
     <rect x="0" y="440.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-19">
+<clipPath id="terminal-660625558-line-19">
     <rect x="0" y="465.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-20">
+<clipPath id="terminal-660625558-line-20">
     <rect x="0" y="489.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-21">
+<clipPath id="terminal-660625558-line-21">
     <rect x="0" y="513.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-22">
+<clipPath id="terminal-660625558-line-22">
     <rect x="0" y="538.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-23">
+<clipPath id="terminal-660625558-line-23">
     <rect x="0" y="562.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-24">
+<clipPath id="terminal-660625558-line-24">
     <rect x="0" y="587.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-25">
+<clipPath id="terminal-660625558-line-25">
     <rect x="0" y="611.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-26">
+<clipPath id="terminal-660625558-line-26">
     <rect x="0" y="635.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-27">
+<clipPath id="terminal-660625558-line-27">
     <rect x="0" y="660.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-28">
+<clipPath id="terminal-660625558-line-28">
     <rect x="0" y="684.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-29">
+<clipPath id="terminal-660625558-line-29">
     <rect x="0" y="709.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-30">
+<clipPath id="terminal-660625558-line-30">
     <rect x="0" y="733.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3311949748-line-31">
+<clipPath id="terminal-660625558-line-31">
     <rect x="0" y="757.9" width="1464" height="24.65"/>
             </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="853.2" rx="8"/><text class="terminal-3311949748-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;k8s&#160;create-cluster</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="853.2" rx="8"/><text class="terminal-660625558-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;k8s&#160;create-cluster</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-3311949748-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-660625558-clip-terminal)">
     
-    <g class="terminal-3311949748-matrix">
-    <text class="terminal-3311949748-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-3311949748-line-0)">
-</text><text class="terminal-3311949748-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-3311949748-line-1)">Usage:&#160;</text><text class="terminal-3311949748-r1" x="97.6" y="44.4" textLength="427" clip-path="url(#terminal-3311949748-line-1)">breeze&#160;k8s&#160;create-cluster&#160;[OPTIONS]</text><text class="terminal-3311949748-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-3311949748-line-1)">
-</text><text class="terminal-3311949748-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-3311949748-line-2)">
-</text><text class="terminal-3311949748-r2" x="12.2" y="93.2" textLength="1354.2" clip-path="url(#terminal-3311949748-line-3)">Create&#160;a&#160;KinD&#160;Cluster&#160;for&#160;Python&#160;and&#160;Kubernetes&#160;version&#160;specified&#160;(optionally&#160;create&#160;all&#160;clusters&#160;in&#160;parallel).</text><text class="terminal-3311949748-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-3311949748-line-3)">
-</text><text class="terminal-3311949748-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-3311949748-line-4)">
-</text><text class="terminal-3311949748-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-3311949748-line-5)">╭─</text><text class="terminal-3311949748-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-3311949748-line-5)">&#160;K8S&#160;cluster&#160;creation&#160;flags&#160;────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3311949748-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#termi [...]
-</text><text class="terminal-3311949748-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-3311949748-line-6)">│</text><text class="terminal-3311949748-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-3311949748-line-6)">-</text><text class="terminal-3311949748-r5" x="36.6" y="166.4" textLength="73.2" clip-path="url(#terminal-3311949748-line-6)">-force</text><text class="terminal-3311949748-r5" x="109.8" y="166.4" textLength="207.4" clip-path="url(#terminal-3 [...]
-</text><text class="terminal-3311949748-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-3311949748-line-7)">│</text><text class="terminal-3311949748-r5" x="24.4" y="190.8" textLength="12.2" clip-path="url(#terminal-3311949748-line-7)">-</text><text class="terminal-3311949748-r5" x="36.6" y="190.8" textLength="85.4" clip-path="url(#terminal-3311949748-line-7)">-python</text><text class="terminal-3311949748-r6" x="341.6" y="190.8" textLength="24.4" clip-path="url(#terminal-3 [...]
-</text><text class="terminal-3311949748-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-3311949748-line-8)">│</text><text class="terminal-3311949748-r7" x="390.4" y="215.2" textLength="732" clip-path="url(#terminal-3311949748-line-8)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
-</text><text class="terminal-3311949748-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-3311949748-line-9)">│</text><text class="terminal-3311949748-r4" x="390.4" y="239.6" textLength="732" clip-path="url(#terminal-3311949748-line-9)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-3311949748-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-3311949748-line-10)">│</text><text class="terminal-3311949748-r5" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-3311949748-line-10)">-</text><text class="terminal-3311949748-r5" x="36.6" y="264" textLength="134.2" clip-path="url(#terminal-3311949748-line-10)">-kubernetes</text><text class="terminal-3311949748-r5" x="170.8" y="264" textLength="97.6" clip-path="url(#terminal-3 [...]
-</text><text class="terminal-3311949748-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-3311949748-line-11)">│</text><text class="terminal-3311949748-r7" x="390.4" y="288.4" textLength="658.8" clip-path="url(#terminal-3311949748-line-11)">(&gt;v1.25.2&lt;&#160;|&#160;v1.24.6&#160;|&#160;v1.23.12&#160;|&#160;v1.22.15&#160;|&#160;v1.21.14)</text><text class="terminal-3311949748-r4" x="1451.8" y="288.4" textLength="12.2" clip-path="url(#terminal-3311949748-line-11)">│</text>< [...]
-</text><text class="terminal-3311949748-r4" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-3311949748-line-12)">│</text><text class="terminal-3311949748-r4" x="390.4" y="312.8" textLength="658.8" clip-path="url(#terminal-3311949748-line-12)">[default:&#160;v1.25.2]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-3311949748-r4" x="0" y="337.2" textLength="1464" clip-path="url(#terminal-3311949748-line-13)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3311949748-r2" x="1464" y="337.2" textLength="12.2" clip-path="url(#terminal-3311949748-line-13)">
-</text><text class="terminal-3311949748-r4" x="0" y="361.6" textLength="24.4" clip-path="url(#terminal-3311949748-line-14)">╭─</text><text class="terminal-3311949748-r4" x="24.4" y="361.6" textLength="1415.2" clip-path="url(#terminal-3311949748-line-14)">&#160;Parallel&#160;options&#160;──────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3311949748-r4" x="1439.6" y="361.6" textLength="24.4" clip-path="url(#termina [...]
-</text><text class="terminal-3311949748-r4" x="0" y="386" textLength="12.2" clip-path="url(#terminal-3311949748-line-15)">│</text><text class="terminal-3311949748-r5" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-3311949748-line-15)">-</text><text class="terminal-3311949748-r5" x="36.6" y="386" textLength="48.8" clip-path="url(#terminal-3311949748-line-15)">-run</text><text class="terminal-3311949748-r5" x="85.4" y="386" textLength="146.4" clip-path="url(#terminal-331194974 [...]
-</text><text class="terminal-3311949748-r4" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-3311949748-line-16)">│</text><text class="terminal-3311949748-r5" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-3311949748-line-16)">-</text><text class="terminal-3311949748-r5" x="36.6" y="410.4" textLength="146.4" clip-path="url(#terminal-3311949748-line-16)">-parallelism</text><text class="terminal-3311949748-r2" x="378.2" y="410.4" textLength="1061.4" clip-path="url( [...]
-</text><text class="terminal-3311949748-r4" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-3311949748-line-17)">│</text><text class="terminal-3311949748-r2" x="378.2" y="434.8" textLength="1061.4" clip-path="url(#terminal-3311949748-line-17)">operations.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
-</text><text class="terminal-3311949748-r4" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-3311949748-line-18)">│</text><text class="terminal-3311949748-r7" x="378.2" y="459.2" textLength="1061.4" clip-path="url(#terminal-3311949748-line-18)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-3311949748-r4" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-3311949748-line-19)">│</text><text class="terminal-3311949748-r4" x="378.2" y="483.6" textLength="1061.4" clip-path="url(#terminal-3311949748-line-19)">[default:&#160;2;&#160;1&lt;=x&lt;=4]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
-</text><text class="terminal-3311949748-r4" x="0" y="508" textLength="12.2" clip-path="url(#terminal-3311949748-line-20)">│</text><text class="terminal-3311949748-r5" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-3311949748-line-20)">-</text><text class="terminal-3311949748-r5" x="36.6" y="508" textLength="85.4" clip-path="url(#terminal-3311949748-line-20)">-python</text><text class="terminal-3311949748-r5" x="122" y="508" textLength="109.8" clip-path="url(#terminal-3311949 [...]
-</text><text class="terminal-3311949748-r4" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-3311949748-line-21)">│</text><text class="terminal-3311949748-r4" x="378.2" y="532.4" textLength="951.6" clip-path="url(#terminal-3311949748-line-21)">[default:&#160;3.7&#160;3.8&#160;3.9&#160;3.10]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-3311949748-r4" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-3311949748-line-22)">│</text><text class="terminal-3311949748-r5" x="24.4" y="556.8" textLength="12.2" clip-path="url(#terminal-3311949748-line-22)">-</text><text class="terminal-3311949748-r5" x="36.6" y="556.8" textLength="134.2" clip-path="url(#terminal-3311949748-line-22)">-kubernetes</text><text class="terminal-3311949748-r5" x="170.8" y="556.8" textLength="109.8" clip-path="url(#t [...]
-</text><text class="terminal-3311949748-r4" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-3311949748-line-23)">│</text><text class="terminal-3311949748-r4" x="378.2" y="581.2" textLength="756.4" clip-path="url(#terminal-3311949748-line-23)">[default:&#160;v1.25.2&#160;v1.24.6&#160;v1.23.12&#160;v1.22.15&#160;v1.21.14]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-3311949748-r4" x="1451.8" y="581.2" textLength="12.2" clip-path="url(#termina [...]
-</text><text class="terminal-3311949748-r4" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-3311949748-line-24)">│</text><text class="terminal-3311949748-r5" x="24.4" y="605.6" textLength="12.2" clip-path="url(#terminal-3311949748-line-24)">-</text><text class="terminal-3311949748-r5" x="36.6" y="605.6" textLength="61" clip-path="url(#terminal-3311949748-line-24)">-skip</text><text class="terminal-3311949748-r5" x="97.6" y="605.6" textLength="97.6" clip-path="url(#terminal-331 [...]
-</text><text class="terminal-3311949748-r4" x="0" y="630" textLength="12.2" clip-path="url(#terminal-3311949748-line-25)">│</text><text class="terminal-3311949748-r5" x="24.4" y="630" textLength="12.2" clip-path="url(#terminal-3311949748-line-25)">-</text><text class="terminal-3311949748-r5" x="36.6" y="630" textLength="73.2" clip-path="url(#terminal-3311949748-line-25)">-debug</text><text class="terminal-3311949748-r5" x="109.8" y="630" textLength="122" clip-path="url(#terminal-33119497 [...]
-</text><text class="terminal-3311949748-r4" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-3311949748-line-26)">│</text><text class="terminal-3311949748-r5" x="24.4" y="654.4" textLength="12.2" clip-path="url(#terminal-3311949748-line-26)">-</text><text class="terminal-3311949748-r5" x="36.6" y="654.4" textLength="97.6" clip-path="url(#terminal-3311949748-line-26)">-include</text><text class="terminal-3311949748-r5" x="134.2" y="654.4" textLength="195.2" clip-path="url(#termi [...]
-</text><text class="terminal-3311949748-r4" x="0" y="678.8" textLength="1464" clip-path="url(#terminal-3311949748-line-27)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3311949748-r2" x="1464" y="678.8" textLength="12.2" clip-path="url(#terminal-3311949748-line-27)">
-</text><text class="terminal-3311949748-r4" x="0" y="703.2" textLength="24.4" clip-path="url(#terminal-3311949748-line-28)">╭─</text><text class="terminal-3311949748-r4" x="24.4" y="703.2" textLength="1415.2" clip-path="url(#terminal-3311949748-line-28)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3311949748-r4" x="1439.6" y="703.2" textLength="24.4" clip-path="url(#termina [...]
-</text><text class="terminal-3311949748-r4" x="0" y="727.6" textLength="12.2" clip-path="url(#terminal-3311949748-line-29)">│</text><text class="terminal-3311949748-r5" x="24.4" y="727.6" textLength="12.2" clip-path="url(#terminal-3311949748-line-29)">-</text><text class="terminal-3311949748-r5" x="36.6" y="727.6" textLength="97.6" clip-path="url(#terminal-3311949748-line-29)">-verbose</text><text class="terminal-3311949748-r6" x="158.6" y="727.6" textLength="24.4" clip-path="url(#termin [...]
-</text><text class="terminal-3311949748-r4" x="0" y="752" textLength="12.2" clip-path="url(#terminal-3311949748-line-30)">│</text><text class="terminal-3311949748-r5" x="24.4" y="752" textLength="12.2" clip-path="url(#terminal-3311949748-line-30)">-</text><text class="terminal-3311949748-r5" x="36.6" y="752" textLength="48.8" clip-path="url(#terminal-3311949748-line-30)">-dry</text><text class="terminal-3311949748-r5" x="85.4" y="752" textLength="48.8" clip-path="url(#terminal-3311949748 [...]
-</text><text class="terminal-3311949748-r4" x="0" y="776.4" textLength="12.2" clip-path="url(#terminal-3311949748-line-31)">│</text><text class="terminal-3311949748-r5" x="24.4" y="776.4" textLength="12.2" clip-path="url(#terminal-3311949748-line-31)">-</text><text class="terminal-3311949748-r5" x="36.6" y="776.4" textLength="61" clip-path="url(#terminal-3311949748-line-31)">-help</text><text class="terminal-3311949748-r6" x="158.6" y="776.4" textLength="24.4" clip-path="url(#terminal-33 [...]
-</text><text class="terminal-3311949748-r4" x="0" y="800.8" textLength="1464" clip-path="url(#terminal-3311949748-line-32)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3311949748-r2" x="1464" y="800.8" textLength="12.2" clip-path="url(#terminal-3311949748-line-32)">
+    <g class="terminal-660625558-matrix">
+    <text class="terminal-660625558-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-660625558-line-0)">
+</text><text class="terminal-660625558-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-660625558-line-1)">Usage:&#160;</text><text class="terminal-660625558-r1" x="97.6" y="44.4" textLength="329.4" clip-path="url(#terminal-660625558-line-1)">breeze&#160;k8s&#160;create-cluster&#160;[</text><text class="terminal-660625558-r4" x="427" y="44.4" textLength="85.4" clip-path="url(#terminal-660625558-line-1)">OPTIONS</text><text class="terminal-660625558-r1" x="512.4" y="44.4"  [...]
+</text><text class="terminal-660625558-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-660625558-line-2)">
+</text><text class="terminal-660625558-r2" x="12.2" y="93.2" textLength="1354.2" clip-path="url(#terminal-660625558-line-3)">Create&#160;a&#160;KinD&#160;Cluster&#160;for&#160;Python&#160;and&#160;Kubernetes&#160;version&#160;specified&#160;(optionally&#160;create&#160;all&#160;clusters&#160;in&#160;parallel).</text><text class="terminal-660625558-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-660625558-line-3)">
+</text><text class="terminal-660625558-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-660625558-line-4)">
+</text><text class="terminal-660625558-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-660625558-line-5)">╭─</text><text class="terminal-660625558-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-660625558-line-5)">&#160;K8S&#160;cluster&#160;creation&#160;flags&#160;────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-660625558-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-6 [...]
+</text><text class="terminal-660625558-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-660625558-line-6)">│</text><text class="terminal-660625558-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-660625558-line-6)">-</text><text class="terminal-660625558-r4" x="36.6" y="166.4" textLength="73.2" clip-path="url(#terminal-660625558-line-6)">-force</text><text class="terminal-660625558-r4" x="109.8" y="166.4" textLength="207.4" clip-path="url(#terminal-66062555 [...]
+</text><text class="terminal-660625558-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-660625558-line-7)">│</text><text class="terminal-660625558-r4" x="24.4" y="190.8" textLength="12.2" clip-path="url(#terminal-660625558-line-7)">-</text><text class="terminal-660625558-r4" x="36.6" y="190.8" textLength="85.4" clip-path="url(#terminal-660625558-line-7)">-python</text><text class="terminal-660625558-r6" x="341.6" y="190.8" textLength="24.4" clip-path="url(#terminal-66062555 [...]
+</text><text class="terminal-660625558-r5" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-660625558-line-8)">│</text><text class="terminal-660625558-r7" x="390.4" y="215.2" textLength="732" clip-path="url(#terminal-660625558-line-8)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10&#160;|&#160;3.11)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</tex [...]
+</text><text class="terminal-660625558-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-660625558-line-9)">│</text><text class="terminal-660625558-r5" x="390.4" y="239.6" textLength="732" clip-path="url(#terminal-660625558-line-9)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-660625558-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-660625558-line-10)">│</text><text class="terminal-660625558-r4" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-660625558-line-10)">-</text><text class="terminal-660625558-r4" x="36.6" y="264" textLength="134.2" clip-path="url(#terminal-660625558-line-10)">-kubernetes</text><text class="terminal-660625558-r4" x="170.8" y="264" textLength="97.6" clip-path="url(#terminal-66062555 [...]
+</text><text class="terminal-660625558-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-660625558-line-11)">│</text><text class="terminal-660625558-r7" x="390.4" y="288.4" textLength="658.8" clip-path="url(#terminal-660625558-line-11)">(&gt;v1.25.2&lt;&#160;|&#160;v1.24.6&#160;|&#160;v1.23.12&#160;|&#160;v1.22.15&#160;|&#160;v1.21.14)</text><text class="terminal-660625558-r5" x="1451.8" y="288.4" textLength="12.2" clip-path="url(#terminal-660625558-line-11)">│</text><text c [...]
+</text><text class="terminal-660625558-r5" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-660625558-line-12)">│</text><text class="terminal-660625558-r5" x="390.4" y="312.8" textLength="658.8" clip-path="url(#terminal-660625558-line-12)">[default:&#160;v1.25.2]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</t [...]
+</text><text class="terminal-660625558-r5" x="0" y="337.2" textLength="1464" clip-path="url(#terminal-660625558-line-13)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-660625558-r2" x="1464" y="337.2" textLength="12.2" clip-path="url(#terminal-660625558-line-13)">
+</text><text class="terminal-660625558-r5" x="0" y="361.6" textLength="24.4" clip-path="url(#terminal-660625558-line-14)">╭─</text><text class="terminal-660625558-r5" x="24.4" y="361.6" textLength="1415.2" clip-path="url(#terminal-660625558-line-14)">&#160;Parallel&#160;options&#160;──────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-660625558-r5" x="1439.6" y="361.6" textLength="24.4" clip-path="url(#terminal-660 [...]
+</text><text class="terminal-660625558-r5" x="0" y="386" textLength="12.2" clip-path="url(#terminal-660625558-line-15)">│</text><text class="terminal-660625558-r4" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-660625558-line-15)">-</text><text class="terminal-660625558-r4" x="36.6" y="386" textLength="48.8" clip-path="url(#terminal-660625558-line-15)">-run</text><text class="terminal-660625558-r4" x="85.4" y="386" textLength="146.4" clip-path="url(#terminal-660625558-line-1 [...]
+</text><text class="terminal-660625558-r5" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-660625558-line-16)">│</text><text class="terminal-660625558-r4" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-660625558-line-16)">-</text><text class="terminal-660625558-r4" x="36.6" y="410.4" textLength="146.4" clip-path="url(#terminal-660625558-line-16)">-parallelism</text><text class="terminal-660625558-r2" x="378.2" y="410.4" textLength="1061.4" clip-path="url(#termin [...]
+</text><text class="terminal-660625558-r5" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-660625558-line-17)">│</text><text class="terminal-660625558-r2" x="378.2" y="434.8" textLength="1061.4" clip-path="url(#terminal-660625558-line-17)">operations.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
+</text><text class="terminal-660625558-r5" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-660625558-line-18)">│</text><text class="terminal-660625558-r7" x="378.2" y="459.2" textLength="1061.4" clip-path="url(#terminal-660625558-line-18)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-660625558-r5" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-660625558-line-19)">│</text><text class="terminal-660625558-r5" x="378.2" y="483.6" textLength="1061.4" clip-path="url(#terminal-660625558-line-19)">[default:&#160;2;&#160;1&lt;=x&lt;=4]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
+</text><text class="terminal-660625558-r5" x="0" y="508" textLength="12.2" clip-path="url(#terminal-660625558-line-20)">│</text><text class="terminal-660625558-r4" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-660625558-line-20)">-</text><text class="terminal-660625558-r4" x="36.6" y="508" textLength="85.4" clip-path="url(#terminal-660625558-line-20)">-python</text><text class="terminal-660625558-r4" x="122" y="508" textLength="109.8" clip-path="url(#terminal-660625558-line [...]
+</text><text class="terminal-660625558-r5" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-660625558-line-21)">│</text><text class="terminal-660625558-r5" x="378.2" y="532.4" textLength="951.6" clip-path="url(#terminal-660625558-line-21)">[default:&#160;3.7&#160;3.8&#160;3.9&#160;3.10&#160;3.11]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-660625558-r5" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-660625558-line-22)">│</text><text class="terminal-660625558-r4" x="24.4" y="556.8" textLength="12.2" clip-path="url(#terminal-660625558-line-22)">-</text><text class="terminal-660625558-r4" x="36.6" y="556.8" textLength="134.2" clip-path="url(#terminal-660625558-line-22)">-kubernetes</text><text class="terminal-660625558-r4" x="170.8" y="556.8" textLength="109.8" clip-path="url(#terminal [...]
+</text><text class="terminal-660625558-r5" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-660625558-line-23)">│</text><text class="terminal-660625558-r5" x="378.2" y="581.2" textLength="756.4" clip-path="url(#terminal-660625558-line-23)">[default:&#160;v1.25.2&#160;v1.24.6&#160;v1.23.12&#160;v1.22.15&#160;v1.21.14]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-660625558-r5" x="1451.8" y="581.2" textLength="12.2" clip-path="url(#terminal-660 [...]
+</text><text class="terminal-660625558-r5" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-660625558-line-24)">│</text><text class="terminal-660625558-r4" x="24.4" y="605.6" textLength="12.2" clip-path="url(#terminal-660625558-line-24)">-</text><text class="terminal-660625558-r4" x="36.6" y="605.6" textLength="61" clip-path="url(#terminal-660625558-line-24)">-skip</text><text class="terminal-660625558-r4" x="97.6" y="605.6" textLength="97.6" clip-path="url(#terminal-660625558- [...]
+</text><text class="terminal-660625558-r5" x="0" y="630" textLength="12.2" clip-path="url(#terminal-660625558-line-25)">│</text><text class="terminal-660625558-r4" x="24.4" y="630" textLength="12.2" clip-path="url(#terminal-660625558-line-25)">-</text><text class="terminal-660625558-r4" x="36.6" y="630" textLength="73.2" clip-path="url(#terminal-660625558-line-25)">-debug</text><text class="terminal-660625558-r4" x="109.8" y="630" textLength="122" clip-path="url(#terminal-660625558-line- [...]
+</text><text class="terminal-660625558-r5" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-660625558-line-26)">│</text><text class="terminal-660625558-r4" x="24.4" y="654.4" textLength="12.2" clip-path="url(#terminal-660625558-line-26)">-</text><text class="terminal-660625558-r4" x="36.6" y="654.4" textLength="97.6" clip-path="url(#terminal-660625558-line-26)">-include</text><text class="terminal-660625558-r4" x="134.2" y="654.4" textLength="195.2" clip-path="url(#terminal-660 [...]
+</text><text class="terminal-660625558-r5" x="0" y="678.8" textLength="1464" clip-path="url(#terminal-660625558-line-27)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-660625558-r2" x="1464" y="678.8" textLength="12.2" clip-path="url(#terminal-660625558-line-27)">
+</text><text class="terminal-660625558-r5" x="0" y="703.2" textLength="24.4" clip-path="url(#terminal-660625558-line-28)">╭─</text><text class="terminal-660625558-r5" x="24.4" y="703.2" textLength="1415.2" clip-path="url(#terminal-660625558-line-28)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-660625558-r5" x="1439.6" y="703.2" textLength="24.4" clip-path="url(#terminal-660 [...]
+</text><text class="terminal-660625558-r5" x="0" y="727.6" textLength="12.2" clip-path="url(#terminal-660625558-line-29)">│</text><text class="terminal-660625558-r4" x="24.4" y="727.6" textLength="12.2" clip-path="url(#terminal-660625558-line-29)">-</text><text class="terminal-660625558-r4" x="36.6" y="727.6" textLength="97.6" clip-path="url(#terminal-660625558-line-29)">-verbose</text><text class="terminal-660625558-r6" x="158.6" y="727.6" textLength="24.4" clip-path="url(#terminal-6606 [...]
+</text><text class="terminal-660625558-r5" x="0" y="752" textLength="12.2" clip-path="url(#terminal-660625558-line-30)">│</text><text class="terminal-660625558-r4" x="24.4" y="752" textLength="12.2" clip-path="url(#terminal-660625558-line-30)">-</text><text class="terminal-660625558-r4" x="36.6" y="752" textLength="48.8" clip-path="url(#terminal-660625558-line-30)">-dry</text><text class="terminal-660625558-r4" x="85.4" y="752" textLength="48.8" clip-path="url(#terminal-660625558-line-30 [...]
+</text><text class="terminal-660625558-r5" x="0" y="776.4" textLength="12.2" clip-path="url(#terminal-660625558-line-31)">│</text><text class="terminal-660625558-r4" x="24.4" y="776.4" textLength="12.2" clip-path="url(#terminal-660625558-line-31)">-</text><text class="terminal-660625558-r4" x="36.6" y="776.4" textLength="61" clip-path="url(#terminal-660625558-line-31)">-help</text><text class="terminal-660625558-r6" x="158.6" y="776.4" textLength="24.4" clip-path="url(#terminal-660625558 [...]
+</text><text class="terminal-660625558-r5" x="0" y="800.8" textLength="1464" clip-path="url(#terminal-660625558-line-32)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-660625558-r2" x="1464" y="800.8" textLength="12.2" clip-path="url(#terminal-660625558-line-32)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_k8s_delete-cluster.svg b/images/breeze/output_k8s_delete-cluster.svg
index aa0ddab2db..9225509e06 100644
--- a/images/breeze/output_k8s_delete-cluster.svg
+++ b/images/breeze/output_k8s_delete-cluster.svg
@@ -1,4 +1,4 @@
-<svg class="rich-terminal" viewBox="0 0 1482 538.0" xmlns="http://www.w3.org/2000/svg">
+<svg class="rich-terminal" viewBox="0 0 1482 562.4" xmlns="http://www.w3.org/2000/svg">
     <!-- Generated with Rich https://www.textualize.io -->
     <style>
 
@@ -19,121 +19,125 @@
         font-weight: 700;
     }
 
-    .terminal-4127297943-matrix {
+    .terminal-2115347696-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-4127297943-title {
+    .terminal-2115347696-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-4127297943-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-4127297943-r2 { fill: #c5c8c6 }
-.terminal-4127297943-r3 { fill: #d0b344;font-weight: bold }
-.terminal-4127297943-r4 { fill: #868887 }
-.terminal-4127297943-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-4127297943-r6 { fill: #98a84b;font-weight: bold }
-.terminal-4127297943-r7 { fill: #8d7b39 }
+    .terminal-2115347696-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-2115347696-r2 { fill: #c5c8c6 }
+.terminal-2115347696-r3 { fill: #d0b344;font-weight: bold }
+.terminal-2115347696-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-2115347696-r5 { fill: #868887 }
+.terminal-2115347696-r6 { fill: #98a84b;font-weight: bold }
+.terminal-2115347696-r7 { fill: #8d7b39 }
     </style>
 
     <defs>
-    <clipPath id="terminal-4127297943-clip-terminal">
-      <rect x="0" y="0" width="1463.0" height="487.0" />
+    <clipPath id="terminal-2115347696-clip-terminal">
+      <rect x="0" y="0" width="1463.0" height="511.4" />
     </clipPath>
-    <clipPath id="terminal-4127297943-line-0">
+    <clipPath id="terminal-2115347696-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4127297943-line-1">
+<clipPath id="terminal-2115347696-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4127297943-line-2">
+<clipPath id="terminal-2115347696-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4127297943-line-3">
+<clipPath id="terminal-2115347696-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4127297943-line-4">
+<clipPath id="terminal-2115347696-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4127297943-line-5">
+<clipPath id="terminal-2115347696-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4127297943-line-6">
+<clipPath id="terminal-2115347696-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4127297943-line-7">
+<clipPath id="terminal-2115347696-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4127297943-line-8">
+<clipPath id="terminal-2115347696-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4127297943-line-9">
+<clipPath id="terminal-2115347696-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4127297943-line-10">
+<clipPath id="terminal-2115347696-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4127297943-line-11">
+<clipPath id="terminal-2115347696-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4127297943-line-12">
+<clipPath id="terminal-2115347696-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4127297943-line-13">
+<clipPath id="terminal-2115347696-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4127297943-line-14">
+<clipPath id="terminal-2115347696-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4127297943-line-15">
+<clipPath id="terminal-2115347696-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4127297943-line-16">
+<clipPath id="terminal-2115347696-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4127297943-line-17">
+<clipPath id="terminal-2115347696-line-17">
     <rect x="0" y="416.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4127297943-line-18">
+<clipPath id="terminal-2115347696-line-18">
     <rect x="0" y="440.7" width="1464" height="24.65"/>
             </clipPath>
+<clipPath id="terminal-2115347696-line-19">
+    <rect x="0" y="465.1" width="1464" height="24.65"/>
+            </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="536" rx="8"/><text class="terminal-4127297943-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;k8s&#160;delete-cluster</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="560.4" rx="8"/><text class="terminal-2115347696-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;k8s&#160;delete-cluster</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-4127297943-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-2115347696-clip-terminal)">
     
-    <g class="terminal-4127297943-matrix">
-    <text class="terminal-4127297943-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-4127297943-line-0)">
-</text><text class="terminal-4127297943-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-4127297943-line-1)">Usage:&#160;</text><text class="terminal-4127297943-r1" x="97.6" y="44.4" textLength="427" clip-path="url(#terminal-4127297943-line-1)">breeze&#160;k8s&#160;delete-cluster&#160;[OPTIONS]</text><text class="terminal-4127297943-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-4127297943-line-1)">
-</text><text class="terminal-4127297943-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-4127297943-line-2)">
-</text><text class="terminal-4127297943-r2" x="12.2" y="93.2" textLength="707.6" clip-path="url(#terminal-4127297943-line-3)">Delete&#160;the&#160;current&#160;KinD&#160;Cluster&#160;(optionally&#160;all&#160;clusters).</text><text class="terminal-4127297943-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-4127297943-line-3)">
-</text><text class="terminal-4127297943-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-4127297943-line-4)">
-</text><text class="terminal-4127297943-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-4127297943-line-5)">╭─</text><text class="terminal-4127297943-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-4127297943-line-5)">&#160;K8S&#160;cluster&#160;delete&#160;flags&#160;──────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-4127297943-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#termi [...]
-</text><text class="terminal-4127297943-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-4127297943-line-6)">│</text><text class="terminal-4127297943-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-4127297943-line-6)">-</text><text class="terminal-4127297943-r5" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-4127297943-line-6)">-python</text><text class="terminal-4127297943-r6" x="292.8" y="166.4" textLength="24.4" clip-path="url(#terminal-4 [...]
-</text><text class="terminal-4127297943-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-4127297943-line-7)">│</text><text class="terminal-4127297943-r4" x="341.6" y="190.8" textLength="732" clip-path="url(#terminal-4127297943-line-7)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-4127297943-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-4127297943-line-8)">│</text><text class="terminal-4127297943-r5" x="24.4" y="215.2" textLength="12.2" clip-path="url(#terminal-4127297943-line-8)">-</text><text class="terminal-4127297943-r5" x="36.6" y="215.2" textLength="134.2" clip-path="url(#terminal-4127297943-line-8)">-kubernetes</text><text class="terminal-4127297943-r5" x="170.8" y="215.2" textLength="97.6" clip-path="url(#termi [...]
-</text><text class="terminal-4127297943-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-4127297943-line-9)">│</text><text class="terminal-4127297943-r7" x="341.6" y="239.6" textLength="658.8" clip-path="url(#terminal-4127297943-line-9)">(&gt;v1.25.2&lt;&#160;|&#160;v1.24.6&#160;|&#160;v1.23.12&#160;|&#160;v1.22.15&#160;|&#160;v1.21.14)</text><text class="terminal-4127297943-r4" x="1451.8" y="239.6" textLength="12.2" clip-path="url(#terminal-4127297943-line-9)">│</text><tex [...]
-</text><text class="terminal-4127297943-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-4127297943-line-10)">│</text><text class="terminal-4127297943-r4" x="341.6" y="264" textLength="658.8" clip-path="url(#terminal-4127297943-line-10)">[default:&#160;v1.25.2]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</t [...]
-</text><text class="terminal-4127297943-r4" x="0" y="288.4" textLength="1464" clip-path="url(#terminal-4127297943-line-11)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-4127297943-r2" x="1464" y="288.4" textLength="12.2" clip-path="url(#terminal-4127297943-line-11)">
-</text><text class="terminal-4127297943-r4" x="0" y="312.8" textLength="24.4" clip-path="url(#terminal-4127297943-line-12)">╭─</text><text class="terminal-4127297943-r4" x="24.4" y="312.8" textLength="1415.2" clip-path="url(#terminal-4127297943-line-12)">&#160;K8S&#160;multi-cluster&#160;flags&#160;───────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-4127297943-r4" x="1439.6" y="312.8" textLength="24.4" clip-path="url(#te [...]
-</text><text class="terminal-4127297943-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-4127297943-line-13)">│</text><text class="terminal-4127297943-r5" x="24.4" y="337.2" textLength="12.2" clip-path="url(#terminal-4127297943-line-13)">-</text><text class="terminal-4127297943-r5" x="36.6" y="337.2" textLength="48.8" clip-path="url(#terminal-4127297943-line-13)">-all</text><text class="terminal-4127297943-r2" x="134.2" y="337.2" textLength="390.4" clip-path="url(#terminal- [...]
-</text><text class="terminal-4127297943-r4" x="0" y="361.6" textLength="1464" clip-path="url(#terminal-4127297943-line-14)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-4127297943-r2" x="1464" y="361.6" textLength="12.2" clip-path="url(#terminal-4127297943-line-14)">
-</text><text class="terminal-4127297943-r4" x="0" y="386" textLength="24.4" clip-path="url(#terminal-4127297943-line-15)">╭─</text><text class="terminal-4127297943-r4" x="24.4" y="386" textLength="1415.2" clip-path="url(#terminal-4127297943-line-15)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-4127297943-r4" x="1439.6" y="386" textLength="24.4" clip-path="url(#terminal-4127 [...]
-</text><text class="terminal-4127297943-r4" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-4127297943-line-16)">│</text><text class="terminal-4127297943-r5" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-4127297943-line-16)">-</text><text class="terminal-4127297943-r5" x="36.6" y="410.4" textLength="97.6" clip-path="url(#terminal-4127297943-line-16)">-verbose</text><text class="terminal-4127297943-r6" x="158.6" y="410.4" textLength="24.4" clip-path="url(#termin [...]
-</text><text class="terminal-4127297943-r4" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-4127297943-line-17)">│</text><text class="terminal-4127297943-r5" x="24.4" y="434.8" textLength="12.2" clip-path="url(#terminal-4127297943-line-17)">-</text><text class="terminal-4127297943-r5" x="36.6" y="434.8" textLength="48.8" clip-path="url(#terminal-4127297943-line-17)">-dry</text><text class="terminal-4127297943-r5" x="85.4" y="434.8" textLength="48.8" clip-path="url(#terminal-41 [...]
-</text><text class="terminal-4127297943-r4" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-4127297943-line-18)">│</text><text class="terminal-4127297943-r5" x="24.4" y="459.2" textLength="12.2" clip-path="url(#terminal-4127297943-line-18)">-</text><text class="terminal-4127297943-r5" x="36.6" y="459.2" textLength="61" clip-path="url(#terminal-4127297943-line-18)">-help</text><text class="terminal-4127297943-r6" x="158.6" y="459.2" textLength="24.4" clip-path="url(#terminal-41 [...]
-</text><text class="terminal-4127297943-r4" x="0" y="483.6" textLength="1464" clip-path="url(#terminal-4127297943-line-19)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-4127297943-r2" x="1464" y="483.6" textLength="12.2" clip-path="url(#terminal-4127297943-line-19)">
+    <g class="terminal-2115347696-matrix">
+    <text class="terminal-2115347696-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-2115347696-line-0)">
+</text><text class="terminal-2115347696-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-2115347696-line-1)">Usage:&#160;</text><text class="terminal-2115347696-r1" x="97.6" y="44.4" textLength="329.4" clip-path="url(#terminal-2115347696-line-1)">breeze&#160;k8s&#160;delete-cluster&#160;[</text><text class="terminal-2115347696-r4" x="427" y="44.4" textLength="85.4" clip-path="url(#terminal-2115347696-line-1)">OPTIONS</text><text class="terminal-2115347696-r1" x="512.4" y= [...]
+</text><text class="terminal-2115347696-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-2115347696-line-2)">
+</text><text class="terminal-2115347696-r2" x="12.2" y="93.2" textLength="707.6" clip-path="url(#terminal-2115347696-line-3)">Delete&#160;the&#160;current&#160;KinD&#160;Cluster&#160;(optionally&#160;all&#160;clusters).</text><text class="terminal-2115347696-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-2115347696-line-3)">
+</text><text class="terminal-2115347696-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-2115347696-line-4)">
+</text><text class="terminal-2115347696-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-2115347696-line-5)">╭─</text><text class="terminal-2115347696-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-2115347696-line-5)">&#160;K8S&#160;cluster&#160;delete&#160;flags&#160;──────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2115347696-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#termi [...]
+</text><text class="terminal-2115347696-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-2115347696-line-6)">│</text><text class="terminal-2115347696-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-2115347696-line-6)">-</text><text class="terminal-2115347696-r4" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-2115347696-line-6)">-python</text><text class="terminal-2115347696-r6" x="292.8" y="166.4" textLength="24.4" clip-path="url(#terminal-2 [...]
+</text><text class="terminal-2115347696-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-2115347696-line-7)">│</text><text class="terminal-2115347696-r7" x="341.6" y="190.8" textLength="732" clip-path="url(#terminal-2115347696-line-7)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10&#160;|&#160;3.11)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;< [...]
+</text><text class="terminal-2115347696-r5" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-2115347696-line-8)">│</text><text class="terminal-2115347696-r5" x="341.6" y="215.2" textLength="732" clip-path="url(#terminal-2115347696-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-2115347696-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-2115347696-line-9)">│</text><text class="terminal-2115347696-r4" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-2115347696-line-9)">-</text><text class="terminal-2115347696-r4" x="36.6" y="239.6" textLength="134.2" clip-path="url(#terminal-2115347696-line-9)">-kubernetes</text><text class="terminal-2115347696-r4" x="170.8" y="239.6" textLength="97.6" clip-path="url(#termi [...]
+</text><text class="terminal-2115347696-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-2115347696-line-10)">│</text><text class="terminal-2115347696-r7" x="341.6" y="264" textLength="658.8" clip-path="url(#terminal-2115347696-line-10)">(&gt;v1.25.2&lt;&#160;|&#160;v1.24.6&#160;|&#160;v1.23.12&#160;|&#160;v1.22.15&#160;|&#160;v1.21.14)</text><text class="terminal-2115347696-r5" x="1451.8" y="264" textLength="12.2" clip-path="url(#terminal-2115347696-line-10)">│</text><text c [...]
+</text><text class="terminal-2115347696-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-2115347696-line-11)">│</text><text class="terminal-2115347696-r5" x="341.6" y="288.4" textLength="658.8" clip-path="url(#terminal-2115347696-line-11)">[default:&#160;v1.25.2]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-2115347696-r5" x="0" y="312.8" textLength="1464" clip-path="url(#terminal-2115347696-line-12)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2115347696-r2" x="1464" y="312.8" textLength="12.2" clip-path="url(#terminal-2115347696-line-12)">
+</text><text class="terminal-2115347696-r5" x="0" y="337.2" textLength="24.4" clip-path="url(#terminal-2115347696-line-13)">╭─</text><text class="terminal-2115347696-r5" x="24.4" y="337.2" textLength="1415.2" clip-path="url(#terminal-2115347696-line-13)">&#160;K8S&#160;multi-cluster&#160;flags&#160;───────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2115347696-r5" x="1439.6" y="337.2" textLength="24.4" clip-path="url(#te [...]
+</text><text class="terminal-2115347696-r5" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-2115347696-line-14)">│</text><text class="terminal-2115347696-r4" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-2115347696-line-14)">-</text><text class="terminal-2115347696-r4" x="36.6" y="361.6" textLength="48.8" clip-path="url(#terminal-2115347696-line-14)">-all</text><text class="terminal-2115347696-r2" x="134.2" y="361.6" textLength="390.4" clip-path="url(#terminal- [...]
+</text><text class="terminal-2115347696-r5" x="0" y="386" textLength="1464" clip-path="url(#terminal-2115347696-line-15)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2115347696-r2" x="1464" y="386" textLength="12.2" clip-path="url(#terminal-2115347696-line-15)">
+</text><text class="terminal-2115347696-r5" x="0" y="410.4" textLength="24.4" clip-path="url(#terminal-2115347696-line-16)">╭─</text><text class="terminal-2115347696-r5" x="24.4" y="410.4" textLength="1415.2" clip-path="url(#terminal-2115347696-line-16)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2115347696-r5" x="1439.6" y="410.4" textLength="24.4" clip-path="url(#termina [...]
+</text><text class="terminal-2115347696-r5" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-2115347696-line-17)">│</text><text class="terminal-2115347696-r4" x="24.4" y="434.8" textLength="12.2" clip-path="url(#terminal-2115347696-line-17)">-</text><text class="terminal-2115347696-r4" x="36.6" y="434.8" textLength="97.6" clip-path="url(#terminal-2115347696-line-17)">-verbose</text><text class="terminal-2115347696-r6" x="158.6" y="434.8" textLength="24.4" clip-path="url(#termin [...]
+</text><text class="terminal-2115347696-r5" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-2115347696-line-18)">│</text><text class="terminal-2115347696-r4" x="24.4" y="459.2" textLength="12.2" clip-path="url(#terminal-2115347696-line-18)">-</text><text class="terminal-2115347696-r4" x="36.6" y="459.2" textLength="48.8" clip-path="url(#terminal-2115347696-line-18)">-dry</text><text class="terminal-2115347696-r4" x="85.4" y="459.2" textLength="48.8" clip-path="url(#terminal-21 [...]
+</text><text class="terminal-2115347696-r5" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-2115347696-line-19)">│</text><text class="terminal-2115347696-r4" x="24.4" y="483.6" textLength="12.2" clip-path="url(#terminal-2115347696-line-19)">-</text><text class="terminal-2115347696-r4" x="36.6" y="483.6" textLength="61" clip-path="url(#terminal-2115347696-line-19)">-help</text><text class="terminal-2115347696-r6" x="158.6" y="483.6" textLength="24.4" clip-path="url(#terminal-21 [...]
+</text><text class="terminal-2115347696-r5" x="0" y="508" textLength="1464" clip-path="url(#terminal-2115347696-line-20)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2115347696-r2" x="1464" y="508" textLength="12.2" clip-path="url(#terminal-2115347696-line-20)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_k8s_deploy-airflow.svg b/images/breeze/output_k8s_deploy-airflow.svg
index 5ba02f94a4..851576e7c4 100644
--- a/images/breeze/output_k8s_deploy-airflow.svg
+++ b/images/breeze/output_k8s_deploy-airflow.svg
@@ -1,4 +1,4 @@
-<svg class="rich-terminal" viewBox="0 0 1482 928.4" xmlns="http://www.w3.org/2000/svg">
+<svg class="rich-terminal" viewBox="0 0 1482 952.8" xmlns="http://www.w3.org/2000/svg">
     <!-- Generated with Rich https://www.textualize.io -->
     <style>
 
@@ -19,185 +19,189 @@
         font-weight: 700;
     }
 
-    .terminal-1154206015-matrix {
+    .terminal-24763611-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-1154206015-title {
+    .terminal-24763611-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-1154206015-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-1154206015-r2 { fill: #c5c8c6 }
-.terminal-1154206015-r3 { fill: #d0b344;font-weight: bold }
-.terminal-1154206015-r4 { fill: #868887 }
-.terminal-1154206015-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-1154206015-r6 { fill: #98a84b;font-weight: bold }
-.terminal-1154206015-r7 { fill: #8d7b39 }
+    .terminal-24763611-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-24763611-r2 { fill: #c5c8c6 }
+.terminal-24763611-r3 { fill: #d0b344;font-weight: bold }
+.terminal-24763611-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-24763611-r5 { fill: #868887 }
+.terminal-24763611-r6 { fill: #98a84b;font-weight: bold }
+.terminal-24763611-r7 { fill: #8d7b39 }
     </style>
 
     <defs>
-    <clipPath id="terminal-1154206015-clip-terminal">
-      <rect x="0" y="0" width="1463.0" height="877.4" />
+    <clipPath id="terminal-24763611-clip-terminal">
+      <rect x="0" y="0" width="1463.0" height="901.8" />
     </clipPath>
-    <clipPath id="terminal-1154206015-line-0">
+    <clipPath id="terminal-24763611-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-1">
+<clipPath id="terminal-24763611-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-2">
+<clipPath id="terminal-24763611-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-3">
+<clipPath id="terminal-24763611-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-4">
+<clipPath id="terminal-24763611-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-5">
+<clipPath id="terminal-24763611-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-6">
+<clipPath id="terminal-24763611-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-7">
+<clipPath id="terminal-24763611-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-8">
+<clipPath id="terminal-24763611-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-9">
+<clipPath id="terminal-24763611-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-10">
+<clipPath id="terminal-24763611-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-11">
+<clipPath id="terminal-24763611-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-12">
+<clipPath id="terminal-24763611-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-13">
+<clipPath id="terminal-24763611-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-14">
+<clipPath id="terminal-24763611-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-15">
+<clipPath id="terminal-24763611-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-16">
+<clipPath id="terminal-24763611-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-17">
+<clipPath id="terminal-24763611-line-17">
     <rect x="0" y="416.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-18">
+<clipPath id="terminal-24763611-line-18">
     <rect x="0" y="440.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-19">
+<clipPath id="terminal-24763611-line-19">
     <rect x="0" y="465.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-20">
+<clipPath id="terminal-24763611-line-20">
     <rect x="0" y="489.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-21">
+<clipPath id="terminal-24763611-line-21">
     <rect x="0" y="513.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-22">
+<clipPath id="terminal-24763611-line-22">
     <rect x="0" y="538.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-23">
+<clipPath id="terminal-24763611-line-23">
     <rect x="0" y="562.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-24">
+<clipPath id="terminal-24763611-line-24">
     <rect x="0" y="587.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-25">
+<clipPath id="terminal-24763611-line-25">
     <rect x="0" y="611.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-26">
+<clipPath id="terminal-24763611-line-26">
     <rect x="0" y="635.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-27">
+<clipPath id="terminal-24763611-line-27">
     <rect x="0" y="660.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-28">
+<clipPath id="terminal-24763611-line-28">
     <rect x="0" y="684.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-29">
+<clipPath id="terminal-24763611-line-29">
     <rect x="0" y="709.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-30">
+<clipPath id="terminal-24763611-line-30">
     <rect x="0" y="733.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-31">
+<clipPath id="terminal-24763611-line-31">
     <rect x="0" y="757.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-32">
+<clipPath id="terminal-24763611-line-32">
     <rect x="0" y="782.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-33">
+<clipPath id="terminal-24763611-line-33">
     <rect x="0" y="806.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1154206015-line-34">
+<clipPath id="terminal-24763611-line-34">
     <rect x="0" y="831.1" width="1464" height="24.65"/>
             </clipPath>
+<clipPath id="terminal-24763611-line-35">
+    <rect x="0" y="855.5" width="1464" height="24.65"/>
+            </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="926.4" rx="8"/><text class="terminal-1154206015-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;k8s&#160;deploy-airflow</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="950.8" rx="8"/><text class="terminal-24763611-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;k8s&#160;deploy-airflow</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-1154206015-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-24763611-clip-terminal)">
     
-    <g class="terminal-1154206015-matrix">
-    <text class="terminal-1154206015-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-1154206015-line-0)">
-</text><text class="terminal-1154206015-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-1154206015-line-1)">Usage:&#160;</text><text class="terminal-1154206015-r1" x="97.6" y="44.4" textLength="658.8" clip-path="url(#terminal-1154206015-line-1)">breeze&#160;k8s&#160;deploy-airflow&#160;[OPTIONS]&#160;[EXTRA_OPTIONS]...</text><text class="terminal-1154206015-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-1154206015-line-1)">
-</text><text class="terminal-1154206015-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-1154206015-line-2)">
-</text><text class="terminal-1154206015-r2" x="12.2" y="93.2" textLength="817.4" clip-path="url(#terminal-1154206015-line-3)">Deploy&#160;airflow&#160;image&#160;to&#160;the&#160;current&#160;KinD&#160;cluster&#160;(or&#160;all&#160;clusters).</text><text class="terminal-1154206015-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-1154206015-line-3)">
-</text><text class="terminal-1154206015-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-1154206015-line-4)">
-</text><text class="terminal-1154206015-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-1154206015-line-5)">╭─</text><text class="terminal-1154206015-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-1154206015-line-5)">&#160;Airflow&#160;deploy&#160;flags&#160;──────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1154206015-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-1 [...]
-</text><text class="terminal-1154206015-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-1154206015-line-6)">│</text><text class="terminal-1154206015-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-1154206015-line-6)">-</text><text class="terminal-1154206015-r5" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-1154206015-line-6)">-python</text><text class="terminal-1154206015-r6" x="317.2" y="166.4" textLength="24.4" clip-path="url(#terminal-1 [...]
-</text><text class="terminal-1154206015-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-1154206015-line-7)">│</text><text class="terminal-1154206015-r4" x="366" y="190.8" textLength="732" clip-path="url(#terminal-1154206015-line-7)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
-</text><text class="terminal-1154206015-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-1154206015-line-8)">│</text><text class="terminal-1154206015-r5" x="24.4" y="215.2" textLength="12.2" clip-path="url(#terminal-1154206015-line-8)">-</text><text class="terminal-1154206015-r5" x="36.6" y="215.2" textLength="134.2" clip-path="url(#terminal-1154206015-line-8)">-kubernetes</text><text class="terminal-1154206015-r5" x="170.8" y="215.2" textLength="97.6" clip-path="url(#termi [...]
-</text><text class="terminal-1154206015-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-1154206015-line-9)">│</text><text class="terminal-1154206015-r7" x="366" y="239.6" textLength="658.8" clip-path="url(#terminal-1154206015-line-9)">(&gt;v1.25.2&lt;&#160;|&#160;v1.24.6&#160;|&#160;v1.23.12&#160;|&#160;v1.22.15&#160;|&#160;v1.21.14)</text><text class="terminal-1154206015-r4" x="1451.8" y="239.6" textLength="12.2" clip-path="url(#terminal-1154206015-line-9)">│</text><text  [...]
-</text><text class="terminal-1154206015-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-1154206015-line-10)">│</text><text class="terminal-1154206015-r4" x="366" y="264" textLength="658.8" clip-path="url(#terminal-1154206015-line-10)">[default:&#160;v1.25.2]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</tex [...]
-</text><text class="terminal-1154206015-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-1154206015-line-11)">│</text><text class="terminal-1154206015-r5" x="24.4" y="288.4" textLength="12.2" clip-path="url(#terminal-1154206015-line-11)">-</text><text class="terminal-1154206015-r5" x="36.6" y="288.4" textLength="109.8" clip-path="url(#terminal-1154206015-line-11)">-executor</text><text class="terminal-1154206015-r2" x="366" y="288.4" textLength="1000.4" clip-path="url(#term [...]
-</text><text class="terminal-1154206015-r4" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-1154206015-line-12)">│</text><text class="terminal-1154206015-r7" x="366" y="312.8" textLength="1000.4" clip-path="url(#terminal-1154206015-line-12)">(&gt;KubernetesExecutor&lt;&#160;|&#160;CeleryExecutor&#160;|&#160;LocalExecutor&#160;|&#160;CeleryKubernetesExecutor)</text><text class="terminal-1154206015-r4" x="1451.8" y="312.8" textLength="12.2" clip-path="url(#terminal-1154206015-li [...]
-</text><text class="terminal-1154206015-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-1154206015-line-13)">│</text><text class="terminal-1154206015-r4" x="366" y="337.2" textLength="1000.4" clip-path="url(#terminal-1154206015-line-13)">[default:&#160;KubernetesExecutor]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-1154206015-r4" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-1154206015-line-14)">│</text><text class="terminal-1154206015-r5" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-1154206015-line-14)">-</text><text class="terminal-1154206015-r5" x="36.6" y="361.6" textLength="97.6" clip-path="url(#terminal-1154206015-line-14)">-upgrade</text><text class="terminal-1154206015-r2" x="366" y="361.6" textLength="549" clip-path="url(#terminal- [...]
-</text><text class="terminal-1154206015-r4" x="0" y="386" textLength="12.2" clip-path="url(#terminal-1154206015-line-15)">│</text><text class="terminal-1154206015-r5" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-1154206015-line-15)">-</text><text class="terminal-1154206015-r5" x="36.6" y="386" textLength="61" clip-path="url(#terminal-1154206015-line-15)">-wait</text><text class="terminal-1154206015-r5" x="97.6" y="386" textLength="195.2" clip-path="url(#terminal-1154206015 [...]
-</text><text class="terminal-1154206015-r4" x="0" y="410.4" textLength="1464" clip-path="url(#terminal-1154206015-line-16)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1154206015-r2" x="1464" y="410.4" textLength="12.2" clip-path="url(#terminal-1154206015-line-16)">
-</text><text class="terminal-1154206015-r4" x="0" y="434.8" textLength="24.4" clip-path="url(#terminal-1154206015-line-17)">╭─</text><text class="terminal-1154206015-r4" x="24.4" y="434.8" textLength="1415.2" clip-path="url(#terminal-1154206015-line-17)">&#160;Parallel&#160;options&#160;──────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1154206015-r4" x="1439.6" y="434.8" textLength="24.4" clip-path="url(#termina [...]
-</text><text class="terminal-1154206015-r4" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-1154206015-line-18)">│</text><text class="terminal-1154206015-r5" x="24.4" y="459.2" textLength="12.2" clip-path="url(#terminal-1154206015-line-18)">-</text><text class="terminal-1154206015-r5" x="36.6" y="459.2" textLength="48.8" clip-path="url(#terminal-1154206015-line-18)">-run</text><text class="terminal-1154206015-r5" x="85.4" y="459.2" textLength="146.4" clip-path="url(#terminal-1 [...]
-</text><text class="terminal-1154206015-r4" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-1154206015-line-19)">│</text><text class="terminal-1154206015-r5" x="24.4" y="483.6" textLength="12.2" clip-path="url(#terminal-1154206015-line-19)">-</text><text class="terminal-1154206015-r5" x="36.6" y="483.6" textLength="146.4" clip-path="url(#terminal-1154206015-line-19)">-parallelism</text><text class="terminal-1154206015-r2" x="378.2" y="483.6" textLength="1061.4" clip-path="url( [...]
-</text><text class="terminal-1154206015-r4" x="0" y="508" textLength="12.2" clip-path="url(#terminal-1154206015-line-20)">│</text><text class="terminal-1154206015-r2" x="378.2" y="508" textLength="1061.4" clip-path="url(#terminal-1154206015-line-20)">operations.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
-</text><text class="terminal-1154206015-r4" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-1154206015-line-21)">│</text><text class="terminal-1154206015-r7" x="378.2" y="532.4" textLength="1061.4" clip-path="url(#terminal-1154206015-line-21)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-1154206015-r4" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-1154206015-line-22)">│</text><text class="terminal-1154206015-r4" x="378.2" y="556.8" textLength="1061.4" clip-path="url(#terminal-1154206015-line-22)">[default:&#160;2;&#160;1&lt;=x&lt;=4]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
-</text><text class="terminal-1154206015-r4" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-1154206015-line-23)">│</text><text class="terminal-1154206015-r5" x="24.4" y="581.2" textLength="12.2" clip-path="url(#terminal-1154206015-line-23)">-</text><text class="terminal-1154206015-r5" x="36.6" y="581.2" textLength="85.4" clip-path="url(#terminal-1154206015-line-23)">-python</text><text class="terminal-1154206015-r5" x="122" y="581.2" textLength="109.8" clip-path="url(#terminal [...]
-</text><text class="terminal-1154206015-r4" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-1154206015-line-24)">│</text><text class="terminal-1154206015-r4" x="378.2" y="605.6" textLength="951.6" clip-path="url(#terminal-1154206015-line-24)">[default:&#160;3.7&#160;3.8&#160;3.9&#160;3.10]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-1154206015-r4" x="0" y="630" textLength="12.2" clip-path="url(#terminal-1154206015-line-25)">│</text><text class="terminal-1154206015-r5" x="24.4" y="630" textLength="12.2" clip-path="url(#terminal-1154206015-line-25)">-</text><text class="terminal-1154206015-r5" x="36.6" y="630" textLength="134.2" clip-path="url(#terminal-1154206015-line-25)">-kubernetes</text><text class="terminal-1154206015-r5" x="170.8" y="630" textLength="109.8" clip-path="url(#terminal- [...]
-</text><text class="terminal-1154206015-r4" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-1154206015-line-26)">│</text><text class="terminal-1154206015-r4" x="378.2" y="654.4" textLength="756.4" clip-path="url(#terminal-1154206015-line-26)">[default:&#160;v1.25.2&#160;v1.24.6&#160;v1.23.12&#160;v1.22.15&#160;v1.21.14]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-1154206015-r4" x="1451.8" y="654.4" textLength="12.2" clip-path="url(#termina [...]
-</text><text class="terminal-1154206015-r4" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-1154206015-line-27)">│</text><text class="terminal-1154206015-r5" x="24.4" y="678.8" textLength="12.2" clip-path="url(#terminal-1154206015-line-27)">-</text><text class="terminal-1154206015-r5" x="36.6" y="678.8" textLength="61" clip-path="url(#terminal-1154206015-line-27)">-skip</text><text class="terminal-1154206015-r5" x="97.6" y="678.8" textLength="97.6" clip-path="url(#terminal-115 [...]
-</text><text class="terminal-1154206015-r4" x="0" y="703.2" textLength="12.2" clip-path="url(#terminal-1154206015-line-28)">│</text><text class="terminal-1154206015-r5" x="24.4" y="703.2" textLength="12.2" clip-path="url(#terminal-1154206015-line-28)">-</text><text class="terminal-1154206015-r5" x="36.6" y="703.2" textLength="73.2" clip-path="url(#terminal-1154206015-line-28)">-debug</text><text class="terminal-1154206015-r5" x="109.8" y="703.2" textLength="122" clip-path="url(#terminal- [...]
-</text><text class="terminal-1154206015-r4" x="0" y="727.6" textLength="12.2" clip-path="url(#terminal-1154206015-line-29)">│</text><text class="terminal-1154206015-r5" x="24.4" y="727.6" textLength="12.2" clip-path="url(#terminal-1154206015-line-29)">-</text><text class="terminal-1154206015-r5" x="36.6" y="727.6" textLength="97.6" clip-path="url(#terminal-1154206015-line-29)">-include</text><text class="terminal-1154206015-r5" x="134.2" y="727.6" textLength="195.2" clip-path="url(#termi [...]
-</text><text class="terminal-1154206015-r4" x="0" y="752" textLength="1464" clip-path="url(#terminal-1154206015-line-30)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1154206015-r2" x="1464" y="752" textLength="12.2" clip-path="url(#terminal-1154206015-line-30)">
-</text><text class="terminal-1154206015-r4" x="0" y="776.4" textLength="24.4" clip-path="url(#terminal-1154206015-line-31)">╭─</text><text class="terminal-1154206015-r4" x="24.4" y="776.4" textLength="1415.2" clip-path="url(#terminal-1154206015-line-31)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1154206015-r4" x="1439.6" y="776.4" textLength="24.4" clip-path="url(#termina [...]
-</text><text class="terminal-1154206015-r4" x="0" y="800.8" textLength="12.2" clip-path="url(#terminal-1154206015-line-32)">│</text><text class="terminal-1154206015-r5" x="24.4" y="800.8" textLength="12.2" clip-path="url(#terminal-1154206015-line-32)">-</text><text class="terminal-1154206015-r5" x="36.6" y="800.8" textLength="97.6" clip-path="url(#terminal-1154206015-line-32)">-verbose</text><text class="terminal-1154206015-r6" x="158.6" y="800.8" textLength="24.4" clip-path="url(#termin [...]
-</text><text class="terminal-1154206015-r4" x="0" y="825.2" textLength="12.2" clip-path="url(#terminal-1154206015-line-33)">│</text><text class="terminal-1154206015-r5" x="24.4" y="825.2" textLength="12.2" clip-path="url(#terminal-1154206015-line-33)">-</text><text class="terminal-1154206015-r5" x="36.6" y="825.2" textLength="48.8" clip-path="url(#terminal-1154206015-line-33)">-dry</text><text class="terminal-1154206015-r5" x="85.4" y="825.2" textLength="48.8" clip-path="url(#terminal-11 [...]
-</text><text class="terminal-1154206015-r4" x="0" y="849.6" textLength="12.2" clip-path="url(#terminal-1154206015-line-34)">│</text><text class="terminal-1154206015-r5" x="24.4" y="849.6" textLength="12.2" clip-path="url(#terminal-1154206015-line-34)">-</text><text class="terminal-1154206015-r5" x="36.6" y="849.6" textLength="61" clip-path="url(#terminal-1154206015-line-34)">-help</text><text class="terminal-1154206015-r6" x="158.6" y="849.6" textLength="24.4" clip-path="url(#terminal-11 [...]
-</text><text class="terminal-1154206015-r4" x="0" y="874" textLength="1464" clip-path="url(#terminal-1154206015-line-35)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1154206015-r2" x="1464" y="874" textLength="12.2" clip-path="url(#terminal-1154206015-line-35)">
+    <g class="terminal-24763611-matrix">
+    <text class="terminal-24763611-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-24763611-line-0)">
+</text><text class="terminal-24763611-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-24763611-line-1)">Usage:&#160;</text><text class="terminal-24763611-r1" x="97.6" y="44.4" textLength="329.4" clip-path="url(#terminal-24763611-line-1)">breeze&#160;k8s&#160;deploy-airflow&#160;[</text><text class="terminal-24763611-r4" x="427" y="44.4" textLength="85.4" clip-path="url(#terminal-24763611-line-1)">OPTIONS</text><text class="terminal-24763611-r1" x="512.4" y="44.4" textLen [...]
+</text><text class="terminal-24763611-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-24763611-line-2)">
+</text><text class="terminal-24763611-r2" x="12.2" y="93.2" textLength="817.4" clip-path="url(#terminal-24763611-line-3)">Deploy&#160;airflow&#160;image&#160;to&#160;the&#160;current&#160;KinD&#160;cluster&#160;(or&#160;all&#160;clusters).</text><text class="terminal-24763611-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-24763611-line-3)">
+</text><text class="terminal-24763611-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-24763611-line-4)">
+</text><text class="terminal-24763611-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-24763611-line-5)">╭─</text><text class="terminal-24763611-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-24763611-line-5)">&#160;Airflow&#160;deploy&#160;flags&#160;──────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-24763611-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-24763611-li [...]
+</text><text class="terminal-24763611-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-24763611-line-6)">│</text><text class="terminal-24763611-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-24763611-line-6)">-</text><text class="terminal-24763611-r4" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-24763611-line-6)">-python</text><text class="terminal-24763611-r6" x="317.2" y="166.4" textLength="24.4" clip-path="url(#terminal-24763611-line-6 [...]
+</text><text class="terminal-24763611-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-24763611-line-7)">│</text><text class="terminal-24763611-r7" x="366" y="190.8" textLength="732" clip-path="url(#terminal-24763611-line-7)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10&#160;|&#160;3.11)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><tex [...]
+</text><text class="terminal-24763611-r5" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-24763611-line-8)">│</text><text class="terminal-24763611-r5" x="366" y="215.2" textLength="732" clip-path="url(#terminal-24763611-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-24763611-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-24763611-line-9)">│</text><text class="terminal-24763611-r4" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-24763611-line-9)">-</text><text class="terminal-24763611-r4" x="36.6" y="239.6" textLength="134.2" clip-path="url(#terminal-24763611-line-9)">-kubernetes</text><text class="terminal-24763611-r4" x="170.8" y="239.6" textLength="97.6" clip-path="url(#terminal-24763611-l [...]
+</text><text class="terminal-24763611-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-24763611-line-10)">│</text><text class="terminal-24763611-r7" x="366" y="264" textLength="658.8" clip-path="url(#terminal-24763611-line-10)">(&gt;v1.25.2&lt;&#160;|&#160;v1.24.6&#160;|&#160;v1.23.12&#160;|&#160;v1.22.15&#160;|&#160;v1.21.14)</text><text class="terminal-24763611-r5" x="1451.8" y="264" textLength="12.2" clip-path="url(#terminal-24763611-line-10)">│</text><text class="terminal [...]
+</text><text class="terminal-24763611-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-24763611-line-11)">│</text><text class="terminal-24763611-r5" x="366" y="288.4" textLength="658.8" clip-path="url(#terminal-24763611-line-11)">[default:&#160;v1.25.2]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><t [...]
+</text><text class="terminal-24763611-r5" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-24763611-line-12)">│</text><text class="terminal-24763611-r4" x="24.4" y="312.8" textLength="12.2" clip-path="url(#terminal-24763611-line-12)">-</text><text class="terminal-24763611-r4" x="36.6" y="312.8" textLength="109.8" clip-path="url(#terminal-24763611-line-12)">-executor</text><text class="terminal-24763611-r2" x="366" y="312.8" textLength="1000.4" clip-path="url(#terminal-24763611- [...]
+</text><text class="terminal-24763611-r5" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-24763611-line-13)">│</text><text class="terminal-24763611-r7" x="366" y="337.2" textLength="1000.4" clip-path="url(#terminal-24763611-line-13)">(&gt;KubernetesExecutor&lt;&#160;|&#160;CeleryExecutor&#160;|&#160;LocalExecutor&#160;|&#160;CeleryKubernetesExecutor)</text><text class="terminal-24763611-r5" x="1451.8" y="337.2" textLength="12.2" clip-path="url(#terminal-24763611-line-13)">│</t [...]
+</text><text class="terminal-24763611-r5" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-24763611-line-14)">│</text><text class="terminal-24763611-r5" x="366" y="361.6" textLength="1000.4" clip-path="url(#terminal-24763611-line-14)">[default:&#160;KubernetesExecutor]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
+</text><text class="terminal-24763611-r5" x="0" y="386" textLength="12.2" clip-path="url(#terminal-24763611-line-15)">│</text><text class="terminal-24763611-r4" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-24763611-line-15)">-</text><text class="terminal-24763611-r4" x="36.6" y="386" textLength="97.6" clip-path="url(#terminal-24763611-line-15)">-upgrade</text><text class="terminal-24763611-r2" x="366" y="386" textLength="549" clip-path="url(#terminal-24763611-line-15)">Upg [...]
+</text><text class="terminal-24763611-r5" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-24763611-line-16)">│</text><text class="terminal-24763611-r4" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-24763611-line-16)">-</text><text class="terminal-24763611-r4" x="36.6" y="410.4" textLength="61" clip-path="url(#terminal-24763611-line-16)">-wait</text><text class="terminal-24763611-r4" x="97.6" y="410.4" textLength="195.2" clip-path="url(#terminal-24763611-line-16 [...]
+</text><text class="terminal-24763611-r5" x="0" y="434.8" textLength="1464" clip-path="url(#terminal-24763611-line-17)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-24763611-r2" x="1464" y="434.8" textLength="12.2" clip-path="url(#terminal-24763611-line-17)">
+</text><text class="terminal-24763611-r5" x="0" y="459.2" textLength="24.4" clip-path="url(#terminal-24763611-line-18)">╭─</text><text class="terminal-24763611-r5" x="24.4" y="459.2" textLength="1415.2" clip-path="url(#terminal-24763611-line-18)">&#160;Parallel&#160;options&#160;──────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-24763611-r5" x="1439.6" y="459.2" textLength="24.4" clip-path="url(#terminal-24763611 [...]
+</text><text class="terminal-24763611-r5" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-24763611-line-19)">│</text><text class="terminal-24763611-r4" x="24.4" y="483.6" textLength="12.2" clip-path="url(#terminal-24763611-line-19)">-</text><text class="terminal-24763611-r4" x="36.6" y="483.6" textLength="48.8" clip-path="url(#terminal-24763611-line-19)">-run</text><text class="terminal-24763611-r4" x="85.4" y="483.6" textLength="146.4" clip-path="url(#terminal-24763611-line-1 [...]
+</text><text class="terminal-24763611-r5" x="0" y="508" textLength="12.2" clip-path="url(#terminal-24763611-line-20)">│</text><text class="terminal-24763611-r4" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-24763611-line-20)">-</text><text class="terminal-24763611-r4" x="36.6" y="508" textLength="146.4" clip-path="url(#terminal-24763611-line-20)">-parallelism</text><text class="terminal-24763611-r2" x="378.2" y="508" textLength="1061.4" clip-path="url(#terminal-24763611-lin [...]
+</text><text class="terminal-24763611-r5" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-24763611-line-21)">│</text><text class="terminal-24763611-r2" x="378.2" y="532.4" textLength="1061.4" clip-path="url(#terminal-24763611-line-21)">operations.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
+</text><text class="terminal-24763611-r5" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-24763611-line-22)">│</text><text class="terminal-24763611-r7" x="378.2" y="556.8" textLength="1061.4" clip-path="url(#terminal-24763611-line-22)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
+</text><text class="terminal-24763611-r5" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-24763611-line-23)">│</text><text class="terminal-24763611-r5" x="378.2" y="581.2" textLength="1061.4" clip-path="url(#terminal-24763611-line-23)">[default:&#160;2;&#160;1&lt;=x&lt;=4]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
+</text><text class="terminal-24763611-r5" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-24763611-line-24)">│</text><text class="terminal-24763611-r4" x="24.4" y="605.6" textLength="12.2" clip-path="url(#terminal-24763611-line-24)">-</text><text class="terminal-24763611-r4" x="36.6" y="605.6" textLength="85.4" clip-path="url(#terminal-24763611-line-24)">-python</text><text class="terminal-24763611-r4" x="122" y="605.6" textLength="109.8" clip-path="url(#terminal-24763611-line [...]
+</text><text class="terminal-24763611-r5" x="0" y="630" textLength="12.2" clip-path="url(#terminal-24763611-line-25)">│</text><text class="terminal-24763611-r5" x="378.2" y="630" textLength="951.6" clip-path="url(#terminal-24763611-line-25)">[default:&#160;3.7&#160;3.8&#160;3.9&#160;3.10&#160;3.11]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-24763611-r5" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-24763611-line-26)">│</text><text class="terminal-24763611-r4" x="24.4" y="654.4" textLength="12.2" clip-path="url(#terminal-24763611-line-26)">-</text><text class="terminal-24763611-r4" x="36.6" y="654.4" textLength="134.2" clip-path="url(#terminal-24763611-line-26)">-kubernetes</text><text class="terminal-24763611-r4" x="170.8" y="654.4" textLength="109.8" clip-path="url(#terminal-247636 [...]
+</text><text class="terminal-24763611-r5" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-24763611-line-27)">│</text><text class="terminal-24763611-r5" x="378.2" y="678.8" textLength="756.4" clip-path="url(#terminal-24763611-line-27)">[default:&#160;v1.25.2&#160;v1.24.6&#160;v1.23.12&#160;v1.22.15&#160;v1.21.14]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-24763611-r5" x="1451.8" y="678.8" textLength="12.2" clip-path="url(#terminal-24763611 [...]
+</text><text class="terminal-24763611-r5" x="0" y="703.2" textLength="12.2" clip-path="url(#terminal-24763611-line-28)">│</text><text class="terminal-24763611-r4" x="24.4" y="703.2" textLength="12.2" clip-path="url(#terminal-24763611-line-28)">-</text><text class="terminal-24763611-r4" x="36.6" y="703.2" textLength="61" clip-path="url(#terminal-24763611-line-28)">-skip</text><text class="terminal-24763611-r4" x="97.6" y="703.2" textLength="97.6" clip-path="url(#terminal-24763611-line-28) [...]
+</text><text class="terminal-24763611-r5" x="0" y="727.6" textLength="12.2" clip-path="url(#terminal-24763611-line-29)">│</text><text class="terminal-24763611-r4" x="24.4" y="727.6" textLength="12.2" clip-path="url(#terminal-24763611-line-29)">-</text><text class="terminal-24763611-r4" x="36.6" y="727.6" textLength="73.2" clip-path="url(#terminal-24763611-line-29)">-debug</text><text class="terminal-24763611-r4" x="109.8" y="727.6" textLength="122" clip-path="url(#terminal-24763611-line- [...]
+</text><text class="terminal-24763611-r5" x="0" y="752" textLength="12.2" clip-path="url(#terminal-24763611-line-30)">│</text><text class="terminal-24763611-r4" x="24.4" y="752" textLength="12.2" clip-path="url(#terminal-24763611-line-30)">-</text><text class="terminal-24763611-r4" x="36.6" y="752" textLength="97.6" clip-path="url(#terminal-24763611-line-30)">-include</text><text class="terminal-24763611-r4" x="134.2" y="752" textLength="195.2" clip-path="url(#terminal-24763611-line-30)" [...]
+</text><text class="terminal-24763611-r5" x="0" y="776.4" textLength="1464" clip-path="url(#terminal-24763611-line-31)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-24763611-r2" x="1464" y="776.4" textLength="12.2" clip-path="url(#terminal-24763611-line-31)">
+</text><text class="terminal-24763611-r5" x="0" y="800.8" textLength="24.4" clip-path="url(#terminal-24763611-line-32)">╭─</text><text class="terminal-24763611-r5" x="24.4" y="800.8" textLength="1415.2" clip-path="url(#terminal-24763611-line-32)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-24763611-r5" x="1439.6" y="800.8" textLength="24.4" clip-path="url(#terminal-24763611 [...]
+</text><text class="terminal-24763611-r5" x="0" y="825.2" textLength="12.2" clip-path="url(#terminal-24763611-line-33)">│</text><text class="terminal-24763611-r4" x="24.4" y="825.2" textLength="12.2" clip-path="url(#terminal-24763611-line-33)">-</text><text class="terminal-24763611-r4" x="36.6" y="825.2" textLength="97.6" clip-path="url(#terminal-24763611-line-33)">-verbose</text><text class="terminal-24763611-r6" x="158.6" y="825.2" textLength="24.4" clip-path="url(#terminal-24763611-li [...]
+</text><text class="terminal-24763611-r5" x="0" y="849.6" textLength="12.2" clip-path="url(#terminal-24763611-line-34)">│</text><text class="terminal-24763611-r4" x="24.4" y="849.6" textLength="12.2" clip-path="url(#terminal-24763611-line-34)">-</text><text class="terminal-24763611-r4" x="36.6" y="849.6" textLength="48.8" clip-path="url(#terminal-24763611-line-34)">-dry</text><text class="terminal-24763611-r4" x="85.4" y="849.6" textLength="48.8" clip-path="url(#terminal-24763611-line-34 [...]
+</text><text class="terminal-24763611-r5" x="0" y="874" textLength="12.2" clip-path="url(#terminal-24763611-line-35)">│</text><text class="terminal-24763611-r4" x="24.4" y="874" textLength="12.2" clip-path="url(#terminal-24763611-line-35)">-</text><text class="terminal-24763611-r4" x="36.6" y="874" textLength="61" clip-path="url(#terminal-24763611-line-35)">-help</text><text class="terminal-24763611-r6" x="158.6" y="874" textLength="24.4" clip-path="url(#terminal-24763611-line-35)">-h</t [...]
+</text><text class="terminal-24763611-r5" x="0" y="898.4" textLength="1464" clip-path="url(#terminal-24763611-line-36)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-24763611-r2" x="1464" y="898.4" textLength="12.2" clip-path="url(#terminal-24763611-line-36)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_k8s_k9s.svg b/images/breeze/output_k8s_k9s.svg
index 54af3bb8c5..dfdb2f01f0 100644
--- a/images/breeze/output_k8s_k9s.svg
+++ b/images/breeze/output_k8s_k9s.svg
@@ -1,4 +1,4 @@
-<svg class="rich-terminal" viewBox="0 0 1482 464.79999999999995" xmlns="http://www.w3.org/2000/svg">
+<svg class="rich-terminal" viewBox="0 0 1482 489.2" xmlns="http://www.w3.org/2000/svg">
     <!-- Generated with Rich https://www.textualize.io -->
     <style>
 
@@ -19,109 +19,113 @@
         font-weight: 700;
     }
 
-    .terminal-3624456192-matrix {
+    .terminal-210690905-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-3624456192-title {
+    .terminal-210690905-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-3624456192-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-3624456192-r2 { fill: #c5c8c6 }
-.terminal-3624456192-r3 { fill: #d0b344;font-weight: bold }
-.terminal-3624456192-r4 { fill: #868887 }
-.terminal-3624456192-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-3624456192-r6 { fill: #98a84b;font-weight: bold }
-.terminal-3624456192-r7 { fill: #8d7b39 }
+    .terminal-210690905-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-210690905-r2 { fill: #c5c8c6 }
+.terminal-210690905-r3 { fill: #d0b344;font-weight: bold }
+.terminal-210690905-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-210690905-r5 { fill: #868887 }
+.terminal-210690905-r6 { fill: #98a84b;font-weight: bold }
+.terminal-210690905-r7 { fill: #8d7b39 }
     </style>
 
     <defs>
-    <clipPath id="terminal-3624456192-clip-terminal">
-      <rect x="0" y="0" width="1463.0" height="413.79999999999995" />
+    <clipPath id="terminal-210690905-clip-terminal">
+      <rect x="0" y="0" width="1463.0" height="438.2" />
     </clipPath>
-    <clipPath id="terminal-3624456192-line-0">
+    <clipPath id="terminal-210690905-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3624456192-line-1">
+<clipPath id="terminal-210690905-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3624456192-line-2">
+<clipPath id="terminal-210690905-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3624456192-line-3">
+<clipPath id="terminal-210690905-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3624456192-line-4">
+<clipPath id="terminal-210690905-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3624456192-line-5">
+<clipPath id="terminal-210690905-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3624456192-line-6">
+<clipPath id="terminal-210690905-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3624456192-line-7">
+<clipPath id="terminal-210690905-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3624456192-line-8">
+<clipPath id="terminal-210690905-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3624456192-line-9">
+<clipPath id="terminal-210690905-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3624456192-line-10">
+<clipPath id="terminal-210690905-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3624456192-line-11">
+<clipPath id="terminal-210690905-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3624456192-line-12">
+<clipPath id="terminal-210690905-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3624456192-line-13">
+<clipPath id="terminal-210690905-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3624456192-line-14">
+<clipPath id="terminal-210690905-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3624456192-line-15">
+<clipPath id="terminal-210690905-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
+<clipPath id="terminal-210690905-line-16">
+    <rect x="0" y="391.9" width="1464" height="24.65"/>
+            </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="462.8" rx="8"/><text class="terminal-3624456192-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;k8s&#160;k9s</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="487.2" rx="8"/><text class="terminal-210690905-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;k8s&#160;k9s</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-3624456192-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-210690905-clip-terminal)">
     
-    <g class="terminal-3624456192-matrix">
-    <text class="terminal-3624456192-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-3624456192-line-0)">
-</text><text class="terminal-3624456192-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-3624456192-line-1)">Usage:&#160;</text><text class="terminal-3624456192-r1" x="97.6" y="44.4" textLength="463.6" clip-path="url(#terminal-3624456192-line-1)">breeze&#160;k8s&#160;k9s&#160;[OPTIONS]&#160;[K9S_ARGS]...</text><text class="terminal-3624456192-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-3624456192-line-1)">
-</text><text class="terminal-3624456192-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-3624456192-line-2)">
-</text><text class="terminal-3624456192-r2" x="12.2" y="93.2" textLength="658.8" clip-path="url(#terminal-3624456192-line-3)">Run&#160;k9s&#160;tool.&#160;You&#160;can&#160;pass&#160;any&#160;k9s&#160;args&#160;as&#160;extra&#160;args.</text><text class="terminal-3624456192-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-3624456192-line-3)">
-</text><text class="terminal-3624456192-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-3624456192-line-4)">
-</text><text class="terminal-3624456192-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-3624456192-line-5)">╭─</text><text class="terminal-3624456192-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-3624456192-line-5)">&#160;K8S&#160;k9s&#160;flags&#160;─────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3624456192-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-3 [...]
-</text><text class="terminal-3624456192-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-3624456192-line-6)">│</text><text class="terminal-3624456192-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-3624456192-line-6)">-</text><text class="terminal-3624456192-r5" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-3624456192-line-6)">-python</text><text class="terminal-3624456192-r6" x="292.8" y="166.4" textLength="24.4" clip-path="url(#terminal-3 [...]
-</text><text class="terminal-3624456192-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-3624456192-line-7)">│</text><text class="terminal-3624456192-r4" x="341.6" y="190.8" textLength="732" clip-path="url(#terminal-3624456192-line-7)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-3624456192-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-3624456192-line-8)">│</text><text class="terminal-3624456192-r5" x="24.4" y="215.2" textLength="12.2" clip-path="url(#terminal-3624456192-line-8)">-</text><text class="terminal-3624456192-r5" x="36.6" y="215.2" textLength="134.2" clip-path="url(#terminal-3624456192-line-8)">-kubernetes</text><text class="terminal-3624456192-r5" x="170.8" y="215.2" textLength="97.6" clip-path="url(#termi [...]
-</text><text class="terminal-3624456192-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-3624456192-line-9)">│</text><text class="terminal-3624456192-r7" x="341.6" y="239.6" textLength="658.8" clip-path="url(#terminal-3624456192-line-9)">(&gt;v1.25.2&lt;&#160;|&#160;v1.24.6&#160;|&#160;v1.23.12&#160;|&#160;v1.22.15&#160;|&#160;v1.21.14)</text><text class="terminal-3624456192-r4" x="1451.8" y="239.6" textLength="12.2" clip-path="url(#terminal-3624456192-line-9)">│</text><tex [...]
-</text><text class="terminal-3624456192-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-3624456192-line-10)">│</text><text class="terminal-3624456192-r4" x="341.6" y="264" textLength="658.8" clip-path="url(#terminal-3624456192-line-10)">[default:&#160;v1.25.2]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</t [...]
-</text><text class="terminal-3624456192-r4" x="0" y="288.4" textLength="1464" clip-path="url(#terminal-3624456192-line-11)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3624456192-r2" x="1464" y="288.4" textLength="12.2" clip-path="url(#terminal-3624456192-line-11)">
-</text><text class="terminal-3624456192-r4" x="0" y="312.8" textLength="24.4" clip-path="url(#terminal-3624456192-line-12)">╭─</text><text class="terminal-3624456192-r4" x="24.4" y="312.8" textLength="1415.2" clip-path="url(#terminal-3624456192-line-12)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3624456192-r4" x="1439.6" y="312.8" textLength="24.4" clip-path="url(#termina [...]
-</text><text class="terminal-3624456192-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-3624456192-line-13)">│</text><text class="terminal-3624456192-r5" x="24.4" y="337.2" textLength="12.2" clip-path="url(#terminal-3624456192-line-13)">-</text><text class="terminal-3624456192-r5" x="36.6" y="337.2" textLength="97.6" clip-path="url(#terminal-3624456192-line-13)">-verbose</text><text class="terminal-3624456192-r6" x="158.6" y="337.2" textLength="24.4" clip-path="url(#termin [...]
-</text><text class="terminal-3624456192-r4" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-3624456192-line-14)">│</text><text class="terminal-3624456192-r5" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-3624456192-line-14)">-</text><text class="terminal-3624456192-r5" x="36.6" y="361.6" textLength="48.8" clip-path="url(#terminal-3624456192-line-14)">-dry</text><text class="terminal-3624456192-r5" x="85.4" y="361.6" textLength="48.8" clip-path="url(#terminal-36 [...]
-</text><text class="terminal-3624456192-r4" x="0" y="386" textLength="12.2" clip-path="url(#terminal-3624456192-line-15)">│</text><text class="terminal-3624456192-r5" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-3624456192-line-15)">-</text><text class="terminal-3624456192-r5" x="36.6" y="386" textLength="61" clip-path="url(#terminal-3624456192-line-15)">-help</text><text class="terminal-3624456192-r6" x="158.6" y="386" textLength="24.4" clip-path="url(#terminal-3624456192 [...]
-</text><text class="terminal-3624456192-r4" x="0" y="410.4" textLength="1464" clip-path="url(#terminal-3624456192-line-16)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3624456192-r2" x="1464" y="410.4" textLength="12.2" clip-path="url(#terminal-3624456192-line-16)">
+    <g class="terminal-210690905-matrix">
+    <text class="terminal-210690905-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-210690905-line-0)">
+</text><text class="terminal-210690905-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-210690905-line-1)">Usage:&#160;</text><text class="terminal-210690905-r1" x="97.6" y="44.4" textLength="195.2" clip-path="url(#terminal-210690905-line-1)">breeze&#160;k8s&#160;k9s&#160;[</text><text class="terminal-210690905-r4" x="292.8" y="44.4" textLength="85.4" clip-path="url(#terminal-210690905-line-1)">OPTIONS</text><text class="terminal-210690905-r1" x="378.2" y="44.4" textLengt [...]
+</text><text class="terminal-210690905-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-210690905-line-2)">
+</text><text class="terminal-210690905-r2" x="12.2" y="93.2" textLength="658.8" clip-path="url(#terminal-210690905-line-3)">Run&#160;k9s&#160;tool.&#160;You&#160;can&#160;pass&#160;any&#160;k9s&#160;args&#160;as&#160;extra&#160;args.</text><text class="terminal-210690905-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-210690905-line-3)">
+</text><text class="terminal-210690905-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-210690905-line-4)">
+</text><text class="terminal-210690905-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-210690905-line-5)">╭─</text><text class="terminal-210690905-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-210690905-line-5)">&#160;K8S&#160;k9s&#160;flags&#160;─────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-210690905-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-210690 [...]
+</text><text class="terminal-210690905-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-210690905-line-6)">│</text><text class="terminal-210690905-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-210690905-line-6)">-</text><text class="terminal-210690905-r4" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-210690905-line-6)">-python</text><text class="terminal-210690905-r6" x="292.8" y="166.4" textLength="24.4" clip-path="url(#terminal-21069090 [...]
+</text><text class="terminal-210690905-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-210690905-line-7)">│</text><text class="terminal-210690905-r7" x="341.6" y="190.8" textLength="732" clip-path="url(#terminal-210690905-line-7)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10&#160;|&#160;3.11)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</tex [...]
+</text><text class="terminal-210690905-r5" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-210690905-line-8)">│</text><text class="terminal-210690905-r5" x="341.6" y="215.2" textLength="732" clip-path="url(#terminal-210690905-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-210690905-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-210690905-line-9)">│</text><text class="terminal-210690905-r4" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-210690905-line-9)">-</text><text class="terminal-210690905-r4" x="36.6" y="239.6" textLength="134.2" clip-path="url(#terminal-210690905-line-9)">-kubernetes</text><text class="terminal-210690905-r4" x="170.8" y="239.6" textLength="97.6" clip-path="url(#terminal-210 [...]
+</text><text class="terminal-210690905-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-210690905-line-10)">│</text><text class="terminal-210690905-r7" x="341.6" y="264" textLength="658.8" clip-path="url(#terminal-210690905-line-10)">(&gt;v1.25.2&lt;&#160;|&#160;v1.24.6&#160;|&#160;v1.23.12&#160;|&#160;v1.22.15&#160;|&#160;v1.21.14)</text><text class="terminal-210690905-r5" x="1451.8" y="264" textLength="12.2" clip-path="url(#terminal-210690905-line-10)">│</text><text class=" [...]
+</text><text class="terminal-210690905-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-210690905-line-11)">│</text><text class="terminal-210690905-r5" x="341.6" y="288.4" textLength="658.8" clip-path="url(#terminal-210690905-line-11)">[default:&#160;v1.25.2]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</t [...]
+</text><text class="terminal-210690905-r5" x="0" y="312.8" textLength="1464" clip-path="url(#terminal-210690905-line-12)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-210690905-r2" x="1464" y="312.8" textLength="12.2" clip-path="url(#terminal-210690905-line-12)">
+</text><text class="terminal-210690905-r5" x="0" y="337.2" textLength="24.4" clip-path="url(#terminal-210690905-line-13)">╭─</text><text class="terminal-210690905-r5" x="24.4" y="337.2" textLength="1415.2" clip-path="url(#terminal-210690905-line-13)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-210690905-r5" x="1439.6" y="337.2" textLength="24.4" clip-path="url(#terminal-210 [...]
+</text><text class="terminal-210690905-r5" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-210690905-line-14)">│</text><text class="terminal-210690905-r4" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-210690905-line-14)">-</text><text class="terminal-210690905-r4" x="36.6" y="361.6" textLength="97.6" clip-path="url(#terminal-210690905-line-14)">-verbose</text><text class="terminal-210690905-r6" x="158.6" y="361.6" textLength="24.4" clip-path="url(#terminal-2106 [...]
+</text><text class="terminal-210690905-r5" x="0" y="386" textLength="12.2" clip-path="url(#terminal-210690905-line-15)">│</text><text class="terminal-210690905-r4" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-210690905-line-15)">-</text><text class="terminal-210690905-r4" x="36.6" y="386" textLength="48.8" clip-path="url(#terminal-210690905-line-15)">-dry</text><text class="terminal-210690905-r4" x="85.4" y="386" textLength="48.8" clip-path="url(#terminal-210690905-line-15 [...]
+</text><text class="terminal-210690905-r5" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-210690905-line-16)">│</text><text class="terminal-210690905-r4" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-210690905-line-16)">-</text><text class="terminal-210690905-r4" x="36.6" y="410.4" textLength="61" clip-path="url(#terminal-210690905-line-16)">-help</text><text class="terminal-210690905-r6" x="158.6" y="410.4" textLength="24.4" clip-path="url(#terminal-210690905 [...]
+</text><text class="terminal-210690905-r5" x="0" y="434.8" textLength="1464" clip-path="url(#terminal-210690905-line-17)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-210690905-r2" x="1464" y="434.8" textLength="12.2" clip-path="url(#terminal-210690905-line-17)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_k8s_logs.svg b/images/breeze/output_k8s_logs.svg
index 6d03a62388..98f777b2d5 100644
--- a/images/breeze/output_k8s_logs.svg
+++ b/images/breeze/output_k8s_logs.svg
@@ -1,4 +1,4 @@
-<svg class="rich-terminal" viewBox="0 0 1482 538.0" xmlns="http://www.w3.org/2000/svg">
+<svg class="rich-terminal" viewBox="0 0 1482 562.4" xmlns="http://www.w3.org/2000/svg">
     <!-- Generated with Rich https://www.textualize.io -->
     <style>
 
@@ -19,121 +19,125 @@
         font-weight: 700;
     }
 
-    .terminal-3607011906-matrix {
+    .terminal-2891429275-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-3607011906-title {
+    .terminal-2891429275-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-3607011906-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-3607011906-r2 { fill: #c5c8c6 }
-.terminal-3607011906-r3 { fill: #d0b344;font-weight: bold }
-.terminal-3607011906-r4 { fill: #868887 }
-.terminal-3607011906-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-3607011906-r6 { fill: #98a84b;font-weight: bold }
-.terminal-3607011906-r7 { fill: #8d7b39 }
+    .terminal-2891429275-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-2891429275-r2 { fill: #c5c8c6 }
+.terminal-2891429275-r3 { fill: #d0b344;font-weight: bold }
+.terminal-2891429275-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-2891429275-r5 { fill: #868887 }
+.terminal-2891429275-r6 { fill: #98a84b;font-weight: bold }
+.terminal-2891429275-r7 { fill: #8d7b39 }
     </style>
 
     <defs>
-    <clipPath id="terminal-3607011906-clip-terminal">
-      <rect x="0" y="0" width="1463.0" height="487.0" />
+    <clipPath id="terminal-2891429275-clip-terminal">
+      <rect x="0" y="0" width="1463.0" height="511.4" />
     </clipPath>
-    <clipPath id="terminal-3607011906-line-0">
+    <clipPath id="terminal-2891429275-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3607011906-line-1">
+<clipPath id="terminal-2891429275-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3607011906-line-2">
+<clipPath id="terminal-2891429275-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3607011906-line-3">
+<clipPath id="terminal-2891429275-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3607011906-line-4">
+<clipPath id="terminal-2891429275-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3607011906-line-5">
+<clipPath id="terminal-2891429275-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3607011906-line-6">
+<clipPath id="terminal-2891429275-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3607011906-line-7">
+<clipPath id="terminal-2891429275-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3607011906-line-8">
+<clipPath id="terminal-2891429275-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3607011906-line-9">
+<clipPath id="terminal-2891429275-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3607011906-line-10">
+<clipPath id="terminal-2891429275-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3607011906-line-11">
+<clipPath id="terminal-2891429275-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3607011906-line-12">
+<clipPath id="terminal-2891429275-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3607011906-line-13">
+<clipPath id="terminal-2891429275-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3607011906-line-14">
+<clipPath id="terminal-2891429275-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3607011906-line-15">
+<clipPath id="terminal-2891429275-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3607011906-line-16">
+<clipPath id="terminal-2891429275-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3607011906-line-17">
+<clipPath id="terminal-2891429275-line-17">
     <rect x="0" y="416.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3607011906-line-18">
+<clipPath id="terminal-2891429275-line-18">
     <rect x="0" y="440.7" width="1464" height="24.65"/>
             </clipPath>
+<clipPath id="terminal-2891429275-line-19">
+    <rect x="0" y="465.1" width="1464" height="24.65"/>
+            </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="536" rx="8"/><text class="terminal-3607011906-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;k8s&#160;logs</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="560.4" rx="8"/><text class="terminal-2891429275-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;k8s&#160;logs</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-3607011906-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-2891429275-clip-terminal)">
     
-    <g class="terminal-3607011906-matrix">
-    <text class="terminal-3607011906-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-3607011906-line-0)">
-</text><text class="terminal-3607011906-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-3607011906-line-1)">Usage:&#160;</text><text class="terminal-3607011906-r1" x="97.6" y="44.4" textLength="305" clip-path="url(#terminal-3607011906-line-1)">breeze&#160;k8s&#160;logs&#160;[OPTIONS]</text><text class="terminal-3607011906-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-3607011906-line-1)">
-</text><text class="terminal-3607011906-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-3607011906-line-2)">
-</text><text class="terminal-3607011906-r2" x="12.2" y="93.2" textLength="463.6" clip-path="url(#terminal-3607011906-line-3)">Dump&#160;k8s&#160;logs&#160;to&#160;${TMP_DIR}/kind_logs_</text><text class="terminal-3607011906-r3" x="475.8" y="93.2" textLength="170.8" clip-path="url(#terminal-3607011906-line-3)">&lt;cluster_name&gt;</text><text class="terminal-3607011906-r2" x="646.6" y="93.2" textLength="451.4" clip-path="url(#terminal-3607011906-line-3)">&#160;directory&#160;(optionally&# [...]
-</text><text class="terminal-3607011906-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-3607011906-line-4)">
-</text><text class="terminal-3607011906-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-3607011906-line-5)">╭─</text><text class="terminal-3607011906-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-3607011906-line-5)">&#160;K8S&#160;logs&#160;flags&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3607011906-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-3 [...]
-</text><text class="terminal-3607011906-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-3607011906-line-6)">│</text><text class="terminal-3607011906-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-3607011906-line-6)">-</text><text class="terminal-3607011906-r5" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-3607011906-line-6)">-python</text><text class="terminal-3607011906-r6" x="292.8" y="166.4" textLength="24.4" clip-path="url(#terminal-3 [...]
-</text><text class="terminal-3607011906-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-3607011906-line-7)">│</text><text class="terminal-3607011906-r4" x="341.6" y="190.8" textLength="732" clip-path="url(#terminal-3607011906-line-7)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-3607011906-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-3607011906-line-8)">│</text><text class="terminal-3607011906-r5" x="24.4" y="215.2" textLength="12.2" clip-path="url(#terminal-3607011906-line-8)">-</text><text class="terminal-3607011906-r5" x="36.6" y="215.2" textLength="134.2" clip-path="url(#terminal-3607011906-line-8)">-kubernetes</text><text class="terminal-3607011906-r5" x="170.8" y="215.2" textLength="97.6" clip-path="url(#termi [...]
-</text><text class="terminal-3607011906-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-3607011906-line-9)">│</text><text class="terminal-3607011906-r7" x="341.6" y="239.6" textLength="658.8" clip-path="url(#terminal-3607011906-line-9)">(&gt;v1.25.2&lt;&#160;|&#160;v1.24.6&#160;|&#160;v1.23.12&#160;|&#160;v1.22.15&#160;|&#160;v1.21.14)</text><text class="terminal-3607011906-r4" x="1451.8" y="239.6" textLength="12.2" clip-path="url(#terminal-3607011906-line-9)">│</text><tex [...]
-</text><text class="terminal-3607011906-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-3607011906-line-10)">│</text><text class="terminal-3607011906-r4" x="341.6" y="264" textLength="658.8" clip-path="url(#terminal-3607011906-line-10)">[default:&#160;v1.25.2]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</t [...]
-</text><text class="terminal-3607011906-r4" x="0" y="288.4" textLength="1464" clip-path="url(#terminal-3607011906-line-11)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3607011906-r2" x="1464" y="288.4" textLength="12.2" clip-path="url(#terminal-3607011906-line-11)">
-</text><text class="terminal-3607011906-r4" x="0" y="312.8" textLength="24.4" clip-path="url(#terminal-3607011906-line-12)">╭─</text><text class="terminal-3607011906-r4" x="24.4" y="312.8" textLength="1415.2" clip-path="url(#terminal-3607011906-line-12)">&#160;K8S&#160;multi-cluster&#160;flags&#160;───────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3607011906-r4" x="1439.6" y="312.8" textLength="24.4" clip-path="url(#te [...]
-</text><text class="terminal-3607011906-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-3607011906-line-13)">│</text><text class="terminal-3607011906-r5" x="24.4" y="337.2" textLength="12.2" clip-path="url(#terminal-3607011906-line-13)">-</text><text class="terminal-3607011906-r5" x="36.6" y="337.2" textLength="48.8" clip-path="url(#terminal-3607011906-line-13)">-all</text><text class="terminal-3607011906-r2" x="134.2" y="337.2" textLength="390.4" clip-path="url(#terminal- [...]
-</text><text class="terminal-3607011906-r4" x="0" y="361.6" textLength="1464" clip-path="url(#terminal-3607011906-line-14)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3607011906-r2" x="1464" y="361.6" textLength="12.2" clip-path="url(#terminal-3607011906-line-14)">
-</text><text class="terminal-3607011906-r4" x="0" y="386" textLength="24.4" clip-path="url(#terminal-3607011906-line-15)">╭─</text><text class="terminal-3607011906-r4" x="24.4" y="386" textLength="1415.2" clip-path="url(#terminal-3607011906-line-15)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3607011906-r4" x="1439.6" y="386" textLength="24.4" clip-path="url(#terminal-3607 [...]
-</text><text class="terminal-3607011906-r4" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-3607011906-line-16)">│</text><text class="terminal-3607011906-r5" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-3607011906-line-16)">-</text><text class="terminal-3607011906-r5" x="36.6" y="410.4" textLength="97.6" clip-path="url(#terminal-3607011906-line-16)">-verbose</text><text class="terminal-3607011906-r6" x="158.6" y="410.4" textLength="24.4" clip-path="url(#termin [...]
-</text><text class="terminal-3607011906-r4" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-3607011906-line-17)">│</text><text class="terminal-3607011906-r5" x="24.4" y="434.8" textLength="12.2" clip-path="url(#terminal-3607011906-line-17)">-</text><text class="terminal-3607011906-r5" x="36.6" y="434.8" textLength="48.8" clip-path="url(#terminal-3607011906-line-17)">-dry</text><text class="terminal-3607011906-r5" x="85.4" y="434.8" textLength="48.8" clip-path="url(#terminal-36 [...]
-</text><text class="terminal-3607011906-r4" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-3607011906-line-18)">│</text><text class="terminal-3607011906-r5" x="24.4" y="459.2" textLength="12.2" clip-path="url(#terminal-3607011906-line-18)">-</text><text class="terminal-3607011906-r5" x="36.6" y="459.2" textLength="61" clip-path="url(#terminal-3607011906-line-18)">-help</text><text class="terminal-3607011906-r6" x="158.6" y="459.2" textLength="24.4" clip-path="url(#terminal-36 [...]
-</text><text class="terminal-3607011906-r4" x="0" y="483.6" textLength="1464" clip-path="url(#terminal-3607011906-line-19)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3607011906-r2" x="1464" y="483.6" textLength="12.2" clip-path="url(#terminal-3607011906-line-19)">
+    <g class="terminal-2891429275-matrix">
+    <text class="terminal-2891429275-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-2891429275-line-0)">
+</text><text class="terminal-2891429275-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-2891429275-line-1)">Usage:&#160;</text><text class="terminal-2891429275-r1" x="97.6" y="44.4" textLength="207.4" clip-path="url(#terminal-2891429275-line-1)">breeze&#160;k8s&#160;logs&#160;[</text><text class="terminal-2891429275-r4" x="305" y="44.4" textLength="85.4" clip-path="url(#terminal-2891429275-line-1)">OPTIONS</text><text class="terminal-2891429275-r1" x="390.4" y="44.4" tex [...]
+</text><text class="terminal-2891429275-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-2891429275-line-2)">
+</text><text class="terminal-2891429275-r2" x="12.2" y="93.2" textLength="231.8" clip-path="url(#terminal-2891429275-line-3)">Dump&#160;k8s&#160;logs&#160;to&#160;${</text><text class="terminal-2891429275-r4" x="244" y="93.2" textLength="85.4" clip-path="url(#terminal-2891429275-line-3)">TMP_DIR</text><text class="terminal-2891429275-r2" x="329.4" y="93.2" textLength="146.4" clip-path="url(#terminal-2891429275-line-3)">}/kind_logs_</text><text class="terminal-2891429275-r3" x="475.8" y=" [...]
+</text><text class="terminal-2891429275-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-2891429275-line-4)">
+</text><text class="terminal-2891429275-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-2891429275-line-5)">╭─</text><text class="terminal-2891429275-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-2891429275-line-5)">&#160;K8S&#160;logs&#160;flags&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2891429275-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-2 [...]
+</text><text class="terminal-2891429275-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-2891429275-line-6)">│</text><text class="terminal-2891429275-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-2891429275-line-6)">-</text><text class="terminal-2891429275-r4" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-2891429275-line-6)">-python</text><text class="terminal-2891429275-r6" x="292.8" y="166.4" textLength="24.4" clip-path="url(#terminal-2 [...]
+</text><text class="terminal-2891429275-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-2891429275-line-7)">│</text><text class="terminal-2891429275-r7" x="341.6" y="190.8" textLength="732" clip-path="url(#terminal-2891429275-line-7)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10&#160;|&#160;3.11)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;< [...]
+</text><text class="terminal-2891429275-r5" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-2891429275-line-8)">│</text><text class="terminal-2891429275-r5" x="341.6" y="215.2" textLength="732" clip-path="url(#terminal-2891429275-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-2891429275-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-2891429275-line-9)">│</text><text class="terminal-2891429275-r4" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-2891429275-line-9)">-</text><text class="terminal-2891429275-r4" x="36.6" y="239.6" textLength="134.2" clip-path="url(#terminal-2891429275-line-9)">-kubernetes</text><text class="terminal-2891429275-r4" x="170.8" y="239.6" textLength="97.6" clip-path="url(#termi [...]
+</text><text class="terminal-2891429275-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-2891429275-line-10)">│</text><text class="terminal-2891429275-r7" x="341.6" y="264" textLength="658.8" clip-path="url(#terminal-2891429275-line-10)">(&gt;v1.25.2&lt;&#160;|&#160;v1.24.6&#160;|&#160;v1.23.12&#160;|&#160;v1.22.15&#160;|&#160;v1.21.14)</text><text class="terminal-2891429275-r5" x="1451.8" y="264" textLength="12.2" clip-path="url(#terminal-2891429275-line-10)">│</text><text c [...]
+</text><text class="terminal-2891429275-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-2891429275-line-11)">│</text><text class="terminal-2891429275-r5" x="341.6" y="288.4" textLength="658.8" clip-path="url(#terminal-2891429275-line-11)">[default:&#160;v1.25.2]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-2891429275-r5" x="0" y="312.8" textLength="1464" clip-path="url(#terminal-2891429275-line-12)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2891429275-r2" x="1464" y="312.8" textLength="12.2" clip-path="url(#terminal-2891429275-line-12)">
+</text><text class="terminal-2891429275-r5" x="0" y="337.2" textLength="24.4" clip-path="url(#terminal-2891429275-line-13)">╭─</text><text class="terminal-2891429275-r5" x="24.4" y="337.2" textLength="1415.2" clip-path="url(#terminal-2891429275-line-13)">&#160;K8S&#160;multi-cluster&#160;flags&#160;───────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2891429275-r5" x="1439.6" y="337.2" textLength="24.4" clip-path="url(#te [...]
+</text><text class="terminal-2891429275-r5" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-2891429275-line-14)">│</text><text class="terminal-2891429275-r4" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-2891429275-line-14)">-</text><text class="terminal-2891429275-r4" x="36.6" y="361.6" textLength="48.8" clip-path="url(#terminal-2891429275-line-14)">-all</text><text class="terminal-2891429275-r2" x="134.2" y="361.6" textLength="390.4" clip-path="url(#terminal- [...]
+</text><text class="terminal-2891429275-r5" x="0" y="386" textLength="1464" clip-path="url(#terminal-2891429275-line-15)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2891429275-r2" x="1464" y="386" textLength="12.2" clip-path="url(#terminal-2891429275-line-15)">
+</text><text class="terminal-2891429275-r5" x="0" y="410.4" textLength="24.4" clip-path="url(#terminal-2891429275-line-16)">╭─</text><text class="terminal-2891429275-r5" x="24.4" y="410.4" textLength="1415.2" clip-path="url(#terminal-2891429275-line-16)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2891429275-r5" x="1439.6" y="410.4" textLength="24.4" clip-path="url(#termina [...]
+</text><text class="terminal-2891429275-r5" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-2891429275-line-17)">│</text><text class="terminal-2891429275-r4" x="24.4" y="434.8" textLength="12.2" clip-path="url(#terminal-2891429275-line-17)">-</text><text class="terminal-2891429275-r4" x="36.6" y="434.8" textLength="97.6" clip-path="url(#terminal-2891429275-line-17)">-verbose</text><text class="terminal-2891429275-r6" x="158.6" y="434.8" textLength="24.4" clip-path="url(#termin [...]
+</text><text class="terminal-2891429275-r5" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-2891429275-line-18)">│</text><text class="terminal-2891429275-r4" x="24.4" y="459.2" textLength="12.2" clip-path="url(#terminal-2891429275-line-18)">-</text><text class="terminal-2891429275-r4" x="36.6" y="459.2" textLength="48.8" clip-path="url(#terminal-2891429275-line-18)">-dry</text><text class="terminal-2891429275-r4" x="85.4" y="459.2" textLength="48.8" clip-path="url(#terminal-28 [...]
+</text><text class="terminal-2891429275-r5" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-2891429275-line-19)">│</text><text class="terminal-2891429275-r4" x="24.4" y="483.6" textLength="12.2" clip-path="url(#terminal-2891429275-line-19)">-</text><text class="terminal-2891429275-r4" x="36.6" y="483.6" textLength="61" clip-path="url(#terminal-2891429275-line-19)">-help</text><text class="terminal-2891429275-r6" x="158.6" y="483.6" textLength="24.4" clip-path="url(#terminal-28 [...]
+</text><text class="terminal-2891429275-r5" x="0" y="508" textLength="1464" clip-path="url(#terminal-2891429275-line-20)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2891429275-r2" x="1464" y="508" textLength="12.2" clip-path="url(#terminal-2891429275-line-20)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_k8s_run-complete-tests.svg b/images/breeze/output_k8s_run-complete-tests.svg
index 86640e9788..6078550853 100644
--- a/images/breeze/output_k8s_run-complete-tests.svg
+++ b/images/breeze/output_k8s_run-complete-tests.svg
@@ -1,4 +1,4 @@
-<svg class="rich-terminal" viewBox="0 0 1482 1196.8" xmlns="http://www.w3.org/2000/svg">
+<svg class="rich-terminal" viewBox="0 0 1482 1221.1999999999998" xmlns="http://www.w3.org/2000/svg">
     <!-- Generated with Rich https://www.textualize.io -->
     <style>
 
@@ -19,229 +19,233 @@
         font-weight: 700;
     }
 
-    .terminal-3184043361-matrix {
+    .terminal-3279534333-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-3184043361-title {
+    .terminal-3279534333-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-3184043361-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-3184043361-r2 { fill: #c5c8c6 }
-.terminal-3184043361-r3 { fill: #d0b344;font-weight: bold }
-.terminal-3184043361-r4 { fill: #868887 }
-.terminal-3184043361-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-3184043361-r6 { fill: #8d7b39 }
-.terminal-3184043361-r7 { fill: #98a84b;font-weight: bold }
+    .terminal-3279534333-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-3279534333-r2 { fill: #c5c8c6 }
+.terminal-3279534333-r3 { fill: #d0b344;font-weight: bold }
+.terminal-3279534333-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-3279534333-r5 { fill: #868887 }
+.terminal-3279534333-r6 { fill: #8d7b39 }
+.terminal-3279534333-r7 { fill: #98a84b;font-weight: bold }
     </style>
 
     <defs>
-    <clipPath id="terminal-3184043361-clip-terminal">
-      <rect x="0" y="0" width="1463.0" height="1145.8" />
+    <clipPath id="terminal-3279534333-clip-terminal">
+      <rect x="0" y="0" width="1463.0" height="1170.1999999999998" />
     </clipPath>
-    <clipPath id="terminal-3184043361-line-0">
+    <clipPath id="terminal-3279534333-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-1">
+<clipPath id="terminal-3279534333-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-2">
+<clipPath id="terminal-3279534333-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-3">
+<clipPath id="terminal-3279534333-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-4">
+<clipPath id="terminal-3279534333-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-5">
+<clipPath id="terminal-3279534333-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-6">
+<clipPath id="terminal-3279534333-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-7">
+<clipPath id="terminal-3279534333-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-8">
+<clipPath id="terminal-3279534333-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-9">
+<clipPath id="terminal-3279534333-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-10">
+<clipPath id="terminal-3279534333-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-11">
+<clipPath id="terminal-3279534333-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-12">
+<clipPath id="terminal-3279534333-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-13">
+<clipPath id="terminal-3279534333-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-14">
+<clipPath id="terminal-3279534333-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-15">
+<clipPath id="terminal-3279534333-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-16">
+<clipPath id="terminal-3279534333-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-17">
+<clipPath id="terminal-3279534333-line-17">
     <rect x="0" y="416.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-18">
+<clipPath id="terminal-3279534333-line-18">
     <rect x="0" y="440.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-19">
+<clipPath id="terminal-3279534333-line-19">
     <rect x="0" y="465.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-20">
+<clipPath id="terminal-3279534333-line-20">
     <rect x="0" y="489.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-21">
+<clipPath id="terminal-3279534333-line-21">
     <rect x="0" y="513.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-22">
+<clipPath id="terminal-3279534333-line-22">
     <rect x="0" y="538.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-23">
+<clipPath id="terminal-3279534333-line-23">
     <rect x="0" y="562.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-24">
+<clipPath id="terminal-3279534333-line-24">
     <rect x="0" y="587.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-25">
+<clipPath id="terminal-3279534333-line-25">
     <rect x="0" y="611.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-26">
+<clipPath id="terminal-3279534333-line-26">
     <rect x="0" y="635.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-27">
+<clipPath id="terminal-3279534333-line-27">
     <rect x="0" y="660.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-28">
+<clipPath id="terminal-3279534333-line-28">
     <rect x="0" y="684.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-29">
+<clipPath id="terminal-3279534333-line-29">
     <rect x="0" y="709.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-30">
+<clipPath id="terminal-3279534333-line-30">
     <rect x="0" y="733.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-31">
+<clipPath id="terminal-3279534333-line-31">
     <rect x="0" y="757.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-32">
+<clipPath id="terminal-3279534333-line-32">
     <rect x="0" y="782.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-33">
+<clipPath id="terminal-3279534333-line-33">
     <rect x="0" y="806.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-34">
+<clipPath id="terminal-3279534333-line-34">
     <rect x="0" y="831.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-35">
+<clipPath id="terminal-3279534333-line-35">
     <rect x="0" y="855.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-36">
+<clipPath id="terminal-3279534333-line-36">
     <rect x="0" y="879.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-37">
+<clipPath id="terminal-3279534333-line-37">
     <rect x="0" y="904.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-38">
+<clipPath id="terminal-3279534333-line-38">
     <rect x="0" y="928.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-39">
+<clipPath id="terminal-3279534333-line-39">
     <rect x="0" y="953.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-40">
+<clipPath id="terminal-3279534333-line-40">
     <rect x="0" y="977.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-41">
+<clipPath id="terminal-3279534333-line-41">
     <rect x="0" y="1001.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-42">
+<clipPath id="terminal-3279534333-line-42">
     <rect x="0" y="1026.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-43">
+<clipPath id="terminal-3279534333-line-43">
     <rect x="0" y="1050.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-44">
+<clipPath id="terminal-3279534333-line-44">
     <rect x="0" y="1075.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3184043361-line-45">
+<clipPath id="terminal-3279534333-line-45">
     <rect x="0" y="1099.5" width="1464" height="24.65"/>
             </clipPath>
+<clipPath id="terminal-3279534333-line-46">
+    <rect x="0" y="1123.9" width="1464" height="24.65"/>
+            </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="1194.8" rx="8"/><text class="terminal-3184043361-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;k8s&#160;run-complete-tests</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="1219.2" rx="8"/><text class="terminal-3279534333-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;k8s&#160;run-complete-tests</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-3184043361-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-3279534333-clip-terminal)">
     
-    <g class="terminal-3184043361-matrix">
-    <text class="terminal-3184043361-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-3184043361-line-0)">
-</text><text class="terminal-3184043361-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-3184043361-line-1)">Usage:&#160;</text><text class="terminal-3184043361-r1" x="97.6" y="44.4" textLength="658.8" clip-path="url(#terminal-3184043361-line-1)">breeze&#160;k8s&#160;run-complete-tests&#160;[OPTIONS]&#160;[TEST_ARGS]...</text><text class="terminal-3184043361-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-3184043361-line-1)">
-</text><text class="terminal-3184043361-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-3184043361-line-2)">
-</text><text class="terminal-3184043361-r2" x="12.2" y="93.2" textLength="1439.6" clip-path="url(#terminal-3184043361-line-3)">Run&#160;complete&#160;k8s&#160;tests&#160;consisting&#160;of:&#160;creating&#160;cluster,&#160;building&#160;and&#160;uploading&#160;image,&#160;deploying&#160;airflow,&#160;running&#160;tests</text><text class="terminal-3184043361-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-3184043361-line-3)">
-</text><text class="terminal-3184043361-r2" x="12.2" y="117.6" textLength="780.8" clip-path="url(#terminal-3184043361-line-4)">and&#160;deleting&#160;clusters&#160;(optionally&#160;for&#160;all&#160;clusters&#160;in&#160;parallel).</text><text class="terminal-3184043361-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-3184043361-line-4)">
-</text><text class="terminal-3184043361-r2" x="1464" y="142" textLength="12.2" clip-path="url(#terminal-3184043361-line-5)">
-</text><text class="terminal-3184043361-r4" x="0" y="166.4" textLength="24.4" clip-path="url(#terminal-3184043361-line-6)">╭─</text><text class="terminal-3184043361-r4" x="24.4" y="166.4" textLength="1415.2" clip-path="url(#terminal-3184043361-line-6)">&#160;K8S&#160;cluster&#160;creation&#160;flags&#160;────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3184043361-r4" x="1439.6" y="166.4" textLength="24.4" clip-path="url( [...]
-</text><text class="terminal-3184043361-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-3184043361-line-7)">│</text><text class="terminal-3184043361-r5" x="24.4" y="190.8" textLength="12.2" clip-path="url(#terminal-3184043361-line-7)">-</text><text class="terminal-3184043361-r5" x="36.6" y="190.8" textLength="73.2" clip-path="url(#terminal-3184043361-line-7)">-force</text><text class="terminal-3184043361-r5" x="109.8" y="190.8" textLength="207.4" clip-path="url(#terminal-3 [...]
-</text><text class="terminal-3184043361-r4" x="0" y="215.2" textLength="1464" clip-path="url(#terminal-3184043361-line-8)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3184043361-r2" x="1464" y="215.2" textLength="12.2" clip-path="url(#terminal-3184043361-line-8)">
-</text><text class="terminal-3184043361-r4" x="0" y="239.6" textLength="24.4" clip-path="url(#terminal-3184043361-line-9)">╭─</text><text class="terminal-3184043361-r4" x="24.4" y="239.6" textLength="1415.2" clip-path="url(#terminal-3184043361-line-9)">&#160;Airflow&#160;deploy&#160;flags&#160;──────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3184043361-r4" x="1439.6" y="239.6" textLength="24.4" clip-path="url(#term [...]
-</text><text class="terminal-3184043361-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-3184043361-line-10)">│</text><text class="terminal-3184043361-r5" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-3184043361-line-10)">-</text><text class="terminal-3184043361-r5" x="36.6" y="264" textLength="97.6" clip-path="url(#terminal-3184043361-line-10)">-upgrade</text><text class="terminal-3184043361-r2" x="341.6" y="264" textLength="549" clip-path="url(#terminal-318404 [...]
-</text><text class="terminal-3184043361-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-3184043361-line-11)">│</text><text class="terminal-3184043361-r5" x="24.4" y="288.4" textLength="12.2" clip-path="url(#terminal-3184043361-line-11)">-</text><text class="terminal-3184043361-r5" x="36.6" y="288.4" textLength="61" clip-path="url(#terminal-3184043361-line-11)">-wait</text><text class="terminal-3184043361-r5" x="97.6" y="288.4" textLength="195.2" clip-path="url(#terminal-31 [...]
-</text><text class="terminal-3184043361-r4" x="0" y="312.8" textLength="1464" clip-path="url(#terminal-3184043361-line-12)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3184043361-r2" x="1464" y="312.8" textLength="12.2" clip-path="url(#terminal-3184043361-line-12)">
-</text><text class="terminal-3184043361-r4" x="0" y="337.2" textLength="24.4" clip-path="url(#terminal-3184043361-line-13)">╭─</text><text class="terminal-3184043361-r4" x="24.4" y="337.2" textLength="1415.2" clip-path="url(#terminal-3184043361-line-13)">&#160;Build&#160;image&#160;flags&#160;─────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3184043361-r4" x="1439.6" y="337.2" textLength="24.4" clip-path="url(#te [...]
-</text><text class="terminal-3184043361-r4" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-3184043361-line-14)">│</text><text class="terminal-3184043361-r5" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-3184043361-line-14)">-</text><text class="terminal-3184043361-r5" x="36.6" y="361.6" textLength="97.6" clip-path="url(#terminal-3184043361-line-14)">-rebuild</text><text class="terminal-3184043361-r5" x="134.2" y="361.6" textLength="134.2" clip-path="url(#termi [...]
-</text><text class="terminal-3184043361-r4" x="0" y="386" textLength="12.2" clip-path="url(#terminal-3184043361-line-15)">│</text><text class="terminal-3184043361-r5" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-3184043361-line-15)">-</text><text class="terminal-3184043361-r5" x="36.6" y="386" textLength="73.2" clip-path="url(#terminal-3184043361-line-15)">-image</text><text class="terminal-3184043361-r5" x="109.8" y="386" textLength="48.8" clip-path="url(#terminal-3184043 [...]
-</text><text class="terminal-3184043361-r4" x="0" y="410.4" textLength="1464" clip-path="url(#terminal-3184043361-line-16)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3184043361-r2" x="1464" y="410.4" textLength="12.2" clip-path="url(#terminal-3184043361-line-16)">
-</text><text class="terminal-3184043361-r4" x="0" y="434.8" textLength="24.4" clip-path="url(#terminal-3184043361-line-17)">╭─</text><text class="terminal-3184043361-r4" x="24.4" y="434.8" textLength="1415.2" clip-path="url(#terminal-3184043361-line-17)">&#160;K8S&#160;tests&#160;flags&#160;───────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3184043361-r4" x="1439.6" y="434.8" textLength="24.4" clip-path="url(#te [...]
-</text><text class="terminal-3184043361-r4" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-3184043361-line-18)">│</text><text class="terminal-3184043361-r5" x="24.4" y="459.2" textLength="12.2" clip-path="url(#terminal-3184043361-line-18)">-</text><text class="terminal-3184043361-r5" x="36.6" y="459.2" textLength="85.4" clip-path="url(#terminal-3184043361-line-18)">-python</text><text class="terminal-3184043361-r7" x="292.8" y="459.2" textLength="24.4" clip-path="url(#termina [...]
-</text><text class="terminal-3184043361-r4" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-3184043361-line-19)">│</text><text class="terminal-3184043361-r4" x="341.6" y="483.6" textLength="732" clip-path="url(#terminal-3184043361-line-19)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-3184043361-r4" x="0" y="508" textLength="12.2" clip-path="url(#terminal-3184043361-line-20)">│</text><text class="terminal-3184043361-r5" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-3184043361-line-20)">-</text><text class="terminal-3184043361-r5" x="36.6" y="508" textLength="134.2" clip-path="url(#terminal-3184043361-line-20)">-kubernetes</text><text class="terminal-3184043361-r5" x="170.8" y="508" textLength="97.6" clip-path="url(#terminal-3 [...]
-</text><text class="terminal-3184043361-r4" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-3184043361-line-21)">│</text><text class="terminal-3184043361-r6" x="341.6" y="532.4" textLength="658.8" clip-path="url(#terminal-3184043361-line-21)">(&gt;v1.25.2&lt;&#160;|&#160;v1.24.6&#160;|&#160;v1.23.12&#160;|&#160;v1.22.15&#160;|&#160;v1.21.14)</text><text class="terminal-3184043361-r4" x="1451.8" y="532.4" textLength="12.2" clip-path="url(#terminal-3184043361-line-21)">│</text>< [...]
-</text><text class="terminal-3184043361-r4" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-3184043361-line-22)">│</text><text class="terminal-3184043361-r4" x="341.6" y="556.8" textLength="658.8" clip-path="url(#terminal-3184043361-line-22)">[default:&#160;v1.25.2]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-3184043361-r4" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-3184043361-line-23)">│</text><text class="terminal-3184043361-r5" x="24.4" y="581.2" textLength="12.2" clip-path="url(#terminal-3184043361-line-23)">-</text><text class="terminal-3184043361-r5" x="36.6" y="581.2" textLength="109.8" clip-path="url(#terminal-3184043361-line-23)">-executor</text><text class="terminal-3184043361-r2" x="341.6" y="581.2" textLength="1000.4" clip-path="url(#te [...]
-</text><text class="terminal-3184043361-r4" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-3184043361-line-24)">│</text><text class="terminal-3184043361-r6" x="341.6" y="605.6" textLength="1000.4" clip-path="url(#terminal-3184043361-line-24)">(&gt;KubernetesExecutor&lt;&#160;|&#160;CeleryExecutor&#160;|&#160;LocalExecutor&#160;|&#160;CeleryKubernetesExecutor)</text><text class="terminal-3184043361-r4" x="1451.8" y="605.6" textLength="12.2" clip-path="url(#terminal-3184043361- [...]
-</text><text class="terminal-3184043361-r4" x="0" y="630" textLength="12.2" clip-path="url(#terminal-3184043361-line-25)">│</text><text class="terminal-3184043361-r4" x="341.6" y="630" textLength="1000.4" clip-path="url(#terminal-3184043361-line-25)">[default:&#160;KubernetesExecutor]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
-</text><text class="terminal-3184043361-r4" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-3184043361-line-26)">│</text><text class="terminal-3184043361-r5" x="24.4" y="654.4" textLength="12.2" clip-path="url(#terminal-3184043361-line-26)">-</text><text class="terminal-3184043361-r5" x="36.6" y="654.4" textLength="73.2" clip-path="url(#terminal-3184043361-line-26)">-force</text><text class="terminal-3184043361-r5" x="109.8" y="654.4" textLength="134.2" clip-path="url(#termina [...]
-</text><text class="terminal-3184043361-r4" x="0" y="678.8" textLength="1464" clip-path="url(#terminal-3184043361-line-27)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3184043361-r2" x="1464" y="678.8" textLength="12.2" clip-path="url(#terminal-3184043361-line-27)">
-</text><text class="terminal-3184043361-r4" x="0" y="703.2" textLength="24.4" clip-path="url(#terminal-3184043361-line-28)">╭─</text><text class="terminal-3184043361-r4" x="24.4" y="703.2" textLength="1415.2" clip-path="url(#terminal-3184043361-line-28)">&#160;Parallel&#160;options&#160;──────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3184043361-r4" x="1439.6" y="703.2" textLength="24.4" clip-path="url(#termina [...]
-</text><text class="terminal-3184043361-r4" x="0" y="727.6" textLength="12.2" clip-path="url(#terminal-3184043361-line-29)">│</text><text class="terminal-3184043361-r5" x="24.4" y="727.6" textLength="12.2" clip-path="url(#terminal-3184043361-line-29)">-</text><text class="terminal-3184043361-r5" x="36.6" y="727.6" textLength="48.8" clip-path="url(#terminal-3184043361-line-29)">-run</text><text class="terminal-3184043361-r5" x="85.4" y="727.6" textLength="146.4" clip-path="url(#terminal-3 [...]
-</text><text class="terminal-3184043361-r4" x="0" y="752" textLength="12.2" clip-path="url(#terminal-3184043361-line-30)">│</text><text class="terminal-3184043361-r5" x="24.4" y="752" textLength="12.2" clip-path="url(#terminal-3184043361-line-30)">-</text><text class="terminal-3184043361-r5" x="36.6" y="752" textLength="146.4" clip-path="url(#terminal-3184043361-line-30)">-parallelism</text><text class="terminal-3184043361-r2" x="378.2" y="752" textLength="1061.4" clip-path="url(#termina [...]
-</text><text class="terminal-3184043361-r4" x="0" y="776.4" textLength="12.2" clip-path="url(#terminal-3184043361-line-31)">│</text><text class="terminal-3184043361-r2" x="378.2" y="776.4" textLength="1061.4" clip-path="url(#terminal-3184043361-line-31)">operations.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
-</text><text class="terminal-3184043361-r4" x="0" y="800.8" textLength="12.2" clip-path="url(#terminal-3184043361-line-32)">│</text><text class="terminal-3184043361-r6" x="378.2" y="800.8" textLength="1061.4" clip-path="url(#terminal-3184043361-line-32)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-3184043361-r4" x="0" y="825.2" textLength="12.2" clip-path="url(#terminal-3184043361-line-33)">│</text><text class="terminal-3184043361-r4" x="378.2" y="825.2" textLength="1061.4" clip-path="url(#terminal-3184043361-line-33)">[default:&#160;2;&#160;1&lt;=x&lt;=4]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
-</text><text class="terminal-3184043361-r4" x="0" y="849.6" textLength="12.2" clip-path="url(#terminal-3184043361-line-34)">│</text><text class="terminal-3184043361-r5" x="24.4" y="849.6" textLength="12.2" clip-path="url(#terminal-3184043361-line-34)">-</text><text class="terminal-3184043361-r5" x="36.6" y="849.6" textLength="85.4" clip-path="url(#terminal-3184043361-line-34)">-python</text><text class="terminal-3184043361-r5" x="122" y="849.6" textLength="109.8" clip-path="url(#terminal [...]
-</text><text class="terminal-3184043361-r4" x="0" y="874" textLength="12.2" clip-path="url(#terminal-3184043361-line-35)">│</text><text class="terminal-3184043361-r4" x="378.2" y="874" textLength="951.6" clip-path="url(#terminal-3184043361-line-35)">[default:&#160;3.7&#160;3.8&#160;3.9&#160;3.10]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
-</text><text class="terminal-3184043361-r4" x="0" y="898.4" textLength="12.2" clip-path="url(#terminal-3184043361-line-36)">│</text><text class="terminal-3184043361-r5" x="24.4" y="898.4" textLength="12.2" clip-path="url(#terminal-3184043361-line-36)">-</text><text class="terminal-3184043361-r5" x="36.6" y="898.4" textLength="134.2" clip-path="url(#terminal-3184043361-line-36)">-kubernetes</text><text class="terminal-3184043361-r5" x="170.8" y="898.4" textLength="109.8" clip-path="url(#t [...]
-</text><text class="terminal-3184043361-r4" x="0" y="922.8" textLength="12.2" clip-path="url(#terminal-3184043361-line-37)">│</text><text class="terminal-3184043361-r4" x="378.2" y="922.8" textLength="756.4" clip-path="url(#terminal-3184043361-line-37)">[default:&#160;v1.25.2&#160;v1.24.6&#160;v1.23.12&#160;v1.22.15&#160;v1.21.14]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-3184043361-r4" x="1451.8" y="922.8" textLength="12.2" clip-path="url(#termina [...]
-</text><text class="terminal-3184043361-r4" x="0" y="947.2" textLength="12.2" clip-path="url(#terminal-3184043361-line-38)">│</text><text class="terminal-3184043361-r5" x="24.4" y="947.2" textLength="12.2" clip-path="url(#terminal-3184043361-line-38)">-</text><text class="terminal-3184043361-r5" x="36.6" y="947.2" textLength="61" clip-path="url(#terminal-3184043361-line-38)">-skip</text><text class="terminal-3184043361-r5" x="97.6" y="947.2" textLength="97.6" clip-path="url(#terminal-318 [...]
-</text><text class="terminal-3184043361-r4" x="0" y="971.6" textLength="12.2" clip-path="url(#terminal-3184043361-line-39)">│</text><text class="terminal-3184043361-r5" x="24.4" y="971.6" textLength="12.2" clip-path="url(#terminal-3184043361-line-39)">-</text><text class="terminal-3184043361-r5" x="36.6" y="971.6" textLength="73.2" clip-path="url(#terminal-3184043361-line-39)">-debug</text><text class="terminal-3184043361-r5" x="109.8" y="971.6" textLength="122" clip-path="url(#terminal- [...]
-</text><text class="terminal-3184043361-r4" x="0" y="996" textLength="12.2" clip-path="url(#terminal-3184043361-line-40)">│</text><text class="terminal-3184043361-r5" x="24.4" y="996" textLength="12.2" clip-path="url(#terminal-3184043361-line-40)">-</text><text class="terminal-3184043361-r5" x="36.6" y="996" textLength="97.6" clip-path="url(#terminal-3184043361-line-40)">-include</text><text class="terminal-3184043361-r5" x="134.2" y="996" textLength="195.2" clip-path="url(#terminal-3184 [...]
-</text><text class="terminal-3184043361-r4" x="0" y="1020.4" textLength="1464" clip-path="url(#terminal-3184043361-line-41)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3184043361-r2" x="1464" y="1020.4" textLength="12.2" clip-path="url(#terminal-3184043361-line-41)">
-</text><text class="terminal-3184043361-r4" x="0" y="1044.8" textLength="24.4" clip-path="url(#terminal-3184043361-line-42)">╭─</text><text class="terminal-3184043361-r4" x="24.4" y="1044.8" textLength="1415.2" clip-path="url(#terminal-3184043361-line-42)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3184043361-r4" x="1439.6" y="1044.8" textLength="24.4" clip-path="url(#term [...]
-</text><text class="terminal-3184043361-r4" x="0" y="1069.2" textLength="12.2" clip-path="url(#terminal-3184043361-line-43)">│</text><text class="terminal-3184043361-r5" x="24.4" y="1069.2" textLength="12.2" clip-path="url(#terminal-3184043361-line-43)">-</text><text class="terminal-3184043361-r5" x="36.6" y="1069.2" textLength="97.6" clip-path="url(#terminal-3184043361-line-43)">-verbose</text><text class="terminal-3184043361-r7" x="158.6" y="1069.2" textLength="24.4" clip-path="url(#te [...]
-</text><text class="terminal-3184043361-r4" x="0" y="1093.6" textLength="12.2" clip-path="url(#terminal-3184043361-line-44)">│</text><text class="terminal-3184043361-r5" x="24.4" y="1093.6" textLength="12.2" clip-path="url(#terminal-3184043361-line-44)">-</text><text class="terminal-3184043361-r5" x="36.6" y="1093.6" textLength="48.8" clip-path="url(#terminal-3184043361-line-44)">-dry</text><text class="terminal-3184043361-r5" x="85.4" y="1093.6" textLength="48.8" clip-path="url(#termina [...]
-</text><text class="terminal-3184043361-r4" x="0" y="1118" textLength="12.2" clip-path="url(#terminal-3184043361-line-45)">│</text><text class="terminal-3184043361-r5" x="24.4" y="1118" textLength="12.2" clip-path="url(#terminal-3184043361-line-45)">-</text><text class="terminal-3184043361-r5" x="36.6" y="1118" textLength="61" clip-path="url(#terminal-3184043361-line-45)">-help</text><text class="terminal-3184043361-r7" x="158.6" y="1118" textLength="24.4" clip-path="url(#terminal-318404 [...]
-</text><text class="terminal-3184043361-r4" x="0" y="1142.4" textLength="1464" clip-path="url(#terminal-3184043361-line-46)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3184043361-r2" x="1464" y="1142.4" textLength="12.2" clip-path="url(#terminal-3184043361-line-46)">
+    <g class="terminal-3279534333-matrix">
+    <text class="terminal-3279534333-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-3279534333-line-0)">
+</text><text class="terminal-3279534333-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-3279534333-line-1)">Usage:&#160;</text><text class="terminal-3279534333-r1" x="97.6" y="44.4" textLength="378.2" clip-path="url(#terminal-3279534333-line-1)">breeze&#160;k8s&#160;run-complete-tests&#160;[</text><text class="terminal-3279534333-r4" x="475.8" y="44.4" textLength="85.4" clip-path="url(#terminal-3279534333-line-1)">OPTIONS</text><text class="terminal-3279534333-r1" x="561 [...]
+</text><text class="terminal-3279534333-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-3279534333-line-2)">
+</text><text class="terminal-3279534333-r2" x="12.2" y="93.2" textLength="1439.6" clip-path="url(#terminal-3279534333-line-3)">Run&#160;complete&#160;k8s&#160;tests&#160;consisting&#160;of:&#160;creating&#160;cluster,&#160;building&#160;and&#160;uploading&#160;image,&#160;deploying&#160;airflow,&#160;running&#160;tests</text><text class="terminal-3279534333-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-3279534333-line-3)">
+</text><text class="terminal-3279534333-r2" x="12.2" y="117.6" textLength="780.8" clip-path="url(#terminal-3279534333-line-4)">and&#160;deleting&#160;clusters&#160;(optionally&#160;for&#160;all&#160;clusters&#160;in&#160;parallel).</text><text class="terminal-3279534333-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-3279534333-line-4)">
+</text><text class="terminal-3279534333-r2" x="1464" y="142" textLength="12.2" clip-path="url(#terminal-3279534333-line-5)">
+</text><text class="terminal-3279534333-r5" x="0" y="166.4" textLength="24.4" clip-path="url(#terminal-3279534333-line-6)">╭─</text><text class="terminal-3279534333-r5" x="24.4" y="166.4" textLength="1415.2" clip-path="url(#terminal-3279534333-line-6)">&#160;K8S&#160;cluster&#160;creation&#160;flags&#160;────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3279534333-r5" x="1439.6" y="166.4" textLength="24.4" clip-path="url( [...]
+</text><text class="terminal-3279534333-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-3279534333-line-7)">│</text><text class="terminal-3279534333-r4" x="24.4" y="190.8" textLength="12.2" clip-path="url(#terminal-3279534333-line-7)">-</text><text class="terminal-3279534333-r4" x="36.6" y="190.8" textLength="73.2" clip-path="url(#terminal-3279534333-line-7)">-force</text><text class="terminal-3279534333-r4" x="109.8" y="190.8" textLength="207.4" clip-path="url(#terminal-3 [...]
+</text><text class="terminal-3279534333-r5" x="0" y="215.2" textLength="1464" clip-path="url(#terminal-3279534333-line-8)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3279534333-r2" x="1464" y="215.2" textLength="12.2" clip-path="url(#terminal-3279534333-line-8)">
+</text><text class="terminal-3279534333-r5" x="0" y="239.6" textLength="24.4" clip-path="url(#terminal-3279534333-line-9)">╭─</text><text class="terminal-3279534333-r5" x="24.4" y="239.6" textLength="1415.2" clip-path="url(#terminal-3279534333-line-9)">&#160;Airflow&#160;deploy&#160;flags&#160;──────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3279534333-r5" x="1439.6" y="239.6" textLength="24.4" clip-path="url(#term [...]
+</text><text class="terminal-3279534333-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-3279534333-line-10)">│</text><text class="terminal-3279534333-r4" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-3279534333-line-10)">-</text><text class="terminal-3279534333-r4" x="36.6" y="264" textLength="97.6" clip-path="url(#terminal-3279534333-line-10)">-upgrade</text><text class="terminal-3279534333-r2" x="341.6" y="264" textLength="549" clip-path="url(#terminal-327953 [...]
+</text><text class="terminal-3279534333-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-3279534333-line-11)">│</text><text class="terminal-3279534333-r4" x="24.4" y="288.4" textLength="12.2" clip-path="url(#terminal-3279534333-line-11)">-</text><text class="terminal-3279534333-r4" x="36.6" y="288.4" textLength="61" clip-path="url(#terminal-3279534333-line-11)">-wait</text><text class="terminal-3279534333-r4" x="97.6" y="288.4" textLength="195.2" clip-path="url(#terminal-32 [...]
+</text><text class="terminal-3279534333-r5" x="0" y="312.8" textLength="1464" clip-path="url(#terminal-3279534333-line-12)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3279534333-r2" x="1464" y="312.8" textLength="12.2" clip-path="url(#terminal-3279534333-line-12)">
+</text><text class="terminal-3279534333-r5" x="0" y="337.2" textLength="24.4" clip-path="url(#terminal-3279534333-line-13)">╭─</text><text class="terminal-3279534333-r5" x="24.4" y="337.2" textLength="1415.2" clip-path="url(#terminal-3279534333-line-13)">&#160;Build&#160;image&#160;flags&#160;─────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3279534333-r5" x="1439.6" y="337.2" textLength="24.4" clip-path="url(#te [...]
+</text><text class="terminal-3279534333-r5" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-3279534333-line-14)">│</text><text class="terminal-3279534333-r4" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-3279534333-line-14)">-</text><text class="terminal-3279534333-r4" x="36.6" y="361.6" textLength="97.6" clip-path="url(#terminal-3279534333-line-14)">-rebuild</text><text class="terminal-3279534333-r4" x="134.2" y="361.6" textLength="134.2" clip-path="url(#termi [...]
+</text><text class="terminal-3279534333-r5" x="0" y="386" textLength="12.2" clip-path="url(#terminal-3279534333-line-15)">│</text><text class="terminal-3279534333-r4" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-3279534333-line-15)">-</text><text class="terminal-3279534333-r4" x="36.6" y="386" textLength="73.2" clip-path="url(#terminal-3279534333-line-15)">-image</text><text class="terminal-3279534333-r4" x="109.8" y="386" textLength="48.8" clip-path="url(#terminal-3279534 [...]
+</text><text class="terminal-3279534333-r5" x="0" y="410.4" textLength="1464" clip-path="url(#terminal-3279534333-line-16)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3279534333-r2" x="1464" y="410.4" textLength="12.2" clip-path="url(#terminal-3279534333-line-16)">
+</text><text class="terminal-3279534333-r5" x="0" y="434.8" textLength="24.4" clip-path="url(#terminal-3279534333-line-17)">╭─</text><text class="terminal-3279534333-r5" x="24.4" y="434.8" textLength="1415.2" clip-path="url(#terminal-3279534333-line-17)">&#160;K8S&#160;tests&#160;flags&#160;───────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3279534333-r5" x="1439.6" y="434.8" textLength="24.4" clip-path="url(#te [...]
+</text><text class="terminal-3279534333-r5" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-3279534333-line-18)">│</text><text class="terminal-3279534333-r4" x="24.4" y="459.2" textLength="12.2" clip-path="url(#terminal-3279534333-line-18)">-</text><text class="terminal-3279534333-r4" x="36.6" y="459.2" textLength="85.4" clip-path="url(#terminal-3279534333-line-18)">-python</text><text class="terminal-3279534333-r7" x="292.8" y="459.2" textLength="24.4" clip-path="url(#termina [...]
+</text><text class="terminal-3279534333-r5" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-3279534333-line-19)">│</text><text class="terminal-3279534333-r6" x="341.6" y="483.6" textLength="732" clip-path="url(#terminal-3279534333-line-19)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10&#160;|&#160;3.11)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-3279534333-r5" x="0" y="508" textLength="12.2" clip-path="url(#terminal-3279534333-line-20)">│</text><text class="terminal-3279534333-r5" x="341.6" y="508" textLength="732" clip-path="url(#terminal-3279534333-line-20)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
+</text><text class="terminal-3279534333-r5" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-3279534333-line-21)">│</text><text class="terminal-3279534333-r4" x="24.4" y="532.4" textLength="12.2" clip-path="url(#terminal-3279534333-line-21)">-</text><text class="terminal-3279534333-r4" x="36.6" y="532.4" textLength="134.2" clip-path="url(#terminal-3279534333-line-21)">-kubernetes</text><text class="terminal-3279534333-r4" x="170.8" y="532.4" textLength="97.6" clip-path="url(#te [...]
+</text><text class="terminal-3279534333-r5" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-3279534333-line-22)">│</text><text class="terminal-3279534333-r6" x="341.6" y="556.8" textLength="658.8" clip-path="url(#terminal-3279534333-line-22)">(&gt;v1.25.2&lt;&#160;|&#160;v1.24.6&#160;|&#160;v1.23.12&#160;|&#160;v1.22.15&#160;|&#160;v1.21.14)</text><text class="terminal-3279534333-r5" x="1451.8" y="556.8" textLength="12.2" clip-path="url(#terminal-3279534333-line-22)">│</text>< [...]
+</text><text class="terminal-3279534333-r5" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-3279534333-line-23)">│</text><text class="terminal-3279534333-r5" x="341.6" y="581.2" textLength="658.8" clip-path="url(#terminal-3279534333-line-23)">[default:&#160;v1.25.2]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-3279534333-r5" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-3279534333-line-24)">│</text><text class="terminal-3279534333-r4" x="24.4" y="605.6" textLength="12.2" clip-path="url(#terminal-3279534333-line-24)">-</text><text class="terminal-3279534333-r4" x="36.6" y="605.6" textLength="109.8" clip-path="url(#terminal-3279534333-line-24)">-executor</text><text class="terminal-3279534333-r2" x="341.6" y="605.6" textLength="1000.4" clip-path="url(#te [...]
+</text><text class="terminal-3279534333-r5" x="0" y="630" textLength="12.2" clip-path="url(#terminal-3279534333-line-25)">│</text><text class="terminal-3279534333-r6" x="341.6" y="630" textLength="1000.4" clip-path="url(#terminal-3279534333-line-25)">(&gt;KubernetesExecutor&lt;&#160;|&#160;CeleryExecutor&#160;|&#160;LocalExecutor&#160;|&#160;CeleryKubernetesExecutor)</text><text class="terminal-3279534333-r5" x="1451.8" y="630" textLength="12.2" clip-path="url(#terminal-3279534333-line-2 [...]
+</text><text class="terminal-3279534333-r5" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-3279534333-line-26)">│</text><text class="terminal-3279534333-r5" x="341.6" y="654.4" textLength="1000.4" clip-path="url(#terminal-3279534333-line-26)">[default:&#160;KubernetesExecutor]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-3279534333-r5" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-3279534333-line-27)">│</text><text class="terminal-3279534333-r4" x="24.4" y="678.8" textLength="12.2" clip-path="url(#terminal-3279534333-line-27)">-</text><text class="terminal-3279534333-r4" x="36.6" y="678.8" textLength="73.2" clip-path="url(#terminal-3279534333-line-27)">-force</text><text class="terminal-3279534333-r4" x="109.8" y="678.8" textLength="134.2" clip-path="url(#termina [...]
+</text><text class="terminal-3279534333-r5" x="0" y="703.2" textLength="1464" clip-path="url(#terminal-3279534333-line-28)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3279534333-r2" x="1464" y="703.2" textLength="12.2" clip-path="url(#terminal-3279534333-line-28)">
+</text><text class="terminal-3279534333-r5" x="0" y="727.6" textLength="24.4" clip-path="url(#terminal-3279534333-line-29)">╭─</text><text class="terminal-3279534333-r5" x="24.4" y="727.6" textLength="1415.2" clip-path="url(#terminal-3279534333-line-29)">&#160;Parallel&#160;options&#160;──────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3279534333-r5" x="1439.6" y="727.6" textLength="24.4" clip-path="url(#termina [...]
+</text><text class="terminal-3279534333-r5" x="0" y="752" textLength="12.2" clip-path="url(#terminal-3279534333-line-30)">│</text><text class="terminal-3279534333-r4" x="24.4" y="752" textLength="12.2" clip-path="url(#terminal-3279534333-line-30)">-</text><text class="terminal-3279534333-r4" x="36.6" y="752" textLength="48.8" clip-path="url(#terminal-3279534333-line-30)">-run</text><text class="terminal-3279534333-r4" x="85.4" y="752" textLength="146.4" clip-path="url(#terminal-327953433 [...]
+</text><text class="terminal-3279534333-r5" x="0" y="776.4" textLength="12.2" clip-path="url(#terminal-3279534333-line-31)">│</text><text class="terminal-3279534333-r4" x="24.4" y="776.4" textLength="12.2" clip-path="url(#terminal-3279534333-line-31)">-</text><text class="terminal-3279534333-r4" x="36.6" y="776.4" textLength="146.4" clip-path="url(#terminal-3279534333-line-31)">-parallelism</text><text class="terminal-3279534333-r2" x="378.2" y="776.4" textLength="1061.4" clip-path="url( [...]
+</text><text class="terminal-3279534333-r5" x="0" y="800.8" textLength="12.2" clip-path="url(#terminal-3279534333-line-32)">│</text><text class="terminal-3279534333-r2" x="378.2" y="800.8" textLength="1061.4" clip-path="url(#terminal-3279534333-line-32)">operations.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
+</text><text class="terminal-3279534333-r5" x="0" y="825.2" textLength="12.2" clip-path="url(#terminal-3279534333-line-33)">│</text><text class="terminal-3279534333-r6" x="378.2" y="825.2" textLength="1061.4" clip-path="url(#terminal-3279534333-line-33)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-3279534333-r5" x="0" y="849.6" textLength="12.2" clip-path="url(#terminal-3279534333-line-34)">│</text><text class="terminal-3279534333-r5" x="378.2" y="849.6" textLength="1061.4" clip-path="url(#terminal-3279534333-line-34)">[default:&#160;2;&#160;1&lt;=x&lt;=4]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
+</text><text class="terminal-3279534333-r5" x="0" y="874" textLength="12.2" clip-path="url(#terminal-3279534333-line-35)">│</text><text class="terminal-3279534333-r4" x="24.4" y="874" textLength="12.2" clip-path="url(#terminal-3279534333-line-35)">-</text><text class="terminal-3279534333-r4" x="36.6" y="874" textLength="85.4" clip-path="url(#terminal-3279534333-line-35)">-python</text><text class="terminal-3279534333-r4" x="122" y="874" textLength="109.8" clip-path="url(#terminal-3279534 [...]
+</text><text class="terminal-3279534333-r5" x="0" y="898.4" textLength="12.2" clip-path="url(#terminal-3279534333-line-36)">│</text><text class="terminal-3279534333-r5" x="378.2" y="898.4" textLength="951.6" clip-path="url(#terminal-3279534333-line-36)">[default:&#160;3.7&#160;3.8&#160;3.9&#160;3.10&#160;3.11]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-3279534333-r5" x="0" y="922.8" textLength="12.2" clip-path="url(#terminal-3279534333-line-37)">│</text><text class="terminal-3279534333-r4" x="24.4" y="922.8" textLength="12.2" clip-path="url(#terminal-3279534333-line-37)">-</text><text class="terminal-3279534333-r4" x="36.6" y="922.8" textLength="134.2" clip-path="url(#terminal-3279534333-line-37)">-kubernetes</text><text class="terminal-3279534333-r4" x="170.8" y="922.8" textLength="109.8" clip-path="url(#t [...]
+</text><text class="terminal-3279534333-r5" x="0" y="947.2" textLength="12.2" clip-path="url(#terminal-3279534333-line-38)">│</text><text class="terminal-3279534333-r5" x="378.2" y="947.2" textLength="756.4" clip-path="url(#terminal-3279534333-line-38)">[default:&#160;v1.25.2&#160;v1.24.6&#160;v1.23.12&#160;v1.22.15&#160;v1.21.14]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-3279534333-r5" x="1451.8" y="947.2" textLength="12.2" clip-path="url(#termina [...]
+</text><text class="terminal-3279534333-r5" x="0" y="971.6" textLength="12.2" clip-path="url(#terminal-3279534333-line-39)">│</text><text class="terminal-3279534333-r4" x="24.4" y="971.6" textLength="12.2" clip-path="url(#terminal-3279534333-line-39)">-</text><text class="terminal-3279534333-r4" x="36.6" y="971.6" textLength="61" clip-path="url(#terminal-3279534333-line-39)">-skip</text><text class="terminal-3279534333-r4" x="97.6" y="971.6" textLength="97.6" clip-path="url(#terminal-327 [...]
+</text><text class="terminal-3279534333-r5" x="0" y="996" textLength="12.2" clip-path="url(#terminal-3279534333-line-40)">│</text><text class="terminal-3279534333-r4" x="24.4" y="996" textLength="12.2" clip-path="url(#terminal-3279534333-line-40)">-</text><text class="terminal-3279534333-r4" x="36.6" y="996" textLength="73.2" clip-path="url(#terminal-3279534333-line-40)">-debug</text><text class="terminal-3279534333-r4" x="109.8" y="996" textLength="122" clip-path="url(#terminal-32795343 [...]
+</text><text class="terminal-3279534333-r5" x="0" y="1020.4" textLength="12.2" clip-path="url(#terminal-3279534333-line-41)">│</text><text class="terminal-3279534333-r4" x="24.4" y="1020.4" textLength="12.2" clip-path="url(#terminal-3279534333-line-41)">-</text><text class="terminal-3279534333-r4" x="36.6" y="1020.4" textLength="97.6" clip-path="url(#terminal-3279534333-line-41)">-include</text><text class="terminal-3279534333-r4" x="134.2" y="1020.4" textLength="195.2" clip-path="url(#t [...]
+</text><text class="terminal-3279534333-r5" x="0" y="1044.8" textLength="1464" clip-path="url(#terminal-3279534333-line-42)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3279534333-r2" x="1464" y="1044.8" textLength="12.2" clip-path="url(#terminal-3279534333-line-42)">
+</text><text class="terminal-3279534333-r5" x="0" y="1069.2" textLength="24.4" clip-path="url(#terminal-3279534333-line-43)">╭─</text><text class="terminal-3279534333-r5" x="24.4" y="1069.2" textLength="1415.2" clip-path="url(#terminal-3279534333-line-43)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3279534333-r5" x="1439.6" y="1069.2" textLength="24.4" clip-path="url(#term [...]
+</text><text class="terminal-3279534333-r5" x="0" y="1093.6" textLength="12.2" clip-path="url(#terminal-3279534333-line-44)">│</text><text class="terminal-3279534333-r4" x="24.4" y="1093.6" textLength="12.2" clip-path="url(#terminal-3279534333-line-44)">-</text><text class="terminal-3279534333-r4" x="36.6" y="1093.6" textLength="97.6" clip-path="url(#terminal-3279534333-line-44)">-verbose</text><text class="terminal-3279534333-r7" x="158.6" y="1093.6" textLength="24.4" clip-path="url(#te [...]
+</text><text class="terminal-3279534333-r5" x="0" y="1118" textLength="12.2" clip-path="url(#terminal-3279534333-line-45)">│</text><text class="terminal-3279534333-r4" x="24.4" y="1118" textLength="12.2" clip-path="url(#terminal-3279534333-line-45)">-</text><text class="terminal-3279534333-r4" x="36.6" y="1118" textLength="48.8" clip-path="url(#terminal-3279534333-line-45)">-dry</text><text class="terminal-3279534333-r4" x="85.4" y="1118" textLength="48.8" clip-path="url(#terminal-327953 [...]
+</text><text class="terminal-3279534333-r5" x="0" y="1142.4" textLength="12.2" clip-path="url(#terminal-3279534333-line-46)">│</text><text class="terminal-3279534333-r4" x="24.4" y="1142.4" textLength="12.2" clip-path="url(#terminal-3279534333-line-46)">-</text><text class="terminal-3279534333-r4" x="36.6" y="1142.4" textLength="61" clip-path="url(#terminal-3279534333-line-46)">-help</text><text class="terminal-3279534333-r7" x="158.6" y="1142.4" textLength="24.4" clip-path="url(#termina [...]
+</text><text class="terminal-3279534333-r5" x="0" y="1166.8" textLength="1464" clip-path="url(#terminal-3279534333-line-47)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3279534333-r2" x="1464" y="1166.8" textLength="12.2" clip-path="url(#terminal-3279534333-line-47)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_k8s_shell.svg b/images/breeze/output_k8s_shell.svg
index 72affc4790..33e99f9580 100644
--- a/images/breeze/output_k8s_shell.svg
+++ b/images/breeze/output_k8s_shell.svg
@@ -1,4 +1,4 @@
-<svg class="rich-terminal" viewBox="0 0 1482 562.4" xmlns="http://www.w3.org/2000/svg">
+<svg class="rich-terminal" viewBox="0 0 1482 586.8" xmlns="http://www.w3.org/2000/svg">
     <!-- Generated with Rich https://www.textualize.io -->
     <style>
 
@@ -19,125 +19,129 @@
         font-weight: 700;
     }
 
-    .terminal-2165789067-matrix {
+    .terminal-701981924-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-2165789067-title {
+    .terminal-701981924-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-2165789067-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-2165789067-r2 { fill: #c5c8c6 }
-.terminal-2165789067-r3 { fill: #d0b344;font-weight: bold }
-.terminal-2165789067-r4 { fill: #868887 }
-.terminal-2165789067-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-2165789067-r6 { fill: #98a84b;font-weight: bold }
-.terminal-2165789067-r7 { fill: #8d7b39 }
+    .terminal-701981924-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-701981924-r2 { fill: #c5c8c6 }
+.terminal-701981924-r3 { fill: #d0b344;font-weight: bold }
+.terminal-701981924-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-701981924-r5 { fill: #868887 }
+.terminal-701981924-r6 { fill: #98a84b;font-weight: bold }
+.terminal-701981924-r7 { fill: #8d7b39 }
     </style>
 
     <defs>
-    <clipPath id="terminal-2165789067-clip-terminal">
-      <rect x="0" y="0" width="1463.0" height="511.4" />
+    <clipPath id="terminal-701981924-clip-terminal">
+      <rect x="0" y="0" width="1463.0" height="535.8" />
     </clipPath>
-    <clipPath id="terminal-2165789067-line-0">
+    <clipPath id="terminal-701981924-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2165789067-line-1">
+<clipPath id="terminal-701981924-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2165789067-line-2">
+<clipPath id="terminal-701981924-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2165789067-line-3">
+<clipPath id="terminal-701981924-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2165789067-line-4">
+<clipPath id="terminal-701981924-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2165789067-line-5">
+<clipPath id="terminal-701981924-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2165789067-line-6">
+<clipPath id="terminal-701981924-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2165789067-line-7">
+<clipPath id="terminal-701981924-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2165789067-line-8">
+<clipPath id="terminal-701981924-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2165789067-line-9">
+<clipPath id="terminal-701981924-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2165789067-line-10">
+<clipPath id="terminal-701981924-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2165789067-line-11">
+<clipPath id="terminal-701981924-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2165789067-line-12">
+<clipPath id="terminal-701981924-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2165789067-line-13">
+<clipPath id="terminal-701981924-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2165789067-line-14">
+<clipPath id="terminal-701981924-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2165789067-line-15">
+<clipPath id="terminal-701981924-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2165789067-line-16">
+<clipPath id="terminal-701981924-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2165789067-line-17">
+<clipPath id="terminal-701981924-line-17">
     <rect x="0" y="416.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2165789067-line-18">
+<clipPath id="terminal-701981924-line-18">
     <rect x="0" y="440.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2165789067-line-19">
+<clipPath id="terminal-701981924-line-19">
     <rect x="0" y="465.1" width="1464" height="24.65"/>
             </clipPath>
+<clipPath id="terminal-701981924-line-20">
+    <rect x="0" y="489.5" width="1464" height="24.65"/>
+            </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="560.4" rx="8"/><text class="terminal-2165789067-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;k8s&#160;shell</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="584.8" rx="8"/><text class="terminal-701981924-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;k8s&#160;shell</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-2165789067-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-701981924-clip-terminal)">
     
-    <g class="terminal-2165789067-matrix">
-    <text class="terminal-2165789067-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-2165789067-line-0)">
-</text><text class="terminal-2165789067-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-2165789067-line-1)">Usage:&#160;</text><text class="terminal-2165789067-r1" x="97.6" y="44.4" textLength="512.4" clip-path="url(#terminal-2165789067-line-1)">breeze&#160;k8s&#160;shell&#160;[OPTIONS]&#160;[SHELL_ARGS]...</text><text class="terminal-2165789067-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-2165789067-line-1)">
-</text><text class="terminal-2165789067-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-2165789067-line-2)">
-</text><text class="terminal-2165789067-r2" x="12.2" y="93.2" textLength="622.2" clip-path="url(#terminal-2165789067-line-3)">Run&#160;shell&#160;environment&#160;for&#160;the&#160;current&#160;KinD&#160;cluster.</text><text class="terminal-2165789067-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-2165789067-line-3)">
-</text><text class="terminal-2165789067-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-2165789067-line-4)">
-</text><text class="terminal-2165789067-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-2165789067-line-5)">╭─</text><text class="terminal-2165789067-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-2165789067-line-5)">&#160;K8S&#160;shell&#160;flags&#160;───────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2165789067-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-2 [...]
-</text><text class="terminal-2165789067-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-2165789067-line-6)">│</text><text class="terminal-2165789067-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-2165789067-line-6)">-</text><text class="terminal-2165789067-r5" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-2165789067-line-6)">-python</text><text class="terminal-2165789067-r6" x="292.8" y="166.4" textLength="24.4" clip-path="url(#terminal-2 [...]
-</text><text class="terminal-2165789067-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-2165789067-line-7)">│</text><text class="terminal-2165789067-r4" x="341.6" y="190.8" textLength="732" clip-path="url(#terminal-2165789067-line-7)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-2165789067-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-2165789067-line-8)">│</text><text class="terminal-2165789067-r5" x="24.4" y="215.2" textLength="12.2" clip-path="url(#terminal-2165789067-line-8)">-</text><text class="terminal-2165789067-r5" x="36.6" y="215.2" textLength="134.2" clip-path="url(#terminal-2165789067-line-8)">-kubernetes</text><text class="terminal-2165789067-r5" x="170.8" y="215.2" textLength="97.6" clip-path="url(#termi [...]
-</text><text class="terminal-2165789067-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-2165789067-line-9)">│</text><text class="terminal-2165789067-r7" x="341.6" y="239.6" textLength="658.8" clip-path="url(#terminal-2165789067-line-9)">(&gt;v1.25.2&lt;&#160;|&#160;v1.24.6&#160;|&#160;v1.23.12&#160;|&#160;v1.22.15&#160;|&#160;v1.21.14)</text><text class="terminal-2165789067-r4" x="1451.8" y="239.6" textLength="12.2" clip-path="url(#terminal-2165789067-line-9)">│</text><tex [...]
-</text><text class="terminal-2165789067-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-2165789067-line-10)">│</text><text class="terminal-2165789067-r4" x="341.6" y="264" textLength="658.8" clip-path="url(#terminal-2165789067-line-10)">[default:&#160;v1.25.2]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</t [...]
-</text><text class="terminal-2165789067-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-2165789067-line-11)">│</text><text class="terminal-2165789067-r5" x="24.4" y="288.4" textLength="12.2" clip-path="url(#terminal-2165789067-line-11)">-</text><text class="terminal-2165789067-r5" x="36.6" y="288.4" textLength="109.8" clip-path="url(#terminal-2165789067-line-11)">-executor</text><text class="terminal-2165789067-r2" x="341.6" y="288.4" textLength="1000.4" clip-path="url(#te [...]
-</text><text class="terminal-2165789067-r4" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-2165789067-line-12)">│</text><text class="terminal-2165789067-r7" x="341.6" y="312.8" textLength="1000.4" clip-path="url(#terminal-2165789067-line-12)">(&gt;KubernetesExecutor&lt;&#160;|&#160;CeleryExecutor&#160;|&#160;LocalExecutor&#160;|&#160;CeleryKubernetesExecutor)</text><text class="terminal-2165789067-r4" x="1451.8" y="312.8" textLength="12.2" clip-path="url(#terminal-2165789067- [...]
-</text><text class="terminal-2165789067-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-2165789067-line-13)">│</text><text class="terminal-2165789067-r4" x="341.6" y="337.2" textLength="1000.4" clip-path="url(#terminal-2165789067-line-13)">[default:&#160;KubernetesExecutor]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-2165789067-r4" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-2165789067-line-14)">│</text><text class="terminal-2165789067-r5" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-2165789067-line-14)">-</text><text class="terminal-2165789067-r5" x="36.6" y="361.6" textLength="73.2" clip-path="url(#terminal-2165789067-line-14)">-force</text><text class="terminal-2165789067-r5" x="109.8" y="361.6" textLength="134.2" clip-path="url(#termina [...]
-</text><text class="terminal-2165789067-r4" x="0" y="386" textLength="1464" clip-path="url(#terminal-2165789067-line-15)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2165789067-r2" x="1464" y="386" textLength="12.2" clip-path="url(#terminal-2165789067-line-15)">
-</text><text class="terminal-2165789067-r4" x="0" y="410.4" textLength="24.4" clip-path="url(#terminal-2165789067-line-16)">╭─</text><text class="terminal-2165789067-r4" x="24.4" y="410.4" textLength="1415.2" clip-path="url(#terminal-2165789067-line-16)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2165789067-r4" x="1439.6" y="410.4" textLength="24.4" clip-path="url(#termina [...]
-</text><text class="terminal-2165789067-r4" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-2165789067-line-17)">│</text><text class="terminal-2165789067-r5" x="24.4" y="434.8" textLength="12.2" clip-path="url(#terminal-2165789067-line-17)">-</text><text class="terminal-2165789067-r5" x="36.6" y="434.8" textLength="97.6" clip-path="url(#terminal-2165789067-line-17)">-verbose</text><text class="terminal-2165789067-r6" x="158.6" y="434.8" textLength="24.4" clip-path="url(#termin [...]
-</text><text class="terminal-2165789067-r4" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-2165789067-line-18)">│</text><text class="terminal-2165789067-r5" x="24.4" y="459.2" textLength="12.2" clip-path="url(#terminal-2165789067-line-18)">-</text><text class="terminal-2165789067-r5" x="36.6" y="459.2" textLength="48.8" clip-path="url(#terminal-2165789067-line-18)">-dry</text><text class="terminal-2165789067-r5" x="85.4" y="459.2" textLength="48.8" clip-path="url(#terminal-21 [...]
-</text><text class="terminal-2165789067-r4" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-2165789067-line-19)">│</text><text class="terminal-2165789067-r5" x="24.4" y="483.6" textLength="12.2" clip-path="url(#terminal-2165789067-line-19)">-</text><text class="terminal-2165789067-r5" x="36.6" y="483.6" textLength="61" clip-path="url(#terminal-2165789067-line-19)">-help</text><text class="terminal-2165789067-r6" x="158.6" y="483.6" textLength="24.4" clip-path="url(#terminal-21 [...]
-</text><text class="terminal-2165789067-r4" x="0" y="508" textLength="1464" clip-path="url(#terminal-2165789067-line-20)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2165789067-r2" x="1464" y="508" textLength="12.2" clip-path="url(#terminal-2165789067-line-20)">
+    <g class="terminal-701981924-matrix">
+    <text class="terminal-701981924-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-701981924-line-0)">
+</text><text class="terminal-701981924-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-701981924-line-1)">Usage:&#160;</text><text class="terminal-701981924-r1" x="97.6" y="44.4" textLength="219.6" clip-path="url(#terminal-701981924-line-1)">breeze&#160;k8s&#160;shell&#160;[</text><text class="terminal-701981924-r4" x="317.2" y="44.4" textLength="85.4" clip-path="url(#terminal-701981924-line-1)">OPTIONS</text><text class="terminal-701981924-r1" x="402.6" y="44.4" textLen [...]
+</text><text class="terminal-701981924-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-701981924-line-2)">
+</text><text class="terminal-701981924-r2" x="12.2" y="93.2" textLength="622.2" clip-path="url(#terminal-701981924-line-3)">Run&#160;shell&#160;environment&#160;for&#160;the&#160;current&#160;KinD&#160;cluster.</text><text class="terminal-701981924-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-701981924-line-3)">
+</text><text class="terminal-701981924-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-701981924-line-4)">
+</text><text class="terminal-701981924-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-701981924-line-5)">╭─</text><text class="terminal-701981924-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-701981924-line-5)">&#160;K8S&#160;shell&#160;flags&#160;───────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-701981924-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-701981 [...]
+</text><text class="terminal-701981924-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-701981924-line-6)">│</text><text class="terminal-701981924-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-701981924-line-6)">-</text><text class="terminal-701981924-r4" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-701981924-line-6)">-python</text><text class="terminal-701981924-r6" x="292.8" y="166.4" textLength="24.4" clip-path="url(#terminal-70198192 [...]
+</text><text class="terminal-701981924-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-701981924-line-7)">│</text><text class="terminal-701981924-r7" x="341.6" y="190.8" textLength="732" clip-path="url(#terminal-701981924-line-7)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10&#160;|&#160;3.11)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</tex [...]
+</text><text class="terminal-701981924-r5" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-701981924-line-8)">│</text><text class="terminal-701981924-r5" x="341.6" y="215.2" textLength="732" clip-path="url(#terminal-701981924-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-701981924-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-701981924-line-9)">│</text><text class="terminal-701981924-r4" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-701981924-line-9)">-</text><text class="terminal-701981924-r4" x="36.6" y="239.6" textLength="134.2" clip-path="url(#terminal-701981924-line-9)">-kubernetes</text><text class="terminal-701981924-r4" x="170.8" y="239.6" textLength="97.6" clip-path="url(#terminal-701 [...]
+</text><text class="terminal-701981924-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-701981924-line-10)">│</text><text class="terminal-701981924-r7" x="341.6" y="264" textLength="658.8" clip-path="url(#terminal-701981924-line-10)">(&gt;v1.25.2&lt;&#160;|&#160;v1.24.6&#160;|&#160;v1.23.12&#160;|&#160;v1.22.15&#160;|&#160;v1.21.14)</text><text class="terminal-701981924-r5" x="1451.8" y="264" textLength="12.2" clip-path="url(#terminal-701981924-line-10)">│</text><text class=" [...]
+</text><text class="terminal-701981924-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-701981924-line-11)">│</text><text class="terminal-701981924-r5" x="341.6" y="288.4" textLength="658.8" clip-path="url(#terminal-701981924-line-11)">[default:&#160;v1.25.2]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</t [...]
+</text><text class="terminal-701981924-r5" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-701981924-line-12)">│</text><text class="terminal-701981924-r4" x="24.4" y="312.8" textLength="12.2" clip-path="url(#terminal-701981924-line-12)">-</text><text class="terminal-701981924-r4" x="36.6" y="312.8" textLength="109.8" clip-path="url(#terminal-701981924-line-12)">-executor</text><text class="terminal-701981924-r2" x="341.6" y="312.8" textLength="1000.4" clip-path="url(#terminal- [...]
+</text><text class="terminal-701981924-r5" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-701981924-line-13)">│</text><text class="terminal-701981924-r7" x="341.6" y="337.2" textLength="1000.4" clip-path="url(#terminal-701981924-line-13)">(&gt;KubernetesExecutor&lt;&#160;|&#160;CeleryExecutor&#160;|&#160;LocalExecutor&#160;|&#160;CeleryKubernetesExecutor)</text><text class="terminal-701981924-r5" x="1451.8" y="337.2" textLength="12.2" clip-path="url(#terminal-701981924-line-1 [...]
+</text><text class="terminal-701981924-r5" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-701981924-line-14)">│</text><text class="terminal-701981924-r5" x="341.6" y="361.6" textLength="1000.4" clip-path="url(#terminal-701981924-line-14)">[default:&#160;KubernetesExecutor]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
+</text><text class="terminal-701981924-r5" x="0" y="386" textLength="12.2" clip-path="url(#terminal-701981924-line-15)">│</text><text class="terminal-701981924-r4" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-701981924-line-15)">-</text><text class="terminal-701981924-r4" x="36.6" y="386" textLength="73.2" clip-path="url(#terminal-701981924-line-15)">-force</text><text class="terminal-701981924-r4" x="109.8" y="386" textLength="134.2" clip-path="url(#terminal-701981924-lin [...]
+</text><text class="terminal-701981924-r5" x="0" y="410.4" textLength="1464" clip-path="url(#terminal-701981924-line-16)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-701981924-r2" x="1464" y="410.4" textLength="12.2" clip-path="url(#terminal-701981924-line-16)">
+</text><text class="terminal-701981924-r5" x="0" y="434.8" textLength="24.4" clip-path="url(#terminal-701981924-line-17)">╭─</text><text class="terminal-701981924-r5" x="24.4" y="434.8" textLength="1415.2" clip-path="url(#terminal-701981924-line-17)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-701981924-r5" x="1439.6" y="434.8" textLength="24.4" clip-path="url(#terminal-701 [...]
+</text><text class="terminal-701981924-r5" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-701981924-line-18)">│</text><text class="terminal-701981924-r4" x="24.4" y="459.2" textLength="12.2" clip-path="url(#terminal-701981924-line-18)">-</text><text class="terminal-701981924-r4" x="36.6" y="459.2" textLength="97.6" clip-path="url(#terminal-701981924-line-18)">-verbose</text><text class="terminal-701981924-r6" x="158.6" y="459.2" textLength="24.4" clip-path="url(#terminal-7019 [...]
+</text><text class="terminal-701981924-r5" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-701981924-line-19)">│</text><text class="terminal-701981924-r4" x="24.4" y="483.6" textLength="12.2" clip-path="url(#terminal-701981924-line-19)">-</text><text class="terminal-701981924-r4" x="36.6" y="483.6" textLength="48.8" clip-path="url(#terminal-701981924-line-19)">-dry</text><text class="terminal-701981924-r4" x="85.4" y="483.6" textLength="48.8" clip-path="url(#terminal-701981924 [...]
+</text><text class="terminal-701981924-r5" x="0" y="508" textLength="12.2" clip-path="url(#terminal-701981924-line-20)">│</text><text class="terminal-701981924-r4" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-701981924-line-20)">-</text><text class="terminal-701981924-r4" x="36.6" y="508" textLength="61" clip-path="url(#terminal-701981924-line-20)">-help</text><text class="terminal-701981924-r6" x="158.6" y="508" textLength="24.4" clip-path="url(#terminal-701981924-line-20 [...]
+</text><text class="terminal-701981924-r5" x="0" y="532.4" textLength="1464" clip-path="url(#terminal-701981924-line-21)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-701981924-r2" x="1464" y="532.4" textLength="12.2" clip-path="url(#terminal-701981924-line-21)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_k8s_status.svg b/images/breeze/output_k8s_status.svg
index 894a5d2956..fae2eef401 100644
--- a/images/breeze/output_k8s_status.svg
+++ b/images/breeze/output_k8s_status.svg
@@ -1,4 +1,4 @@
-<svg class="rich-terminal" viewBox="0 0 1482 562.4" xmlns="http://www.w3.org/2000/svg">
+<svg class="rich-terminal" viewBox="0 0 1482 586.8" xmlns="http://www.w3.org/2000/svg">
     <!-- Generated with Rich https://www.textualize.io -->
     <style>
 
@@ -19,125 +19,129 @@
         font-weight: 700;
     }
 
-    .terminal-1706343755-matrix {
+    .terminal-3115503780-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-1706343755-title {
+    .terminal-3115503780-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-1706343755-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-1706343755-r2 { fill: #c5c8c6 }
-.terminal-1706343755-r3 { fill: #d0b344;font-weight: bold }
-.terminal-1706343755-r4 { fill: #868887 }
-.terminal-1706343755-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-1706343755-r6 { fill: #98a84b;font-weight: bold }
-.terminal-1706343755-r7 { fill: #8d7b39 }
+    .terminal-3115503780-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-3115503780-r2 { fill: #c5c8c6 }
+.terminal-3115503780-r3 { fill: #d0b344;font-weight: bold }
+.terminal-3115503780-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-3115503780-r5 { fill: #868887 }
+.terminal-3115503780-r6 { fill: #98a84b;font-weight: bold }
+.terminal-3115503780-r7 { fill: #8d7b39 }
     </style>
 
     <defs>
-    <clipPath id="terminal-1706343755-clip-terminal">
-      <rect x="0" y="0" width="1463.0" height="511.4" />
+    <clipPath id="terminal-3115503780-clip-terminal">
+      <rect x="0" y="0" width="1463.0" height="535.8" />
     </clipPath>
-    <clipPath id="terminal-1706343755-line-0">
+    <clipPath id="terminal-3115503780-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1706343755-line-1">
+<clipPath id="terminal-3115503780-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1706343755-line-2">
+<clipPath id="terminal-3115503780-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1706343755-line-3">
+<clipPath id="terminal-3115503780-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1706343755-line-4">
+<clipPath id="terminal-3115503780-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1706343755-line-5">
+<clipPath id="terminal-3115503780-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1706343755-line-6">
+<clipPath id="terminal-3115503780-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1706343755-line-7">
+<clipPath id="terminal-3115503780-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1706343755-line-8">
+<clipPath id="terminal-3115503780-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1706343755-line-9">
+<clipPath id="terminal-3115503780-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1706343755-line-10">
+<clipPath id="terminal-3115503780-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1706343755-line-11">
+<clipPath id="terminal-3115503780-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1706343755-line-12">
+<clipPath id="terminal-3115503780-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1706343755-line-13">
+<clipPath id="terminal-3115503780-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1706343755-line-14">
+<clipPath id="terminal-3115503780-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1706343755-line-15">
+<clipPath id="terminal-3115503780-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1706343755-line-16">
+<clipPath id="terminal-3115503780-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1706343755-line-17">
+<clipPath id="terminal-3115503780-line-17">
     <rect x="0" y="416.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1706343755-line-18">
+<clipPath id="terminal-3115503780-line-18">
     <rect x="0" y="440.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1706343755-line-19">
+<clipPath id="terminal-3115503780-line-19">
     <rect x="0" y="465.1" width="1464" height="24.65"/>
             </clipPath>
+<clipPath id="terminal-3115503780-line-20">
+    <rect x="0" y="489.5" width="1464" height="24.65"/>
+            </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="560.4" rx="8"/><text class="terminal-1706343755-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;k8s&#160;status</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="584.8" rx="8"/><text class="terminal-3115503780-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;k8s&#160;status</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-1706343755-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-3115503780-clip-terminal)">
     
-    <g class="terminal-1706343755-matrix">
-    <text class="terminal-1706343755-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-1706343755-line-0)">
-</text><text class="terminal-1706343755-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-1706343755-line-1)">Usage:&#160;</text><text class="terminal-1706343755-r1" x="97.6" y="44.4" textLength="329.4" clip-path="url(#terminal-1706343755-line-1)">breeze&#160;k8s&#160;status&#160;[OPTIONS]</text><text class="terminal-1706343755-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-1706343755-line-1)">
-</text><text class="terminal-1706343755-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-1706343755-line-2)">
-</text><text class="terminal-1706343755-r2" x="12.2" y="93.2" textLength="1085.8" clip-path="url(#terminal-1706343755-line-3)">Check&#160;status&#160;of&#160;the&#160;current&#160;cluster&#160;and&#160;airflow&#160;deployed&#160;to&#160;it&#160;(optionally&#160;all&#160;clusters).</text><text class="terminal-1706343755-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-1706343755-line-3)">
-</text><text class="terminal-1706343755-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-1706343755-line-4)">
-</text><text class="terminal-1706343755-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-1706343755-line-5)">╭─</text><text class="terminal-1706343755-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-1706343755-line-5)">&#160;K8S&#160;cluster&#160;status&#160;flags&#160;──────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1706343755-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#termi [...]
-</text><text class="terminal-1706343755-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-1706343755-line-6)">│</text><text class="terminal-1706343755-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-1706343755-line-6)">-</text><text class="terminal-1706343755-r5" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-1706343755-line-6)">-python</text><text class="terminal-1706343755-r6" x="317.2" y="166.4" textLength="24.4" clip-path="url(#terminal-1 [...]
-</text><text class="terminal-1706343755-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-1706343755-line-7)">│</text><text class="terminal-1706343755-r4" x="366" y="190.8" textLength="732" clip-path="url(#terminal-1706343755-line-7)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
-</text><text class="terminal-1706343755-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-1706343755-line-8)">│</text><text class="terminal-1706343755-r5" x="24.4" y="215.2" textLength="12.2" clip-path="url(#terminal-1706343755-line-8)">-</text><text class="terminal-1706343755-r5" x="36.6" y="215.2" textLength="134.2" clip-path="url(#terminal-1706343755-line-8)">-kubernetes</text><text class="terminal-1706343755-r5" x="170.8" y="215.2" textLength="97.6" clip-path="url(#termi [...]
-</text><text class="terminal-1706343755-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-1706343755-line-9)">│</text><text class="terminal-1706343755-r7" x="366" y="239.6" textLength="658.8" clip-path="url(#terminal-1706343755-line-9)">(&gt;v1.25.2&lt;&#160;|&#160;v1.24.6&#160;|&#160;v1.23.12&#160;|&#160;v1.22.15&#160;|&#160;v1.21.14)</text><text class="terminal-1706343755-r4" x="1451.8" y="239.6" textLength="12.2" clip-path="url(#terminal-1706343755-line-9)">│</text><text  [...]
-</text><text class="terminal-1706343755-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-1706343755-line-10)">│</text><text class="terminal-1706343755-r4" x="366" y="264" textLength="658.8" clip-path="url(#terminal-1706343755-line-10)">[default:&#160;v1.25.2]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</tex [...]
-</text><text class="terminal-1706343755-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-1706343755-line-11)">│</text><text class="terminal-1706343755-r5" x="24.4" y="288.4" textLength="12.2" clip-path="url(#terminal-1706343755-line-11)">-</text><text class="terminal-1706343755-r5" x="36.6" y="288.4" textLength="61" clip-path="url(#terminal-1706343755-line-11)">-wait</text><text class="terminal-1706343755-r5" x="97.6" y="288.4" textLength="195.2" clip-path="url(#terminal-17 [...]
-</text><text class="terminal-1706343755-r4" x="0" y="312.8" textLength="1464" clip-path="url(#terminal-1706343755-line-12)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1706343755-r2" x="1464" y="312.8" textLength="12.2" clip-path="url(#terminal-1706343755-line-12)">
-</text><text class="terminal-1706343755-r4" x="0" y="337.2" textLength="24.4" clip-path="url(#terminal-1706343755-line-13)">╭─</text><text class="terminal-1706343755-r4" x="24.4" y="337.2" textLength="1415.2" clip-path="url(#terminal-1706343755-line-13)">&#160;K8S&#160;multi-cluster&#160;flags&#160;───────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1706343755-r4" x="1439.6" y="337.2" textLength="24.4" clip-path="url(#te [...]
-</text><text class="terminal-1706343755-r4" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-1706343755-line-14)">│</text><text class="terminal-1706343755-r5" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-1706343755-line-14)">-</text><text class="terminal-1706343755-r5" x="36.6" y="361.6" textLength="48.8" clip-path="url(#terminal-1706343755-line-14)">-all</text><text class="terminal-1706343755-r2" x="134.2" y="361.6" textLength="390.4" clip-path="url(#terminal- [...]
-</text><text class="terminal-1706343755-r4" x="0" y="386" textLength="1464" clip-path="url(#terminal-1706343755-line-15)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1706343755-r2" x="1464" y="386" textLength="12.2" clip-path="url(#terminal-1706343755-line-15)">
-</text><text class="terminal-1706343755-r4" x="0" y="410.4" textLength="24.4" clip-path="url(#terminal-1706343755-line-16)">╭─</text><text class="terminal-1706343755-r4" x="24.4" y="410.4" textLength="1415.2" clip-path="url(#terminal-1706343755-line-16)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1706343755-r4" x="1439.6" y="410.4" textLength="24.4" clip-path="url(#termina [...]
-</text><text class="terminal-1706343755-r4" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-1706343755-line-17)">│</text><text class="terminal-1706343755-r5" x="24.4" y="434.8" textLength="12.2" clip-path="url(#terminal-1706343755-line-17)">-</text><text class="terminal-1706343755-r5" x="36.6" y="434.8" textLength="97.6" clip-path="url(#terminal-1706343755-line-17)">-verbose</text><text class="terminal-1706343755-r6" x="158.6" y="434.8" textLength="24.4" clip-path="url(#termin [...]
-</text><text class="terminal-1706343755-r4" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-1706343755-line-18)">│</text><text class="terminal-1706343755-r5" x="24.4" y="459.2" textLength="12.2" clip-path="url(#terminal-1706343755-line-18)">-</text><text class="terminal-1706343755-r5" x="36.6" y="459.2" textLength="48.8" clip-path="url(#terminal-1706343755-line-18)">-dry</text><text class="terminal-1706343755-r5" x="85.4" y="459.2" textLength="48.8" clip-path="url(#terminal-17 [...]
-</text><text class="terminal-1706343755-r4" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-1706343755-line-19)">│</text><text class="terminal-1706343755-r5" x="24.4" y="483.6" textLength="12.2" clip-path="url(#terminal-1706343755-line-19)">-</text><text class="terminal-1706343755-r5" x="36.6" y="483.6" textLength="61" clip-path="url(#terminal-1706343755-line-19)">-help</text><text class="terminal-1706343755-r6" x="158.6" y="483.6" textLength="24.4" clip-path="url(#terminal-17 [...]
-</text><text class="terminal-1706343755-r4" x="0" y="508" textLength="1464" clip-path="url(#terminal-1706343755-line-20)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1706343755-r2" x="1464" y="508" textLength="12.2" clip-path="url(#terminal-1706343755-line-20)">
+    <g class="terminal-3115503780-matrix">
+    <text class="terminal-3115503780-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-3115503780-line-0)">
+</text><text class="terminal-3115503780-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-3115503780-line-1)">Usage:&#160;</text><text class="terminal-3115503780-r1" x="97.6" y="44.4" textLength="231.8" clip-path="url(#terminal-3115503780-line-1)">breeze&#160;k8s&#160;status&#160;[</text><text class="terminal-3115503780-r4" x="329.4" y="44.4" textLength="85.4" clip-path="url(#terminal-3115503780-line-1)">OPTIONS</text><text class="terminal-3115503780-r1" x="414.8" y="44.4" [...]
+</text><text class="terminal-3115503780-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-3115503780-line-2)">
+</text><text class="terminal-3115503780-r2" x="12.2" y="93.2" textLength="1085.8" clip-path="url(#terminal-3115503780-line-3)">Check&#160;status&#160;of&#160;the&#160;current&#160;cluster&#160;and&#160;airflow&#160;deployed&#160;to&#160;it&#160;(optionally&#160;all&#160;clusters).</text><text class="terminal-3115503780-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-3115503780-line-3)">
+</text><text class="terminal-3115503780-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-3115503780-line-4)">
+</text><text class="terminal-3115503780-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-3115503780-line-5)">╭─</text><text class="terminal-3115503780-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-3115503780-line-5)">&#160;K8S&#160;cluster&#160;status&#160;flags&#160;──────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3115503780-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#termi [...]
+</text><text class="terminal-3115503780-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-3115503780-line-6)">│</text><text class="terminal-3115503780-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-3115503780-line-6)">-</text><text class="terminal-3115503780-r4" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-3115503780-line-6)">-python</text><text class="terminal-3115503780-r6" x="317.2" y="166.4" textLength="24.4" clip-path="url(#terminal-3 [...]
+</text><text class="terminal-3115503780-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-3115503780-line-7)">│</text><text class="terminal-3115503780-r7" x="366" y="190.8" textLength="732" clip-path="url(#terminal-3115503780-line-7)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10&#160;|&#160;3.11)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</t [...]
+</text><text class="terminal-3115503780-r5" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-3115503780-line-8)">│</text><text class="terminal-3115503780-r5" x="366" y="215.2" textLength="732" clip-path="url(#terminal-3115503780-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
+</text><text class="terminal-3115503780-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-3115503780-line-9)">│</text><text class="terminal-3115503780-r4" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-3115503780-line-9)">-</text><text class="terminal-3115503780-r4" x="36.6" y="239.6" textLength="134.2" clip-path="url(#terminal-3115503780-line-9)">-kubernetes</text><text class="terminal-3115503780-r4" x="170.8" y="239.6" textLength="97.6" clip-path="url(#termi [...]
+</text><text class="terminal-3115503780-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-3115503780-line-10)">│</text><text class="terminal-3115503780-r7" x="366" y="264" textLength="658.8" clip-path="url(#terminal-3115503780-line-10)">(&gt;v1.25.2&lt;&#160;|&#160;v1.24.6&#160;|&#160;v1.23.12&#160;|&#160;v1.22.15&#160;|&#160;v1.21.14)</text><text class="terminal-3115503780-r5" x="1451.8" y="264" textLength="12.2" clip-path="url(#terminal-3115503780-line-10)">│</text><text cla [...]
+</text><text class="terminal-3115503780-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-3115503780-line-11)">│</text><text class="terminal-3115503780-r5" x="366" y="288.4" textLength="658.8" clip-path="url(#terminal-3115503780-line-11)">[default:&#160;v1.25.2]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;< [...]
+</text><text class="terminal-3115503780-r5" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-3115503780-line-12)">│</text><text class="terminal-3115503780-r4" x="24.4" y="312.8" textLength="12.2" clip-path="url(#terminal-3115503780-line-12)">-</text><text class="terminal-3115503780-r4" x="36.6" y="312.8" textLength="61" clip-path="url(#terminal-3115503780-line-12)">-wait</text><text class="terminal-3115503780-r4" x="97.6" y="312.8" textLength="195.2" clip-path="url(#terminal-31 [...]
+</text><text class="terminal-3115503780-r5" x="0" y="337.2" textLength="1464" clip-path="url(#terminal-3115503780-line-13)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3115503780-r2" x="1464" y="337.2" textLength="12.2" clip-path="url(#terminal-3115503780-line-13)">
+</text><text class="terminal-3115503780-r5" x="0" y="361.6" textLength="24.4" clip-path="url(#terminal-3115503780-line-14)">╭─</text><text class="terminal-3115503780-r5" x="24.4" y="361.6" textLength="1415.2" clip-path="url(#terminal-3115503780-line-14)">&#160;K8S&#160;multi-cluster&#160;flags&#160;───────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3115503780-r5" x="1439.6" y="361.6" textLength="24.4" clip-path="url(#te [...]
+</text><text class="terminal-3115503780-r5" x="0" y="386" textLength="12.2" clip-path="url(#terminal-3115503780-line-15)">│</text><text class="terminal-3115503780-r4" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-3115503780-line-15)">-</text><text class="terminal-3115503780-r4" x="36.6" y="386" textLength="48.8" clip-path="url(#terminal-3115503780-line-15)">-all</text><text class="terminal-3115503780-r2" x="134.2" y="386" textLength="390.4" clip-path="url(#terminal-31155037 [...]
+</text><text class="terminal-3115503780-r5" x="0" y="410.4" textLength="1464" clip-path="url(#terminal-3115503780-line-16)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3115503780-r2" x="1464" y="410.4" textLength="12.2" clip-path="url(#terminal-3115503780-line-16)">
+</text><text class="terminal-3115503780-r5" x="0" y="434.8" textLength="24.4" clip-path="url(#terminal-3115503780-line-17)">╭─</text><text class="terminal-3115503780-r5" x="24.4" y="434.8" textLength="1415.2" clip-path="url(#terminal-3115503780-line-17)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3115503780-r5" x="1439.6" y="434.8" textLength="24.4" clip-path="url(#termina [...]
+</text><text class="terminal-3115503780-r5" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-3115503780-line-18)">│</text><text class="terminal-3115503780-r4" x="24.4" y="459.2" textLength="12.2" clip-path="url(#terminal-3115503780-line-18)">-</text><text class="terminal-3115503780-r4" x="36.6" y="459.2" textLength="97.6" clip-path="url(#terminal-3115503780-line-18)">-verbose</text><text class="terminal-3115503780-r6" x="158.6" y="459.2" textLength="24.4" clip-path="url(#termin [...]
+</text><text class="terminal-3115503780-r5" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-3115503780-line-19)">│</text><text class="terminal-3115503780-r4" x="24.4" y="483.6" textLength="12.2" clip-path="url(#terminal-3115503780-line-19)">-</text><text class="terminal-3115503780-r4" x="36.6" y="483.6" textLength="48.8" clip-path="url(#terminal-3115503780-line-19)">-dry</text><text class="terminal-3115503780-r4" x="85.4" y="483.6" textLength="48.8" clip-path="url(#terminal-31 [...]
+</text><text class="terminal-3115503780-r5" x="0" y="508" textLength="12.2" clip-path="url(#terminal-3115503780-line-20)">│</text><text class="terminal-3115503780-r4" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-3115503780-line-20)">-</text><text class="terminal-3115503780-r4" x="36.6" y="508" textLength="61" clip-path="url(#terminal-3115503780-line-20)">-help</text><text class="terminal-3115503780-r6" x="158.6" y="508" textLength="24.4" clip-path="url(#terminal-3115503780 [...]
+</text><text class="terminal-3115503780-r5" x="0" y="532.4" textLength="1464" clip-path="url(#terminal-3115503780-line-21)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3115503780-r2" x="1464" y="532.4" textLength="12.2" clip-path="url(#terminal-3115503780-line-21)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_k8s_tests.svg b/images/breeze/output_k8s_tests.svg
index 724be6f953..6b4e11fcfa 100644
--- a/images/breeze/output_k8s_tests.svg
+++ b/images/breeze/output_k8s_tests.svg
@@ -1,4 +1,4 @@
-<svg class="rich-terminal" viewBox="0 0 1482 904.0" xmlns="http://www.w3.org/2000/svg">
+<svg class="rich-terminal" viewBox="0 0 1482 928.4" xmlns="http://www.w3.org/2000/svg">
     <!-- Generated with Rich https://www.textualize.io -->
     <style>
 
@@ -19,181 +19,185 @@
         font-weight: 700;
     }
 
-    .terminal-2091034276-matrix {
+    .terminal-2518989376-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-2091034276-title {
+    .terminal-2518989376-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-2091034276-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-2091034276-r2 { fill: #c5c8c6 }
-.terminal-2091034276-r3 { fill: #d0b344;font-weight: bold }
-.terminal-2091034276-r4 { fill: #868887 }
-.terminal-2091034276-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-2091034276-r6 { fill: #98a84b;font-weight: bold }
-.terminal-2091034276-r7 { fill: #8d7b39 }
+    .terminal-2518989376-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-2518989376-r2 { fill: #c5c8c6 }
+.terminal-2518989376-r3 { fill: #d0b344;font-weight: bold }
+.terminal-2518989376-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-2518989376-r5 { fill: #868887 }
+.terminal-2518989376-r6 { fill: #98a84b;font-weight: bold }
+.terminal-2518989376-r7 { fill: #8d7b39 }
     </style>
 
     <defs>
-    <clipPath id="terminal-2091034276-clip-terminal">
-      <rect x="0" y="0" width="1463.0" height="853.0" />
+    <clipPath id="terminal-2518989376-clip-terminal">
+      <rect x="0" y="0" width="1463.0" height="877.4" />
     </clipPath>
-    <clipPath id="terminal-2091034276-line-0">
+    <clipPath id="terminal-2518989376-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-1">
+<clipPath id="terminal-2518989376-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-2">
+<clipPath id="terminal-2518989376-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-3">
+<clipPath id="terminal-2518989376-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-4">
+<clipPath id="terminal-2518989376-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-5">
+<clipPath id="terminal-2518989376-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-6">
+<clipPath id="terminal-2518989376-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-7">
+<clipPath id="terminal-2518989376-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-8">
+<clipPath id="terminal-2518989376-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-9">
+<clipPath id="terminal-2518989376-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-10">
+<clipPath id="terminal-2518989376-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-11">
+<clipPath id="terminal-2518989376-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-12">
+<clipPath id="terminal-2518989376-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-13">
+<clipPath id="terminal-2518989376-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-14">
+<clipPath id="terminal-2518989376-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-15">
+<clipPath id="terminal-2518989376-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-16">
+<clipPath id="terminal-2518989376-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-17">
+<clipPath id="terminal-2518989376-line-17">
     <rect x="0" y="416.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-18">
+<clipPath id="terminal-2518989376-line-18">
     <rect x="0" y="440.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-19">
+<clipPath id="terminal-2518989376-line-19">
     <rect x="0" y="465.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-20">
+<clipPath id="terminal-2518989376-line-20">
     <rect x="0" y="489.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-21">
+<clipPath id="terminal-2518989376-line-21">
     <rect x="0" y="513.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-22">
+<clipPath id="terminal-2518989376-line-22">
     <rect x="0" y="538.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-23">
+<clipPath id="terminal-2518989376-line-23">
     <rect x="0" y="562.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-24">
+<clipPath id="terminal-2518989376-line-24">
     <rect x="0" y="587.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-25">
+<clipPath id="terminal-2518989376-line-25">
     <rect x="0" y="611.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-26">
+<clipPath id="terminal-2518989376-line-26">
     <rect x="0" y="635.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-27">
+<clipPath id="terminal-2518989376-line-27">
     <rect x="0" y="660.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-28">
+<clipPath id="terminal-2518989376-line-28">
     <rect x="0" y="684.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-29">
+<clipPath id="terminal-2518989376-line-29">
     <rect x="0" y="709.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-30">
+<clipPath id="terminal-2518989376-line-30">
     <rect x="0" y="733.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-31">
+<clipPath id="terminal-2518989376-line-31">
     <rect x="0" y="757.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-32">
+<clipPath id="terminal-2518989376-line-32">
     <rect x="0" y="782.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2091034276-line-33">
+<clipPath id="terminal-2518989376-line-33">
     <rect x="0" y="806.7" width="1464" height="24.65"/>
             </clipPath>
+<clipPath id="terminal-2518989376-line-34">
+    <rect x="0" y="831.1" width="1464" height="24.65"/>
+            </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="902" rx="8"/><text class="terminal-2091034276-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;k8s&#160;tests</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="926.4" rx="8"/><text class="terminal-2518989376-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;k8s&#160;tests</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-2091034276-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-2518989376-clip-terminal)">
     
-    <g class="terminal-2091034276-matrix">
-    <text class="terminal-2091034276-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-2091034276-line-0)">
-</text><text class="terminal-2091034276-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-2091034276-line-1)">Usage:&#160;</text><text class="terminal-2091034276-r1" x="97.6" y="44.4" textLength="500.2" clip-path="url(#terminal-2091034276-line-1)">breeze&#160;k8s&#160;tests&#160;[OPTIONS]&#160;[TEST_ARGS]...</text><text class="terminal-2091034276-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-2091034276-line-1)">
-</text><text class="terminal-2091034276-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-2091034276-line-2)">
-</text><text class="terminal-2091034276-r2" x="12.2" y="93.2" textLength="1037" clip-path="url(#terminal-2091034276-line-3)">Run&#160;tests&#160;against&#160;the&#160;current&#160;KinD&#160;cluster&#160;(optionally&#160;for&#160;all&#160;clusters&#160;in&#160;parallel).</text><text class="terminal-2091034276-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-2091034276-line-3)">
-</text><text class="terminal-2091034276-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-2091034276-line-4)">
-</text><text class="terminal-2091034276-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-2091034276-line-5)">╭─</text><text class="terminal-2091034276-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-2091034276-line-5)">&#160;K8S&#160;tests&#160;flags&#160;───────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2091034276-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-2 [...]
-</text><text class="terminal-2091034276-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-2091034276-line-6)">│</text><text class="terminal-2091034276-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-2091034276-line-6)">-</text><text class="terminal-2091034276-r5" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-2091034276-line-6)">-python</text><text class="terminal-2091034276-r6" x="292.8" y="166.4" textLength="24.4" clip-path="url(#terminal-2 [...]
-</text><text class="terminal-2091034276-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-2091034276-line-7)">│</text><text class="terminal-2091034276-r4" x="341.6" y="190.8" textLength="732" clip-path="url(#terminal-2091034276-line-7)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-2091034276-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-2091034276-line-8)">│</text><text class="terminal-2091034276-r5" x="24.4" y="215.2" textLength="12.2" clip-path="url(#terminal-2091034276-line-8)">-</text><text class="terminal-2091034276-r5" x="36.6" y="215.2" textLength="134.2" clip-path="url(#terminal-2091034276-line-8)">-kubernetes</text><text class="terminal-2091034276-r5" x="170.8" y="215.2" textLength="97.6" clip-path="url(#termi [...]
-</text><text class="terminal-2091034276-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-2091034276-line-9)">│</text><text class="terminal-2091034276-r7" x="341.6" y="239.6" textLength="658.8" clip-path="url(#terminal-2091034276-line-9)">(&gt;v1.25.2&lt;&#160;|&#160;v1.24.6&#160;|&#160;v1.23.12&#160;|&#160;v1.22.15&#160;|&#160;v1.21.14)</text><text class="terminal-2091034276-r4" x="1451.8" y="239.6" textLength="12.2" clip-path="url(#terminal-2091034276-line-9)">│</text><tex [...]
-</text><text class="terminal-2091034276-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-2091034276-line-10)">│</text><text class="terminal-2091034276-r4" x="341.6" y="264" textLength="658.8" clip-path="url(#terminal-2091034276-line-10)">[default:&#160;v1.25.2]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</t [...]
-</text><text class="terminal-2091034276-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-2091034276-line-11)">│</text><text class="terminal-2091034276-r5" x="24.4" y="288.4" textLength="12.2" clip-path="url(#terminal-2091034276-line-11)">-</text><text class="terminal-2091034276-r5" x="36.6" y="288.4" textLength="109.8" clip-path="url(#terminal-2091034276-line-11)">-executor</text><text class="terminal-2091034276-r2" x="341.6" y="288.4" textLength="1000.4" clip-path="url(#te [...]
-</text><text class="terminal-2091034276-r4" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-2091034276-line-12)">│</text><text class="terminal-2091034276-r7" x="341.6" y="312.8" textLength="1000.4" clip-path="url(#terminal-2091034276-line-12)">(&gt;KubernetesExecutor&lt;&#160;|&#160;CeleryExecutor&#160;|&#160;LocalExecutor&#160;|&#160;CeleryKubernetesExecutor)</text><text class="terminal-2091034276-r4" x="1451.8" y="312.8" textLength="12.2" clip-path="url(#terminal-2091034276- [...]
-</text><text class="terminal-2091034276-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-2091034276-line-13)">│</text><text class="terminal-2091034276-r4" x="341.6" y="337.2" textLength="1000.4" clip-path="url(#terminal-2091034276-line-13)">[default:&#160;KubernetesExecutor]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-2091034276-r4" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-2091034276-line-14)">│</text><text class="terminal-2091034276-r5" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-2091034276-line-14)">-</text><text class="terminal-2091034276-r5" x="36.6" y="361.6" textLength="73.2" clip-path="url(#terminal-2091034276-line-14)">-force</text><text class="terminal-2091034276-r5" x="109.8" y="361.6" textLength="134.2" clip-path="url(#termina [...]
-</text><text class="terminal-2091034276-r4" x="0" y="386" textLength="1464" clip-path="url(#terminal-2091034276-line-15)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2091034276-r2" x="1464" y="386" textLength="12.2" clip-path="url(#terminal-2091034276-line-15)">
-</text><text class="terminal-2091034276-r4" x="0" y="410.4" textLength="24.4" clip-path="url(#terminal-2091034276-line-16)">╭─</text><text class="terminal-2091034276-r4" x="24.4" y="410.4" textLength="1415.2" clip-path="url(#terminal-2091034276-line-16)">&#160;Parallel&#160;options&#160;──────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2091034276-r4" x="1439.6" y="410.4" textLength="24.4" clip-path="url(#termina [...]
-</text><text class="terminal-2091034276-r4" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-2091034276-line-17)">│</text><text class="terminal-2091034276-r5" x="24.4" y="434.8" textLength="12.2" clip-path="url(#terminal-2091034276-line-17)">-</text><text class="terminal-2091034276-r5" x="36.6" y="434.8" textLength="48.8" clip-path="url(#terminal-2091034276-line-17)">-run</text><text class="terminal-2091034276-r5" x="85.4" y="434.8" textLength="146.4" clip-path="url(#terminal-2 [...]
-</text><text class="terminal-2091034276-r4" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-2091034276-line-18)">│</text><text class="terminal-2091034276-r5" x="24.4" y="459.2" textLength="12.2" clip-path="url(#terminal-2091034276-line-18)">-</text><text class="terminal-2091034276-r5" x="36.6" y="459.2" textLength="146.4" clip-path="url(#terminal-2091034276-line-18)">-parallelism</text><text class="terminal-2091034276-r2" x="378.2" y="459.2" textLength="1061.4" clip-path="url( [...]
-</text><text class="terminal-2091034276-r4" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-2091034276-line-19)">│</text><text class="terminal-2091034276-r2" x="378.2" y="483.6" textLength="1061.4" clip-path="url(#terminal-2091034276-line-19)">operations.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
-</text><text class="terminal-2091034276-r4" x="0" y="508" textLength="12.2" clip-path="url(#terminal-2091034276-line-20)">│</text><text class="terminal-2091034276-r7" x="378.2" y="508" textLength="1061.4" clip-path="url(#terminal-2091034276-line-20)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-2091034276-r4" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-2091034276-line-21)">│</text><text class="terminal-2091034276-r4" x="378.2" y="532.4" textLength="1061.4" clip-path="url(#terminal-2091034276-line-21)">[default:&#160;2;&#160;1&lt;=x&lt;=4]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
-</text><text class="terminal-2091034276-r4" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-2091034276-line-22)">│</text><text class="terminal-2091034276-r5" x="24.4" y="556.8" textLength="12.2" clip-path="url(#terminal-2091034276-line-22)">-</text><text class="terminal-2091034276-r5" x="36.6" y="556.8" textLength="85.4" clip-path="url(#terminal-2091034276-line-22)">-python</text><text class="terminal-2091034276-r5" x="122" y="556.8" textLength="109.8" clip-path="url(#terminal [...]
-</text><text class="terminal-2091034276-r4" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-2091034276-line-23)">│</text><text class="terminal-2091034276-r4" x="378.2" y="581.2" textLength="951.6" clip-path="url(#terminal-2091034276-line-23)">[default:&#160;3.7&#160;3.8&#160;3.9&#160;3.10]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-2091034276-r4" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-2091034276-line-24)">│</text><text class="terminal-2091034276-r5" x="24.4" y="605.6" textLength="12.2" clip-path="url(#terminal-2091034276-line-24)">-</text><text class="terminal-2091034276-r5" x="36.6" y="605.6" textLength="134.2" clip-path="url(#terminal-2091034276-line-24)">-kubernetes</text><text class="terminal-2091034276-r5" x="170.8" y="605.6" textLength="109.8" clip-path="url(#t [...]
-</text><text class="terminal-2091034276-r4" x="0" y="630" textLength="12.2" clip-path="url(#terminal-2091034276-line-25)">│</text><text class="terminal-2091034276-r4" x="378.2" y="630" textLength="756.4" clip-path="url(#terminal-2091034276-line-25)">[default:&#160;v1.25.2&#160;v1.24.6&#160;v1.23.12&#160;v1.22.15&#160;v1.21.14]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-2091034276-r4" x="1451.8" y="630" textLength="12.2" clip-path="url(#terminal-2091 [...]
-</text><text class="terminal-2091034276-r4" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-2091034276-line-26)">│</text><text class="terminal-2091034276-r5" x="24.4" y="654.4" textLength="12.2" clip-path="url(#terminal-2091034276-line-26)">-</text><text class="terminal-2091034276-r5" x="36.6" y="654.4" textLength="61" clip-path="url(#terminal-2091034276-line-26)">-skip</text><text class="terminal-2091034276-r5" x="97.6" y="654.4" textLength="97.6" clip-path="url(#terminal-209 [...]
-</text><text class="terminal-2091034276-r4" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-2091034276-line-27)">│</text><text class="terminal-2091034276-r5" x="24.4" y="678.8" textLength="12.2" clip-path="url(#terminal-2091034276-line-27)">-</text><text class="terminal-2091034276-r5" x="36.6" y="678.8" textLength="73.2" clip-path="url(#terminal-2091034276-line-27)">-debug</text><text class="terminal-2091034276-r5" x="109.8" y="678.8" textLength="122" clip-path="url(#terminal- [...]
-</text><text class="terminal-2091034276-r4" x="0" y="703.2" textLength="12.2" clip-path="url(#terminal-2091034276-line-28)">│</text><text class="terminal-2091034276-r5" x="24.4" y="703.2" textLength="12.2" clip-path="url(#terminal-2091034276-line-28)">-</text><text class="terminal-2091034276-r5" x="36.6" y="703.2" textLength="97.6" clip-path="url(#terminal-2091034276-line-28)">-include</text><text class="terminal-2091034276-r5" x="134.2" y="703.2" textLength="195.2" clip-path="url(#termi [...]
-</text><text class="terminal-2091034276-r4" x="0" y="727.6" textLength="1464" clip-path="url(#terminal-2091034276-line-29)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2091034276-r2" x="1464" y="727.6" textLength="12.2" clip-path="url(#terminal-2091034276-line-29)">
-</text><text class="terminal-2091034276-r4" x="0" y="752" textLength="24.4" clip-path="url(#terminal-2091034276-line-30)">╭─</text><text class="terminal-2091034276-r4" x="24.4" y="752" textLength="1415.2" clip-path="url(#terminal-2091034276-line-30)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2091034276-r4" x="1439.6" y="752" textLength="24.4" clip-path="url(#terminal-2091 [...]
-</text><text class="terminal-2091034276-r4" x="0" y="776.4" textLength="12.2" clip-path="url(#terminal-2091034276-line-31)">│</text><text class="terminal-2091034276-r5" x="24.4" y="776.4" textLength="12.2" clip-path="url(#terminal-2091034276-line-31)">-</text><text class="terminal-2091034276-r5" x="36.6" y="776.4" textLength="97.6" clip-path="url(#terminal-2091034276-line-31)">-verbose</text><text class="terminal-2091034276-r6" x="158.6" y="776.4" textLength="24.4" clip-path="url(#termin [...]
-</text><text class="terminal-2091034276-r4" x="0" y="800.8" textLength="12.2" clip-path="url(#terminal-2091034276-line-32)">│</text><text class="terminal-2091034276-r5" x="24.4" y="800.8" textLength="12.2" clip-path="url(#terminal-2091034276-line-32)">-</text><text class="terminal-2091034276-r5" x="36.6" y="800.8" textLength="48.8" clip-path="url(#terminal-2091034276-line-32)">-dry</text><text class="terminal-2091034276-r5" x="85.4" y="800.8" textLength="48.8" clip-path="url(#terminal-20 [...]
-</text><text class="terminal-2091034276-r4" x="0" y="825.2" textLength="12.2" clip-path="url(#terminal-2091034276-line-33)">│</text><text class="terminal-2091034276-r5" x="24.4" y="825.2" textLength="12.2" clip-path="url(#terminal-2091034276-line-33)">-</text><text class="terminal-2091034276-r5" x="36.6" y="825.2" textLength="61" clip-path="url(#terminal-2091034276-line-33)">-help</text><text class="terminal-2091034276-r6" x="158.6" y="825.2" textLength="24.4" clip-path="url(#terminal-20 [...]
-</text><text class="terminal-2091034276-r4" x="0" y="849.6" textLength="1464" clip-path="url(#terminal-2091034276-line-34)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2091034276-r2" x="1464" y="849.6" textLength="12.2" clip-path="url(#terminal-2091034276-line-34)">
+    <g class="terminal-2518989376-matrix">
+    <text class="terminal-2518989376-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-2518989376-line-0)">
+</text><text class="terminal-2518989376-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-2518989376-line-1)">Usage:&#160;</text><text class="terminal-2518989376-r1" x="97.6" y="44.4" textLength="219.6" clip-path="url(#terminal-2518989376-line-1)">breeze&#160;k8s&#160;tests&#160;[</text><text class="terminal-2518989376-r4" x="317.2" y="44.4" textLength="85.4" clip-path="url(#terminal-2518989376-line-1)">OPTIONS</text><text class="terminal-2518989376-r1" x="402.6" y="44.4"  [...]
+</text><text class="terminal-2518989376-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-2518989376-line-2)">
+</text><text class="terminal-2518989376-r2" x="12.2" y="93.2" textLength="1037" clip-path="url(#terminal-2518989376-line-3)">Run&#160;tests&#160;against&#160;the&#160;current&#160;KinD&#160;cluster&#160;(optionally&#160;for&#160;all&#160;clusters&#160;in&#160;parallel).</text><text class="terminal-2518989376-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-2518989376-line-3)">
+</text><text class="terminal-2518989376-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-2518989376-line-4)">
+</text><text class="terminal-2518989376-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-2518989376-line-5)">╭─</text><text class="terminal-2518989376-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-2518989376-line-5)">&#160;K8S&#160;tests&#160;flags&#160;───────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2518989376-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-2 [...]
+</text><text class="terminal-2518989376-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-2518989376-line-6)">│</text><text class="terminal-2518989376-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-2518989376-line-6)">-</text><text class="terminal-2518989376-r4" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-2518989376-line-6)">-python</text><text class="terminal-2518989376-r6" x="292.8" y="166.4" textLength="24.4" clip-path="url(#terminal-2 [...]
+</text><text class="terminal-2518989376-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-2518989376-line-7)">│</text><text class="terminal-2518989376-r7" x="341.6" y="190.8" textLength="732" clip-path="url(#terminal-2518989376-line-7)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10&#160;|&#160;3.11)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;< [...]
+</text><text class="terminal-2518989376-r5" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-2518989376-line-8)">│</text><text class="terminal-2518989376-r5" x="341.6" y="215.2" textLength="732" clip-path="url(#terminal-2518989376-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-2518989376-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-2518989376-line-9)">│</text><text class="terminal-2518989376-r4" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-2518989376-line-9)">-</text><text class="terminal-2518989376-r4" x="36.6" y="239.6" textLength="134.2" clip-path="url(#terminal-2518989376-line-9)">-kubernetes</text><text class="terminal-2518989376-r4" x="170.8" y="239.6" textLength="97.6" clip-path="url(#termi [...]
+</text><text class="terminal-2518989376-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-2518989376-line-10)">│</text><text class="terminal-2518989376-r7" x="341.6" y="264" textLength="658.8" clip-path="url(#terminal-2518989376-line-10)">(&gt;v1.25.2&lt;&#160;|&#160;v1.24.6&#160;|&#160;v1.23.12&#160;|&#160;v1.22.15&#160;|&#160;v1.21.14)</text><text class="terminal-2518989376-r5" x="1451.8" y="264" textLength="12.2" clip-path="url(#terminal-2518989376-line-10)">│</text><text c [...]
+</text><text class="terminal-2518989376-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-2518989376-line-11)">│</text><text class="terminal-2518989376-r5" x="341.6" y="288.4" textLength="658.8" clip-path="url(#terminal-2518989376-line-11)">[default:&#160;v1.25.2]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-2518989376-r5" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-2518989376-line-12)">│</text><text class="terminal-2518989376-r4" x="24.4" y="312.8" textLength="12.2" clip-path="url(#terminal-2518989376-line-12)">-</text><text class="terminal-2518989376-r4" x="36.6" y="312.8" textLength="109.8" clip-path="url(#terminal-2518989376-line-12)">-executor</text><text class="terminal-2518989376-r2" x="341.6" y="312.8" textLength="1000.4" clip-path="url(#te [...]
+</text><text class="terminal-2518989376-r5" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-2518989376-line-13)">│</text><text class="terminal-2518989376-r7" x="341.6" y="337.2" textLength="1000.4" clip-path="url(#terminal-2518989376-line-13)">(&gt;KubernetesExecutor&lt;&#160;|&#160;CeleryExecutor&#160;|&#160;LocalExecutor&#160;|&#160;CeleryKubernetesExecutor)</text><text class="terminal-2518989376-r5" x="1451.8" y="337.2" textLength="12.2" clip-path="url(#terminal-2518989376- [...]
+</text><text class="terminal-2518989376-r5" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-2518989376-line-14)">│</text><text class="terminal-2518989376-r5" x="341.6" y="361.6" textLength="1000.4" clip-path="url(#terminal-2518989376-line-14)">[default:&#160;KubernetesExecutor]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-2518989376-r5" x="0" y="386" textLength="12.2" clip-path="url(#terminal-2518989376-line-15)">│</text><text class="terminal-2518989376-r4" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-2518989376-line-15)">-</text><text class="terminal-2518989376-r4" x="36.6" y="386" textLength="73.2" clip-path="url(#terminal-2518989376-line-15)">-force</text><text class="terminal-2518989376-r4" x="109.8" y="386" textLength="134.2" clip-path="url(#terminal-251898 [...]
+</text><text class="terminal-2518989376-r5" x="0" y="410.4" textLength="1464" clip-path="url(#terminal-2518989376-line-16)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2518989376-r2" x="1464" y="410.4" textLength="12.2" clip-path="url(#terminal-2518989376-line-16)">
+</text><text class="terminal-2518989376-r5" x="0" y="434.8" textLength="24.4" clip-path="url(#terminal-2518989376-line-17)">╭─</text><text class="terminal-2518989376-r5" x="24.4" y="434.8" textLength="1415.2" clip-path="url(#terminal-2518989376-line-17)">&#160;Parallel&#160;options&#160;──────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2518989376-r5" x="1439.6" y="434.8" textLength="24.4" clip-path="url(#termina [...]
+</text><text class="terminal-2518989376-r5" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-2518989376-line-18)">│</text><text class="terminal-2518989376-r4" x="24.4" y="459.2" textLength="12.2" clip-path="url(#terminal-2518989376-line-18)">-</text><text class="terminal-2518989376-r4" x="36.6" y="459.2" textLength="48.8" clip-path="url(#terminal-2518989376-line-18)">-run</text><text class="terminal-2518989376-r4" x="85.4" y="459.2" textLength="146.4" clip-path="url(#terminal-2 [...]
+</text><text class="terminal-2518989376-r5" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-2518989376-line-19)">│</text><text class="terminal-2518989376-r4" x="24.4" y="483.6" textLength="12.2" clip-path="url(#terminal-2518989376-line-19)">-</text><text class="terminal-2518989376-r4" x="36.6" y="483.6" textLength="146.4" clip-path="url(#terminal-2518989376-line-19)">-parallelism</text><text class="terminal-2518989376-r2" x="378.2" y="483.6" textLength="1061.4" clip-path="url( [...]
+</text><text class="terminal-2518989376-r5" x="0" y="508" textLength="12.2" clip-path="url(#terminal-2518989376-line-20)">│</text><text class="terminal-2518989376-r2" x="378.2" y="508" textLength="1061.4" clip-path="url(#terminal-2518989376-line-20)">operations.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
+</text><text class="terminal-2518989376-r5" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-2518989376-line-21)">│</text><text class="terminal-2518989376-r7" x="378.2" y="532.4" textLength="1061.4" clip-path="url(#terminal-2518989376-line-21)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-2518989376-r5" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-2518989376-line-22)">│</text><text class="terminal-2518989376-r5" x="378.2" y="556.8" textLength="1061.4" clip-path="url(#terminal-2518989376-line-22)">[default:&#160;2;&#160;1&lt;=x&lt;=4]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
+</text><text class="terminal-2518989376-r5" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-2518989376-line-23)">│</text><text class="terminal-2518989376-r4" x="24.4" y="581.2" textLength="12.2" clip-path="url(#terminal-2518989376-line-23)">-</text><text class="terminal-2518989376-r4" x="36.6" y="581.2" textLength="85.4" clip-path="url(#terminal-2518989376-line-23)">-python</text><text class="terminal-2518989376-r4" x="122" y="581.2" textLength="109.8" clip-path="url(#terminal [...]
+</text><text class="terminal-2518989376-r5" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-2518989376-line-24)">│</text><text class="terminal-2518989376-r5" x="378.2" y="605.6" textLength="951.6" clip-path="url(#terminal-2518989376-line-24)">[default:&#160;3.7&#160;3.8&#160;3.9&#160;3.10&#160;3.11]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-2518989376-r5" x="0" y="630" textLength="12.2" clip-path="url(#terminal-2518989376-line-25)">│</text><text class="terminal-2518989376-r4" x="24.4" y="630" textLength="12.2" clip-path="url(#terminal-2518989376-line-25)">-</text><text class="terminal-2518989376-r4" x="36.6" y="630" textLength="134.2" clip-path="url(#terminal-2518989376-line-25)">-kubernetes</text><text class="terminal-2518989376-r4" x="170.8" y="630" textLength="109.8" clip-path="url(#terminal- [...]
+</text><text class="terminal-2518989376-r5" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-2518989376-line-26)">│</text><text class="terminal-2518989376-r5" x="378.2" y="654.4" textLength="756.4" clip-path="url(#terminal-2518989376-line-26)">[default:&#160;v1.25.2&#160;v1.24.6&#160;v1.23.12&#160;v1.22.15&#160;v1.21.14]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-2518989376-r5" x="1451.8" y="654.4" textLength="12.2" clip-path="url(#termina [...]
+</text><text class="terminal-2518989376-r5" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-2518989376-line-27)">│</text><text class="terminal-2518989376-r4" x="24.4" y="678.8" textLength="12.2" clip-path="url(#terminal-2518989376-line-27)">-</text><text class="terminal-2518989376-r4" x="36.6" y="678.8" textLength="61" clip-path="url(#terminal-2518989376-line-27)">-skip</text><text class="terminal-2518989376-r4" x="97.6" y="678.8" textLength="97.6" clip-path="url(#terminal-251 [...]
+</text><text class="terminal-2518989376-r5" x="0" y="703.2" textLength="12.2" clip-path="url(#terminal-2518989376-line-28)">│</text><text class="terminal-2518989376-r4" x="24.4" y="703.2" textLength="12.2" clip-path="url(#terminal-2518989376-line-28)">-</text><text class="terminal-2518989376-r4" x="36.6" y="703.2" textLength="73.2" clip-path="url(#terminal-2518989376-line-28)">-debug</text><text class="terminal-2518989376-r4" x="109.8" y="703.2" textLength="122" clip-path="url(#terminal- [...]
+</text><text class="terminal-2518989376-r5" x="0" y="727.6" textLength="12.2" clip-path="url(#terminal-2518989376-line-29)">│</text><text class="terminal-2518989376-r4" x="24.4" y="727.6" textLength="12.2" clip-path="url(#terminal-2518989376-line-29)">-</text><text class="terminal-2518989376-r4" x="36.6" y="727.6" textLength="97.6" clip-path="url(#terminal-2518989376-line-29)">-include</text><text class="terminal-2518989376-r4" x="134.2" y="727.6" textLength="195.2" clip-path="url(#termi [...]
+</text><text class="terminal-2518989376-r5" x="0" y="752" textLength="1464" clip-path="url(#terminal-2518989376-line-30)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2518989376-r2" x="1464" y="752" textLength="12.2" clip-path="url(#terminal-2518989376-line-30)">
+</text><text class="terminal-2518989376-r5" x="0" y="776.4" textLength="24.4" clip-path="url(#terminal-2518989376-line-31)">╭─</text><text class="terminal-2518989376-r5" x="24.4" y="776.4" textLength="1415.2" clip-path="url(#terminal-2518989376-line-31)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2518989376-r5" x="1439.6" y="776.4" textLength="24.4" clip-path="url(#termina [...]
+</text><text class="terminal-2518989376-r5" x="0" y="800.8" textLength="12.2" clip-path="url(#terminal-2518989376-line-32)">│</text><text class="terminal-2518989376-r4" x="24.4" y="800.8" textLength="12.2" clip-path="url(#terminal-2518989376-line-32)">-</text><text class="terminal-2518989376-r4" x="36.6" y="800.8" textLength="97.6" clip-path="url(#terminal-2518989376-line-32)">-verbose</text><text class="terminal-2518989376-r6" x="158.6" y="800.8" textLength="24.4" clip-path="url(#termin [...]
+</text><text class="terminal-2518989376-r5" x="0" y="825.2" textLength="12.2" clip-path="url(#terminal-2518989376-line-33)">│</text><text class="terminal-2518989376-r4" x="24.4" y="825.2" textLength="12.2" clip-path="url(#terminal-2518989376-line-33)">-</text><text class="terminal-2518989376-r4" x="36.6" y="825.2" textLength="48.8" clip-path="url(#terminal-2518989376-line-33)">-dry</text><text class="terminal-2518989376-r4" x="85.4" y="825.2" textLength="48.8" clip-path="url(#terminal-25 [...]
+</text><text class="terminal-2518989376-r5" x="0" y="849.6" textLength="12.2" clip-path="url(#terminal-2518989376-line-34)">│</text><text class="terminal-2518989376-r4" x="24.4" y="849.6" textLength="12.2" clip-path="url(#terminal-2518989376-line-34)">-</text><text class="terminal-2518989376-r4" x="36.6" y="849.6" textLength="61" clip-path="url(#terminal-2518989376-line-34)">-help</text><text class="terminal-2518989376-r6" x="158.6" y="849.6" textLength="24.4" clip-path="url(#terminal-25 [...]
+</text><text class="terminal-2518989376-r5" x="0" y="874" textLength="1464" clip-path="url(#terminal-2518989376-line-35)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2518989376-r2" x="1464" y="874" textLength="12.2" clip-path="url(#terminal-2518989376-line-35)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_k8s_upload-k8s-image.svg b/images/breeze/output_k8s_upload-k8s-image.svg
index c3310fee2b..e92ced8090 100644
--- a/images/breeze/output_k8s_upload-k8s-image.svg
+++ b/images/breeze/output_k8s_upload-k8s-image.svg
@@ -1,4 +1,4 @@
-<svg class="rich-terminal" viewBox="0 0 1482 782.0" xmlns="http://www.w3.org/2000/svg">
+<svg class="rich-terminal" viewBox="0 0 1482 806.4" xmlns="http://www.w3.org/2000/svg">
     <!-- Generated with Rich https://www.textualize.io -->
     <style>
 
@@ -19,161 +19,165 @@
         font-weight: 700;
     }
 
-    .terminal-3870231761-matrix {
+    .terminal-4132905069-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-3870231761-title {
+    .terminal-4132905069-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-3870231761-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-3870231761-r2 { fill: #c5c8c6 }
-.terminal-3870231761-r3 { fill: #d0b344;font-weight: bold }
-.terminal-3870231761-r4 { fill: #868887 }
-.terminal-3870231761-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-3870231761-r6 { fill: #98a84b;font-weight: bold }
-.terminal-3870231761-r7 { fill: #8d7b39 }
+    .terminal-4132905069-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-4132905069-r2 { fill: #c5c8c6 }
+.terminal-4132905069-r3 { fill: #d0b344;font-weight: bold }
+.terminal-4132905069-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-4132905069-r5 { fill: #868887 }
+.terminal-4132905069-r6 { fill: #98a84b;font-weight: bold }
+.terminal-4132905069-r7 { fill: #8d7b39 }
     </style>
 
     <defs>
-    <clipPath id="terminal-3870231761-clip-terminal">
-      <rect x="0" y="0" width="1463.0" height="731.0" />
+    <clipPath id="terminal-4132905069-clip-terminal">
+      <rect x="0" y="0" width="1463.0" height="755.4" />
     </clipPath>
-    <clipPath id="terminal-3870231761-line-0">
+    <clipPath id="terminal-4132905069-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-1">
+<clipPath id="terminal-4132905069-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-2">
+<clipPath id="terminal-4132905069-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-3">
+<clipPath id="terminal-4132905069-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-4">
+<clipPath id="terminal-4132905069-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-5">
+<clipPath id="terminal-4132905069-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-6">
+<clipPath id="terminal-4132905069-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-7">
+<clipPath id="terminal-4132905069-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-8">
+<clipPath id="terminal-4132905069-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-9">
+<clipPath id="terminal-4132905069-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-10">
+<clipPath id="terminal-4132905069-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-11">
+<clipPath id="terminal-4132905069-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-12">
+<clipPath id="terminal-4132905069-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-13">
+<clipPath id="terminal-4132905069-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-14">
+<clipPath id="terminal-4132905069-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-15">
+<clipPath id="terminal-4132905069-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-16">
+<clipPath id="terminal-4132905069-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-17">
+<clipPath id="terminal-4132905069-line-17">
     <rect x="0" y="416.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-18">
+<clipPath id="terminal-4132905069-line-18">
     <rect x="0" y="440.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-19">
+<clipPath id="terminal-4132905069-line-19">
     <rect x="0" y="465.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-20">
+<clipPath id="terminal-4132905069-line-20">
     <rect x="0" y="489.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-21">
+<clipPath id="terminal-4132905069-line-21">
     <rect x="0" y="513.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-22">
+<clipPath id="terminal-4132905069-line-22">
     <rect x="0" y="538.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-23">
+<clipPath id="terminal-4132905069-line-23">
     <rect x="0" y="562.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-24">
+<clipPath id="terminal-4132905069-line-24">
     <rect x="0" y="587.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-25">
+<clipPath id="terminal-4132905069-line-25">
     <rect x="0" y="611.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-26">
+<clipPath id="terminal-4132905069-line-26">
     <rect x="0" y="635.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-27">
+<clipPath id="terminal-4132905069-line-27">
     <rect x="0" y="660.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3870231761-line-28">
+<clipPath id="terminal-4132905069-line-28">
     <rect x="0" y="684.7" width="1464" height="24.65"/>
             </clipPath>
+<clipPath id="terminal-4132905069-line-29">
+    <rect x="0" y="709.1" width="1464" height="24.65"/>
+            </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="780" rx="8"/><text class="terminal-3870231761-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;k8s&#160;upload-k8s-image</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="804.4" rx="8"/><text class="terminal-4132905069-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;k8s&#160;upload-k8s-image</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-3870231761-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-4132905069-clip-terminal)">
     
-    <g class="terminal-3870231761-matrix">
-    <text class="terminal-3870231761-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-3870231761-line-0)">
-</text><text class="terminal-3870231761-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-3870231761-line-1)">Usage:&#160;</text><text class="terminal-3870231761-r1" x="97.6" y="44.4" textLength="451.4" clip-path="url(#terminal-3870231761-line-1)">breeze&#160;k8s&#160;upload-k8s-image&#160;[OPTIONS]</text><text class="terminal-3870231761-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-3870231761-line-1)">
-</text><text class="terminal-3870231761-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-3870231761-line-2)">
-</text><text class="terminal-3870231761-r2" x="12.2" y="93.2" textLength="1110.2" clip-path="url(#terminal-3870231761-line-3)">Upload&#160;k8s-ready&#160;airflow&#160;image&#160;to&#160;the&#160;KinD&#160;cluster&#160;(optionally&#160;to&#160;all&#160;clusters&#160;in&#160;parallel)</text><text class="terminal-3870231761-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-3870231761-line-3)">
-</text><text class="terminal-3870231761-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-3870231761-line-4)">
-</text><text class="terminal-3870231761-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-3870231761-line-5)">╭─</text><text class="terminal-3870231761-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-3870231761-line-5)">&#160;Upload&#160;image&#160;flags&#160;────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3870231761-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-3 [...]
-</text><text class="terminal-3870231761-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-3870231761-line-6)">│</text><text class="terminal-3870231761-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-3870231761-line-6)">-</text><text class="terminal-3870231761-r5" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-3870231761-line-6)">-python</text><text class="terminal-3870231761-r6" x="292.8" y="166.4" textLength="24.4" clip-path="url(#terminal-3 [...]
-</text><text class="terminal-3870231761-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-3870231761-line-7)">│</text><text class="terminal-3870231761-r4" x="341.6" y="190.8" textLength="732" clip-path="url(#terminal-3870231761-line-7)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-3870231761-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-3870231761-line-8)">│</text><text class="terminal-3870231761-r5" x="24.4" y="215.2" textLength="12.2" clip-path="url(#terminal-3870231761-line-8)">-</text><text class="terminal-3870231761-r5" x="36.6" y="215.2" textLength="134.2" clip-path="url(#terminal-3870231761-line-8)">-kubernetes</text><text class="terminal-3870231761-r5" x="170.8" y="215.2" textLength="97.6" clip-path="url(#termi [...]
-</text><text class="terminal-3870231761-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-3870231761-line-9)">│</text><text class="terminal-3870231761-r7" x="341.6" y="239.6" textLength="658.8" clip-path="url(#terminal-3870231761-line-9)">(&gt;v1.25.2&lt;&#160;|&#160;v1.24.6&#160;|&#160;v1.23.12&#160;|&#160;v1.22.15&#160;|&#160;v1.21.14)</text><text class="terminal-3870231761-r4" x="1451.8" y="239.6" textLength="12.2" clip-path="url(#terminal-3870231761-line-9)">│</text><tex [...]
-</text><text class="terminal-3870231761-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-3870231761-line-10)">│</text><text class="terminal-3870231761-r4" x="341.6" y="264" textLength="658.8" clip-path="url(#terminal-3870231761-line-10)">[default:&#160;v1.25.2]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</t [...]
-</text><text class="terminal-3870231761-r4" x="0" y="288.4" textLength="1464" clip-path="url(#terminal-3870231761-line-11)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3870231761-r2" x="1464" y="288.4" textLength="12.2" clip-path="url(#terminal-3870231761-line-11)">
-</text><text class="terminal-3870231761-r4" x="0" y="312.8" textLength="24.4" clip-path="url(#terminal-3870231761-line-12)">╭─</text><text class="terminal-3870231761-r4" x="24.4" y="312.8" textLength="1415.2" clip-path="url(#terminal-3870231761-line-12)">&#160;Parallel&#160;options&#160;──────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3870231761-r4" x="1439.6" y="312.8" textLength="24.4" clip-path="url(#termina [...]
-</text><text class="terminal-3870231761-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-3870231761-line-13)">│</text><text class="terminal-3870231761-r5" x="24.4" y="337.2" textLength="12.2" clip-path="url(#terminal-3870231761-line-13)">-</text><text class="terminal-3870231761-r5" x="36.6" y="337.2" textLength="48.8" clip-path="url(#terminal-3870231761-line-13)">-run</text><text class="terminal-3870231761-r5" x="85.4" y="337.2" textLength="146.4" clip-path="url(#terminal-3 [...]
-</text><text class="terminal-3870231761-r4" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-3870231761-line-14)">│</text><text class="terminal-3870231761-r5" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-3870231761-line-14)">-</text><text class="terminal-3870231761-r5" x="36.6" y="361.6" textLength="146.4" clip-path="url(#terminal-3870231761-line-14)">-parallelism</text><text class="terminal-3870231761-r2" x="378.2" y="361.6" textLength="915" clip-path="url(#te [...]
-</text><text class="terminal-3870231761-r4" x="0" y="386" textLength="12.2" clip-path="url(#terminal-3870231761-line-15)">│</text><text class="terminal-3870231761-r7" x="378.2" y="386" textLength="915" clip-path="url(#terminal-3870231761-line-15)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
-</text><text class="terminal-3870231761-r4" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-3870231761-line-16)">│</text><text class="terminal-3870231761-r4" x="378.2" y="410.4" textLength="915" clip-path="url(#terminal-3870231761-line-16)">[default:&#160;4;&#160;1&lt;=x&lt;=8]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-3870231761-r4" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-3870231761-line-17)">│</text><text class="terminal-3870231761-r5" x="24.4" y="434.8" textLength="12.2" clip-path="url(#terminal-3870231761-line-17)">-</text><text class="terminal-3870231761-r5" x="36.6" y="434.8" textLength="85.4" clip-path="url(#terminal-3870231761-line-17)">-python</text><text class="terminal-3870231761-r5" x="122" y="434.8" textLength="109.8" clip-path="url(#terminal [...]
-</text><text class="terminal-3870231761-r4" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-3870231761-line-18)">│</text><text class="terminal-3870231761-r4" x="378.2" y="459.2" textLength="951.6" clip-path="url(#terminal-3870231761-line-18)">[default:&#160;3.7&#160;3.8&#160;3.9&#160;3.10]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-3870231761-r4" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-3870231761-line-19)">│</text><text class="terminal-3870231761-r5" x="24.4" y="483.6" textLength="12.2" clip-path="url(#terminal-3870231761-line-19)">-</text><text class="terminal-3870231761-r5" x="36.6" y="483.6" textLength="134.2" clip-path="url(#terminal-3870231761-line-19)">-kubernetes</text><text class="terminal-3870231761-r5" x="170.8" y="483.6" textLength="109.8" clip-path="url(#t [...]
-</text><text class="terminal-3870231761-r4" x="0" y="508" textLength="12.2" clip-path="url(#terminal-3870231761-line-20)">│</text><text class="terminal-3870231761-r4" x="378.2" y="508" textLength="756.4" clip-path="url(#terminal-3870231761-line-20)">[default:&#160;v1.25.2&#160;v1.24.6&#160;v1.23.12&#160;v1.22.15&#160;v1.21.14]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-3870231761-r4" x="1451.8" y="508" textLength="12.2" clip-path="url(#terminal-3870 [...]
-</text><text class="terminal-3870231761-r4" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-3870231761-line-21)">│</text><text class="terminal-3870231761-r5" x="24.4" y="532.4" textLength="12.2" clip-path="url(#terminal-3870231761-line-21)">-</text><text class="terminal-3870231761-r5" x="36.6" y="532.4" textLength="61" clip-path="url(#terminal-3870231761-line-21)">-skip</text><text class="terminal-3870231761-r5" x="97.6" y="532.4" textLength="97.6" clip-path="url(#terminal-387 [...]
-</text><text class="terminal-3870231761-r4" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-3870231761-line-22)">│</text><text class="terminal-3870231761-r5" x="24.4" y="556.8" textLength="12.2" clip-path="url(#terminal-3870231761-line-22)">-</text><text class="terminal-3870231761-r5" x="36.6" y="556.8" textLength="73.2" clip-path="url(#terminal-3870231761-line-22)">-debug</text><text class="terminal-3870231761-r5" x="109.8" y="556.8" textLength="122" clip-path="url(#terminal- [...]
-</text><text class="terminal-3870231761-r4" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-3870231761-line-23)">│</text><text class="terminal-3870231761-r5" x="24.4" y="581.2" textLength="12.2" clip-path="url(#terminal-3870231761-line-23)">-</text><text class="terminal-3870231761-r5" x="36.6" y="581.2" textLength="97.6" clip-path="url(#terminal-3870231761-line-23)">-include</text><text class="terminal-3870231761-r5" x="134.2" y="581.2" textLength="195.2" clip-path="url(#termi [...]
-</text><text class="terminal-3870231761-r4" x="0" y="605.6" textLength="1464" clip-path="url(#terminal-3870231761-line-24)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3870231761-r2" x="1464" y="605.6" textLength="12.2" clip-path="url(#terminal-3870231761-line-24)">
-</text><text class="terminal-3870231761-r4" x="0" y="630" textLength="24.4" clip-path="url(#terminal-3870231761-line-25)">╭─</text><text class="terminal-3870231761-r4" x="24.4" y="630" textLength="1415.2" clip-path="url(#terminal-3870231761-line-25)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3870231761-r4" x="1439.6" y="630" textLength="24.4" clip-path="url(#terminal-3870 [...]
-</text><text class="terminal-3870231761-r4" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-3870231761-line-26)">│</text><text class="terminal-3870231761-r5" x="24.4" y="654.4" textLength="12.2" clip-path="url(#terminal-3870231761-line-26)">-</text><text class="terminal-3870231761-r5" x="36.6" y="654.4" textLength="97.6" clip-path="url(#terminal-3870231761-line-26)">-verbose</text><text class="terminal-3870231761-r6" x="158.6" y="654.4" textLength="24.4" clip-path="url(#termin [...]
-</text><text class="terminal-3870231761-r4" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-3870231761-line-27)">│</text><text class="terminal-3870231761-r5" x="24.4" y="678.8" textLength="12.2" clip-path="url(#terminal-3870231761-line-27)">-</text><text class="terminal-3870231761-r5" x="36.6" y="678.8" textLength="48.8" clip-path="url(#terminal-3870231761-line-27)">-dry</text><text class="terminal-3870231761-r5" x="85.4" y="678.8" textLength="48.8" clip-path="url(#terminal-38 [...]
-</text><text class="terminal-3870231761-r4" x="0" y="703.2" textLength="12.2" clip-path="url(#terminal-3870231761-line-28)">│</text><text class="terminal-3870231761-r5" x="24.4" y="703.2" textLength="12.2" clip-path="url(#terminal-3870231761-line-28)">-</text><text class="terminal-3870231761-r5" x="36.6" y="703.2" textLength="61" clip-path="url(#terminal-3870231761-line-28)">-help</text><text class="terminal-3870231761-r6" x="158.6" y="703.2" textLength="24.4" clip-path="url(#terminal-38 [...]
-</text><text class="terminal-3870231761-r4" x="0" y="727.6" textLength="1464" clip-path="url(#terminal-3870231761-line-29)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3870231761-r2" x="1464" y="727.6" textLength="12.2" clip-path="url(#terminal-3870231761-line-29)">
+    <g class="terminal-4132905069-matrix">
+    <text class="terminal-4132905069-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-4132905069-line-0)">
+</text><text class="terminal-4132905069-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-4132905069-line-1)">Usage:&#160;</text><text class="terminal-4132905069-r1" x="97.6" y="44.4" textLength="353.8" clip-path="url(#terminal-4132905069-line-1)">breeze&#160;k8s&#160;upload-k8s-image&#160;[</text><text class="terminal-4132905069-r4" x="451.4" y="44.4" textLength="85.4" clip-path="url(#terminal-4132905069-line-1)">OPTIONS</text><text class="terminal-4132905069-r1" x="536.8 [...]
+</text><text class="terminal-4132905069-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-4132905069-line-2)">
+</text><text class="terminal-4132905069-r2" x="12.2" y="93.2" textLength="1110.2" clip-path="url(#terminal-4132905069-line-3)">Upload&#160;k8s-ready&#160;airflow&#160;image&#160;to&#160;the&#160;KinD&#160;cluster&#160;(optionally&#160;to&#160;all&#160;clusters&#160;in&#160;parallel)</text><text class="terminal-4132905069-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-4132905069-line-3)">
+</text><text class="terminal-4132905069-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-4132905069-line-4)">
+</text><text class="terminal-4132905069-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-4132905069-line-5)">╭─</text><text class="terminal-4132905069-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-4132905069-line-5)">&#160;Upload&#160;image&#160;flags&#160;────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-4132905069-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-4 [...]
+</text><text class="terminal-4132905069-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-4132905069-line-6)">│</text><text class="terminal-4132905069-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-4132905069-line-6)">-</text><text class="terminal-4132905069-r4" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-4132905069-line-6)">-python</text><text class="terminal-4132905069-r6" x="292.8" y="166.4" textLength="24.4" clip-path="url(#terminal-4 [...]
+</text><text class="terminal-4132905069-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-4132905069-line-7)">│</text><text class="terminal-4132905069-r7" x="341.6" y="190.8" textLength="732" clip-path="url(#terminal-4132905069-line-7)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10&#160;|&#160;3.11)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;< [...]
+</text><text class="terminal-4132905069-r5" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-4132905069-line-8)">│</text><text class="terminal-4132905069-r5" x="341.6" y="215.2" textLength="732" clip-path="url(#terminal-4132905069-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-4132905069-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-4132905069-line-9)">│</text><text class="terminal-4132905069-r4" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-4132905069-line-9)">-</text><text class="terminal-4132905069-r4" x="36.6" y="239.6" textLength="134.2" clip-path="url(#terminal-4132905069-line-9)">-kubernetes</text><text class="terminal-4132905069-r4" x="170.8" y="239.6" textLength="97.6" clip-path="url(#termi [...]
+</text><text class="terminal-4132905069-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-4132905069-line-10)">│</text><text class="terminal-4132905069-r7" x="341.6" y="264" textLength="658.8" clip-path="url(#terminal-4132905069-line-10)">(&gt;v1.25.2&lt;&#160;|&#160;v1.24.6&#160;|&#160;v1.23.12&#160;|&#160;v1.22.15&#160;|&#160;v1.21.14)</text><text class="terminal-4132905069-r5" x="1451.8" y="264" textLength="12.2" clip-path="url(#terminal-4132905069-line-10)">│</text><text c [...]
+</text><text class="terminal-4132905069-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-4132905069-line-11)">│</text><text class="terminal-4132905069-r5" x="341.6" y="288.4" textLength="658.8" clip-path="url(#terminal-4132905069-line-11)">[default:&#160;v1.25.2]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-4132905069-r5" x="0" y="312.8" textLength="1464" clip-path="url(#terminal-4132905069-line-12)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-4132905069-r2" x="1464" y="312.8" textLength="12.2" clip-path="url(#terminal-4132905069-line-12)">
+</text><text class="terminal-4132905069-r5" x="0" y="337.2" textLength="24.4" clip-path="url(#terminal-4132905069-line-13)">╭─</text><text class="terminal-4132905069-r5" x="24.4" y="337.2" textLength="1415.2" clip-path="url(#terminal-4132905069-line-13)">&#160;Parallel&#160;options&#160;──────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-4132905069-r5" x="1439.6" y="337.2" textLength="24.4" clip-path="url(#termina [...]
+</text><text class="terminal-4132905069-r5" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-4132905069-line-14)">│</text><text class="terminal-4132905069-r4" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-4132905069-line-14)">-</text><text class="terminal-4132905069-r4" x="36.6" y="361.6" textLength="48.8" clip-path="url(#terminal-4132905069-line-14)">-run</text><text class="terminal-4132905069-r4" x="85.4" y="361.6" textLength="146.4" clip-path="url(#terminal-4 [...]
+</text><text class="terminal-4132905069-r5" x="0" y="386" textLength="12.2" clip-path="url(#terminal-4132905069-line-15)">│</text><text class="terminal-4132905069-r4" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-4132905069-line-15)">-</text><text class="terminal-4132905069-r4" x="36.6" y="386" textLength="146.4" clip-path="url(#terminal-4132905069-line-15)">-parallelism</text><text class="terminal-4132905069-r2" x="378.2" y="386" textLength="915" clip-path="url(#terminal-4 [...]
+</text><text class="terminal-4132905069-r5" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-4132905069-line-16)">│</text><text class="terminal-4132905069-r7" x="378.2" y="410.4" textLength="915" clip-path="url(#terminal-4132905069-line-16)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
+</text><text class="terminal-4132905069-r5" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-4132905069-line-17)">│</text><text class="terminal-4132905069-r5" x="378.2" y="434.8" textLength="915" clip-path="url(#terminal-4132905069-line-17)">[default:&#160;4;&#160;1&lt;=x&lt;=8]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-4132905069-r5" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-4132905069-line-18)">│</text><text class="terminal-4132905069-r4" x="24.4" y="459.2" textLength="12.2" clip-path="url(#terminal-4132905069-line-18)">-</text><text class="terminal-4132905069-r4" x="36.6" y="459.2" textLength="85.4" clip-path="url(#terminal-4132905069-line-18)">-python</text><text class="terminal-4132905069-r4" x="122" y="459.2" textLength="109.8" clip-path="url(#terminal [...]
+</text><text class="terminal-4132905069-r5" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-4132905069-line-19)">│</text><text class="terminal-4132905069-r5" x="378.2" y="483.6" textLength="951.6" clip-path="url(#terminal-4132905069-line-19)">[default:&#160;3.7&#160;3.8&#160;3.9&#160;3.10&#160;3.11]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-4132905069-r5" x="0" y="508" textLength="12.2" clip-path="url(#terminal-4132905069-line-20)">│</text><text class="terminal-4132905069-r4" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-4132905069-line-20)">-</text><text class="terminal-4132905069-r4" x="36.6" y="508" textLength="134.2" clip-path="url(#terminal-4132905069-line-20)">-kubernetes</text><text class="terminal-4132905069-r4" x="170.8" y="508" textLength="109.8" clip-path="url(#terminal- [...]
+</text><text class="terminal-4132905069-r5" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-4132905069-line-21)">│</text><text class="terminal-4132905069-r5" x="378.2" y="532.4" textLength="756.4" clip-path="url(#terminal-4132905069-line-21)">[default:&#160;v1.25.2&#160;v1.24.6&#160;v1.23.12&#160;v1.22.15&#160;v1.21.14]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-4132905069-r5" x="1451.8" y="532.4" textLength="12.2" clip-path="url(#termina [...]
+</text><text class="terminal-4132905069-r5" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-4132905069-line-22)">│</text><text class="terminal-4132905069-r4" x="24.4" y="556.8" textLength="12.2" clip-path="url(#terminal-4132905069-line-22)">-</text><text class="terminal-4132905069-r4" x="36.6" y="556.8" textLength="61" clip-path="url(#terminal-4132905069-line-22)">-skip</text><text class="terminal-4132905069-r4" x="97.6" y="556.8" textLength="97.6" clip-path="url(#terminal-413 [...]
+</text><text class="terminal-4132905069-r5" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-4132905069-line-23)">│</text><text class="terminal-4132905069-r4" x="24.4" y="581.2" textLength="12.2" clip-path="url(#terminal-4132905069-line-23)">-</text><text class="terminal-4132905069-r4" x="36.6" y="581.2" textLength="73.2" clip-path="url(#terminal-4132905069-line-23)">-debug</text><text class="terminal-4132905069-r4" x="109.8" y="581.2" textLength="122" clip-path="url(#terminal- [...]
+</text><text class="terminal-4132905069-r5" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-4132905069-line-24)">│</text><text class="terminal-4132905069-r4" x="24.4" y="605.6" textLength="12.2" clip-path="url(#terminal-4132905069-line-24)">-</text><text class="terminal-4132905069-r4" x="36.6" y="605.6" textLength="97.6" clip-path="url(#terminal-4132905069-line-24)">-include</text><text class="terminal-4132905069-r4" x="134.2" y="605.6" textLength="195.2" clip-path="url(#termi [...]
+</text><text class="terminal-4132905069-r5" x="0" y="630" textLength="1464" clip-path="url(#terminal-4132905069-line-25)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-4132905069-r2" x="1464" y="630" textLength="12.2" clip-path="url(#terminal-4132905069-line-25)">
+</text><text class="terminal-4132905069-r5" x="0" y="654.4" textLength="24.4" clip-path="url(#terminal-4132905069-line-26)">╭─</text><text class="terminal-4132905069-r5" x="24.4" y="654.4" textLength="1415.2" clip-path="url(#terminal-4132905069-line-26)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-4132905069-r5" x="1439.6" y="654.4" textLength="24.4" clip-path="url(#termina [...]
+</text><text class="terminal-4132905069-r5" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-4132905069-line-27)">│</text><text class="terminal-4132905069-r4" x="24.4" y="678.8" textLength="12.2" clip-path="url(#terminal-4132905069-line-27)">-</text><text class="terminal-4132905069-r4" x="36.6" y="678.8" textLength="97.6" clip-path="url(#terminal-4132905069-line-27)">-verbose</text><text class="terminal-4132905069-r6" x="158.6" y="678.8" textLength="24.4" clip-path="url(#termin [...]
+</text><text class="terminal-4132905069-r5" x="0" y="703.2" textLength="12.2" clip-path="url(#terminal-4132905069-line-28)">│</text><text class="terminal-4132905069-r4" x="24.4" y="703.2" textLength="12.2" clip-path="url(#terminal-4132905069-line-28)">-</text><text class="terminal-4132905069-r4" x="36.6" y="703.2" textLength="48.8" clip-path="url(#terminal-4132905069-line-28)">-dry</text><text class="terminal-4132905069-r4" x="85.4" y="703.2" textLength="48.8" clip-path="url(#terminal-41 [...]
+</text><text class="terminal-4132905069-r5" x="0" y="727.6" textLength="12.2" clip-path="url(#terminal-4132905069-line-29)">│</text><text class="terminal-4132905069-r4" x="24.4" y="727.6" textLength="12.2" clip-path="url(#terminal-4132905069-line-29)">-</text><text class="terminal-4132905069-r4" x="36.6" y="727.6" textLength="61" clip-path="url(#terminal-4132905069-line-29)">-help</text><text class="terminal-4132905069-r6" x="158.6" y="727.6" textLength="24.4" clip-path="url(#terminal-41 [...]
+</text><text class="terminal-4132905069-r5" x="0" y="752" textLength="1464" clip-path="url(#terminal-4132905069-line-30)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-4132905069-r2" x="1464" y="752" textLength="12.2" clip-path="url(#terminal-4132905069-line-30)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_prod-image.svg b/images/breeze/output_prod-image.svg
index 95374cf21d..eb88437f63 100644
--- a/images/breeze/output_prod-image.svg
+++ b/images/breeze/output_prod-image.svg
@@ -35,8 +35,8 @@
     .terminal-3437848795-r1 { fill: #c5c8c6;font-weight: bold }
 .terminal-3437848795-r2 { fill: #c5c8c6 }
 .terminal-3437848795-r3 { fill: #d0b344;font-weight: bold }
-.terminal-3437848795-r4 { fill: #868887 }
-.terminal-3437848795-r5 { fill: #68a0b3;font-weight: bold }
+.terminal-3437848795-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-3437848795-r5 { fill: #868887 }
 .terminal-3437848795-r6 { fill: #98a84b;font-weight: bold }
     </style>
 
@@ -93,18 +93,18 @@
     
     <g class="terminal-3437848795-matrix">
     <text class="terminal-3437848795-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-3437848795-line-0)">
-</text><text class="terminal-3437848795-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-3437848795-line-1)">Usage:&#160;</text><text class="terminal-3437848795-r1" x="97.6" y="44.4" textLength="549" clip-path="url(#terminal-3437848795-line-1)">breeze&#160;prod-image&#160;[OPTIONS]&#160;COMMAND&#160;[ARGS]...</text><text class="terminal-3437848795-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-3437848795-line-1)">
+</text><text class="terminal-3437848795-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-3437848795-line-1)">Usage:&#160;</text><text class="terminal-3437848795-r1" x="97.6" y="44.4" textLength="231.8" clip-path="url(#terminal-3437848795-line-1)">breeze&#160;prod-image&#160;[</text><text class="terminal-3437848795-r4" x="329.4" y="44.4" textLength="85.4" clip-path="url(#terminal-3437848795-line-1)">OPTIONS</text><text class="terminal-3437848795-r1" x="414.8" y="44.4" text [...]
 </text><text class="terminal-3437848795-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-3437848795-line-2)">
-</text><text class="terminal-3437848795-r2" x="12.2" y="93.2" textLength="732" clip-path="url(#terminal-3437848795-line-3)">Tools&#160;that&#160;developers&#160;can&#160;use&#160;to&#160;manually&#160;manage&#160;PROD&#160;images</text><text class="terminal-3437848795-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-3437848795-line-3)">
+</text><text class="terminal-3437848795-r2" x="12.2" y="93.2" textLength="597.8" clip-path="url(#terminal-3437848795-line-3)">Tools&#160;that&#160;developers&#160;can&#160;use&#160;to&#160;manually&#160;manage&#160;</text><text class="terminal-3437848795-r4" x="610" y="93.2" textLength="48.8" clip-path="url(#terminal-3437848795-line-3)">PROD</text><text class="terminal-3437848795-r2" x="658.8" y="93.2" textLength="85.4" clip-path="url(#terminal-3437848795-line-3)">&#160;images</text><tex [...]
 </text><text class="terminal-3437848795-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-3437848795-line-4)">
-</text><text class="terminal-3437848795-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-3437848795-line-5)">╭─</text><text class="terminal-3437848795-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-3437848795-line-5)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3437848795-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-343784 [...]
-</text><text class="terminal-3437848795-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-3437848795-line-6)">│</text><text class="terminal-3437848795-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-3437848795-line-6)">-</text><text class="terminal-3437848795-r5" x="36.6" y="166.4" textLength="61" clip-path="url(#terminal-3437848795-line-6)">-help</text><text class="terminal-3437848795-r6" x="122" y="166.4" textLength="24.4" clip-path="url(#terminal-3437848 [...]
-</text><text class="terminal-3437848795-r4" x="0" y="190.8" textLength="1464" clip-path="url(#terminal-3437848795-line-7)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3437848795-r2" x="1464" y="190.8" textLength="12.2" clip-path="url(#terminal-3437848795-line-7)">
-</text><text class="terminal-3437848795-r4" x="0" y="215.2" textLength="24.4" clip-path="url(#terminal-3437848795-line-8)">╭─</text><text class="terminal-3437848795-r4" x="24.4" y="215.2" textLength="1415.2" clip-path="url(#terminal-3437848795-line-8)">&#160;Production&#160;Image&#160;tools&#160;────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3437848795-r4" x="1439.6" y="215.2" textLength="24.4" clip-path="url(#term [...]
-</text><text class="terminal-3437848795-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-3437848795-line-9)">│</text><text class="terminal-3437848795-r5" x="24.4" y="239.6" textLength="85.4" clip-path="url(#terminal-3437848795-line-9)">build&#160;&#160;</text><text class="terminal-3437848795-r2" x="134.2" y="239.6" textLength="1305.4" clip-path="url(#terminal-3437848795-line-9)">Build&#160;Production&#160;image.&#160;Include&#160;building&#160;multiple&#160;images&#160;for& [...]
-</text><text class="terminal-3437848795-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-3437848795-line-10)">│</text><text class="terminal-3437848795-r5" x="24.4" y="264" textLength="85.4" clip-path="url(#terminal-3437848795-line-10)">pull&#160;&#160;&#160;</text><text class="terminal-3437848795-r2" x="134.2" y="264" textLength="1305.4" clip-path="url(#terminal-3437848795-line-10)">Pull&#160;and&#160;optionally&#160;verify&#160;Production&#160;images&#160;-&#160;possibly&#16 [...]
-</text><text class="terminal-3437848795-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-3437848795-line-11)">│</text><text class="terminal-3437848795-r5" x="24.4" y="288.4" textLength="85.4" clip-path="url(#terminal-3437848795-line-11)">verify&#160;</text><text class="terminal-3437848795-r2" x="134.2" y="288.4" textLength="1305.4" clip-path="url(#terminal-3437848795-line-11)">Verify&#160;Production&#160;image.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
-</text><text class="terminal-3437848795-r4" x="0" y="312.8" textLength="1464" clip-path="url(#terminal-3437848795-line-12)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3437848795-r2" x="1464" y="312.8" textLength="12.2" clip-path="url(#terminal-3437848795-line-12)">
+</text><text class="terminal-3437848795-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-3437848795-line-5)">╭─</text><text class="terminal-3437848795-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-3437848795-line-5)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3437848795-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-343784 [...]
+</text><text class="terminal-3437848795-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-3437848795-line-6)">│</text><text class="terminal-3437848795-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-3437848795-line-6)">-</text><text class="terminal-3437848795-r4" x="36.6" y="166.4" textLength="61" clip-path="url(#terminal-3437848795-line-6)">-help</text><text class="terminal-3437848795-r6" x="122" y="166.4" textLength="24.4" clip-path="url(#terminal-3437848 [...]
+</text><text class="terminal-3437848795-r5" x="0" y="190.8" textLength="1464" clip-path="url(#terminal-3437848795-line-7)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3437848795-r2" x="1464" y="190.8" textLength="12.2" clip-path="url(#terminal-3437848795-line-7)">
+</text><text class="terminal-3437848795-r5" x="0" y="215.2" textLength="24.4" clip-path="url(#terminal-3437848795-line-8)">╭─</text><text class="terminal-3437848795-r5" x="24.4" y="215.2" textLength="1415.2" clip-path="url(#terminal-3437848795-line-8)">&#160;Production&#160;Image&#160;tools&#160;────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3437848795-r5" x="1439.6" y="215.2" textLength="24.4" clip-path="url(#term [...]
+</text><text class="terminal-3437848795-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-3437848795-line-9)">│</text><text class="terminal-3437848795-r4" x="24.4" y="239.6" textLength="85.4" clip-path="url(#terminal-3437848795-line-9)">build&#160;&#160;</text><text class="terminal-3437848795-r2" x="134.2" y="239.6" textLength="1305.4" clip-path="url(#terminal-3437848795-line-9)">Build&#160;Production&#160;image.&#160;Include&#160;building&#160;multiple&#160;images&#160;for& [...]
+</text><text class="terminal-3437848795-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-3437848795-line-10)">│</text><text class="terminal-3437848795-r4" x="24.4" y="264" textLength="85.4" clip-path="url(#terminal-3437848795-line-10)">pull&#160;&#160;&#160;</text><text class="terminal-3437848795-r2" x="134.2" y="264" textLength="1305.4" clip-path="url(#terminal-3437848795-line-10)">Pull&#160;and&#160;optionally&#160;verify&#160;Production&#160;images&#160;-&#160;possibly&#16 [...]
+</text><text class="terminal-3437848795-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-3437848795-line-11)">│</text><text class="terminal-3437848795-r4" x="24.4" y="288.4" textLength="85.4" clip-path="url(#terminal-3437848795-line-11)">verify&#160;</text><text class="terminal-3437848795-r2" x="134.2" y="288.4" textLength="1305.4" clip-path="url(#terminal-3437848795-line-11)">Verify&#160;Production&#160;image.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
+</text><text class="terminal-3437848795-r5" x="0" y="312.8" textLength="1464" clip-path="url(#terminal-3437848795-line-12)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3437848795-r2" x="1464" y="312.8" textLength="12.2" clip-path="url(#terminal-3437848795-line-12)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_prod-image_build.svg b/images/breeze/output_prod-image_build.svg
index e0c261ca4f..ed2f0e6ae2 100644
--- a/images/breeze/output_prod-image_build.svg
+++ b/images/breeze/output_prod-image_build.svg
@@ -19,393 +19,393 @@
         font-weight: 700;
     }
 
-    .terminal-2287654653-matrix {
+    .terminal-1126029279-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-2287654653-title {
+    .terminal-1126029279-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-2287654653-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-2287654653-r2 { fill: #c5c8c6 }
-.terminal-2287654653-r3 { fill: #d0b344;font-weight: bold }
-.terminal-2287654653-r4 { fill: #868887 }
-.terminal-2287654653-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-2287654653-r6 { fill: #98a84b;font-weight: bold }
-.terminal-2287654653-r7 { fill: #8d7b39 }
+    .terminal-1126029279-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-1126029279-r2 { fill: #c5c8c6 }
+.terminal-1126029279-r3 { fill: #d0b344;font-weight: bold }
+.terminal-1126029279-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-1126029279-r5 { fill: #868887 }
+.terminal-1126029279-r6 { fill: #98a84b;font-weight: bold }
+.terminal-1126029279-r7 { fill: #8d7b39 }
     </style>
 
     <defs>
-    <clipPath id="terminal-2287654653-clip-terminal">
+    <clipPath id="terminal-1126029279-clip-terminal">
       <rect x="0" y="0" width="1463.0" height="2146.2" />
     </clipPath>
-    <clipPath id="terminal-2287654653-line-0">
+    <clipPath id="terminal-1126029279-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-1">
+<clipPath id="terminal-1126029279-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-2">
+<clipPath id="terminal-1126029279-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-3">
+<clipPath id="terminal-1126029279-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-4">
+<clipPath id="terminal-1126029279-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-5">
+<clipPath id="terminal-1126029279-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-6">
+<clipPath id="terminal-1126029279-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-7">
+<clipPath id="terminal-1126029279-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-8">
+<clipPath id="terminal-1126029279-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-9">
+<clipPath id="terminal-1126029279-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-10">
+<clipPath id="terminal-1126029279-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-11">
+<clipPath id="terminal-1126029279-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-12">
+<clipPath id="terminal-1126029279-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-13">
+<clipPath id="terminal-1126029279-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-14">
+<clipPath id="terminal-1126029279-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-15">
+<clipPath id="terminal-1126029279-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-16">
+<clipPath id="terminal-1126029279-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-17">
+<clipPath id="terminal-1126029279-line-17">
     <rect x="0" y="416.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-18">
+<clipPath id="terminal-1126029279-line-18">
     <rect x="0" y="440.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-19">
+<clipPath id="terminal-1126029279-line-19">
     <rect x="0" y="465.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-20">
+<clipPath id="terminal-1126029279-line-20">
     <rect x="0" y="489.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-21">
+<clipPath id="terminal-1126029279-line-21">
     <rect x="0" y="513.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-22">
+<clipPath id="terminal-1126029279-line-22">
     <rect x="0" y="538.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-23">
+<clipPath id="terminal-1126029279-line-23">
     <rect x="0" y="562.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-24">
+<clipPath id="terminal-1126029279-line-24">
     <rect x="0" y="587.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-25">
+<clipPath id="terminal-1126029279-line-25">
     <rect x="0" y="611.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-26">
+<clipPath id="terminal-1126029279-line-26">
     <rect x="0" y="635.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-27">
+<clipPath id="terminal-1126029279-line-27">
     <rect x="0" y="660.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-28">
+<clipPath id="terminal-1126029279-line-28">
     <rect x="0" y="684.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-29">
+<clipPath id="terminal-1126029279-line-29">
     <rect x="0" y="709.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-30">
+<clipPath id="terminal-1126029279-line-30">
     <rect x="0" y="733.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-31">
+<clipPath id="terminal-1126029279-line-31">
     <rect x="0" y="757.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-32">
+<clipPath id="terminal-1126029279-line-32">
     <rect x="0" y="782.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-33">
+<clipPath id="terminal-1126029279-line-33">
     <rect x="0" y="806.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-34">
+<clipPath id="terminal-1126029279-line-34">
     <rect x="0" y="831.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-35">
+<clipPath id="terminal-1126029279-line-35">
     <rect x="0" y="855.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-36">
+<clipPath id="terminal-1126029279-line-36">
     <rect x="0" y="879.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-37">
+<clipPath id="terminal-1126029279-line-37">
     <rect x="0" y="904.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-38">
+<clipPath id="terminal-1126029279-line-38">
     <rect x="0" y="928.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-39">
+<clipPath id="terminal-1126029279-line-39">
     <rect x="0" y="953.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-40">
+<clipPath id="terminal-1126029279-line-40">
     <rect x="0" y="977.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-41">
+<clipPath id="terminal-1126029279-line-41">
     <rect x="0" y="1001.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-42">
+<clipPath id="terminal-1126029279-line-42">
     <rect x="0" y="1026.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-43">
+<clipPath id="terminal-1126029279-line-43">
     <rect x="0" y="1050.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-44">
+<clipPath id="terminal-1126029279-line-44">
     <rect x="0" y="1075.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-45">
+<clipPath id="terminal-1126029279-line-45">
     <rect x="0" y="1099.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-46">
+<clipPath id="terminal-1126029279-line-46">
     <rect x="0" y="1123.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-47">
+<clipPath id="terminal-1126029279-line-47">
     <rect x="0" y="1148.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-48">
+<clipPath id="terminal-1126029279-line-48">
     <rect x="0" y="1172.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-49">
+<clipPath id="terminal-1126029279-line-49">
     <rect x="0" y="1197.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-50">
+<clipPath id="terminal-1126029279-line-50">
     <rect x="0" y="1221.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-51">
+<clipPath id="terminal-1126029279-line-51">
     <rect x="0" y="1245.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-52">
+<clipPath id="terminal-1126029279-line-52">
     <rect x="0" y="1270.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-53">
+<clipPath id="terminal-1126029279-line-53">
     <rect x="0" y="1294.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-54">
+<clipPath id="terminal-1126029279-line-54">
     <rect x="0" y="1319.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-55">
+<clipPath id="terminal-1126029279-line-55">
     <rect x="0" y="1343.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-56">
+<clipPath id="terminal-1126029279-line-56">
     <rect x="0" y="1367.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-57">
+<clipPath id="terminal-1126029279-line-57">
     <rect x="0" y="1392.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-58">
+<clipPath id="terminal-1126029279-line-58">
     <rect x="0" y="1416.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-59">
+<clipPath id="terminal-1126029279-line-59">
     <rect x="0" y="1441.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-60">
+<clipPath id="terminal-1126029279-line-60">
     <rect x="0" y="1465.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-61">
+<clipPath id="terminal-1126029279-line-61">
     <rect x="0" y="1489.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-62">
+<clipPath id="terminal-1126029279-line-62">
     <rect x="0" y="1514.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-63">
+<clipPath id="terminal-1126029279-line-63">
     <rect x="0" y="1538.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-64">
+<clipPath id="terminal-1126029279-line-64">
     <rect x="0" y="1563.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-65">
+<clipPath id="terminal-1126029279-line-65">
     <rect x="0" y="1587.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-66">
+<clipPath id="terminal-1126029279-line-66">
     <rect x="0" y="1611.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-67">
+<clipPath id="terminal-1126029279-line-67">
     <rect x="0" y="1636.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-68">
+<clipPath id="terminal-1126029279-line-68">
     <rect x="0" y="1660.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-69">
+<clipPath id="terminal-1126029279-line-69">
     <rect x="0" y="1685.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-70">
+<clipPath id="terminal-1126029279-line-70">
     <rect x="0" y="1709.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-71">
+<clipPath id="terminal-1126029279-line-71">
     <rect x="0" y="1733.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-72">
+<clipPath id="terminal-1126029279-line-72">
     <rect x="0" y="1758.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-73">
+<clipPath id="terminal-1126029279-line-73">
     <rect x="0" y="1782.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-74">
+<clipPath id="terminal-1126029279-line-74">
     <rect x="0" y="1807.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-75">
+<clipPath id="terminal-1126029279-line-75">
     <rect x="0" y="1831.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-76">
+<clipPath id="terminal-1126029279-line-76">
     <rect x="0" y="1855.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-77">
+<clipPath id="terminal-1126029279-line-77">
     <rect x="0" y="1880.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-78">
+<clipPath id="terminal-1126029279-line-78">
     <rect x="0" y="1904.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-79">
+<clipPath id="terminal-1126029279-line-79">
     <rect x="0" y="1929.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-80">
+<clipPath id="terminal-1126029279-line-80">
     <rect x="0" y="1953.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-81">
+<clipPath id="terminal-1126029279-line-81">
     <rect x="0" y="1977.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-82">
+<clipPath id="terminal-1126029279-line-82">
     <rect x="0" y="2002.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-83">
+<clipPath id="terminal-1126029279-line-83">
     <rect x="0" y="2026.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-84">
+<clipPath id="terminal-1126029279-line-84">
     <rect x="0" y="2051.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-85">
+<clipPath id="terminal-1126029279-line-85">
     <rect x="0" y="2075.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2287654653-line-86">
+<clipPath id="terminal-1126029279-line-86">
     <rect x="0" y="2099.9" width="1464" height="24.65"/>
             </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="2195.2" rx="8"/><text class="terminal-2287654653-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;prod-image&#160;build</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="2195.2" rx="8"/><text class="terminal-1126029279-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;prod-image&#160;build</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-2287654653-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-1126029279-clip-terminal)">
     
-    <g class="terminal-2287654653-matrix">
-    <text class="terminal-2287654653-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-2287654653-line-0)">
-</text><text class="terminal-2287654653-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-2287654653-line-1)">Usage:&#160;</text><text class="terminal-2287654653-r1" x="97.6" y="44.4" textLength="402.6" clip-path="url(#terminal-2287654653-line-1)">breeze&#160;prod-image&#160;build&#160;[OPTIONS]</text><text class="terminal-2287654653-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-1)">
-</text><text class="terminal-2287654653-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-2287654653-line-2)">
-</text><text class="terminal-2287654653-r2" x="12.2" y="93.2" textLength="1293.2" clip-path="url(#terminal-2287654653-line-3)">Build&#160;Production&#160;image.&#160;Include&#160;building&#160;multiple&#160;images&#160;for&#160;all&#160;or&#160;selected&#160;Python&#160;versions&#160;sequentially.</text><text class="terminal-2287654653-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-3)">
-</text><text class="terminal-2287654653-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-2287654653-line-4)">
-</text><text class="terminal-2287654653-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-2287654653-line-5)">╭─</text><text class="terminal-2287654653-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-2287654653-line-5)">&#160;Basic&#160;usage&#160;───────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2287654653-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-228765 [...]
-</text><text class="terminal-2287654653-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-6)">│</text><text class="terminal-2287654653-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-6)">-</text><text class="terminal-2287654653-r5" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-2287654653-line-6)">-python</text><text class="terminal-2287654653-r6" x="427" y="166.4" textLength="24.4" clip-path="url(#terminal-228 [...]
-</text><text class="terminal-2287654653-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-2287654653-line-7)">│</text><text class="terminal-2287654653-r7" x="475.8" y="190.8" textLength="732" clip-path="url(#terminal-2287654653-line-7)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
-</text><text class="terminal-2287654653-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-8)">│</text><text class="terminal-2287654653-r4" x="475.8" y="215.2" textLength="732" clip-path="url(#terminal-2287654653-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-2287654653-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-2287654653-line-9)">│</text><text class="terminal-2287654653-r5" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-2287654653-line-9)">-</text><text class="terminal-2287654653-r5" x="36.6" y="239.6" textLength="97.6" clip-path="url(#terminal-2287654653-line-9)">-install</text><text class="terminal-2287654653-r5" x="134.2" y="239.6" textLength="195.2" clip-path="url(#terminal [...]
-</text><text class="terminal-2287654653-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-2287654653-line-10)">│</text><text class="terminal-2287654653-r5" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-2287654653-line-10)">-</text><text class="terminal-2287654653-r5" x="36.6" y="264" textLength="97.6" clip-path="url(#terminal-2287654653-line-10)">-upgrade</text><text class="terminal-2287654653-r5" x="134.2" y="264" textLength="268.4" clip-path="url(#terminal-2287 [...]
-</text><text class="terminal-2287654653-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-11)">│</text><text class="terminal-2287654653-r5" x="24.4" y="288.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-11)">-</text><text class="terminal-2287654653-r5" x="36.6" y="288.4" textLength="97.6" clip-path="url(#terminal-2287654653-line-11)">-upgrade</text><text class="terminal-2287654653-r5" x="134.2" y="288.4" textLength="134.2" clip-path="url(#termi [...]
-</text><text class="terminal-2287654653-r4" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-2287654653-line-12)">│</text><text class="terminal-2287654653-r2" x="475.8" y="312.8" textLength="963.8" clip-path="url(#terminal-2287654653-line-12)">fails.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
-</text><text class="terminal-2287654653-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-13)">│</text><text class="terminal-2287654653-r5" x="24.4" y="337.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-13)">-</text><text class="terminal-2287654653-r5" x="36.6" y="337.2" textLength="73.2" clip-path="url(#terminal-2287654653-line-13)">-image</text><text class="terminal-2287654653-r5" x="109.8" y="337.2" textLength="48.8" clip-path="url(#terminal [...]
-</text><text class="terminal-2287654653-r4" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-2287654653-line-14)">│</text><text class="terminal-2287654653-r5" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-2287654653-line-14)">-</text><text class="terminal-2287654653-r5" x="36.6" y="361.6" textLength="48.8" clip-path="url(#terminal-2287654653-line-14)">-tag</text><text class="terminal-2287654653-r5" x="85.4" y="361.6" textLength="122" clip-path="url(#terminal-228 [...]
-</text><text class="terminal-2287654653-r4" x="0" y="386" textLength="12.2" clip-path="url(#terminal-2287654653-line-15)">│</text><text class="terminal-2287654653-r2" x="475.8" y="386" textLength="414.8" clip-path="url(#terminal-2287654653-line-15)">when&#160;you&#160;build&#160;or&#160;pull&#160;image&#160;with&#160;</text><text class="terminal-2287654653-r5" x="890.6" y="386" textLength="12.2" clip-path="url(#terminal-2287654653-line-15)">-</text><text class="terminal-2287654653-r5" x= [...]
-</text><text class="terminal-2287654653-r4" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-16)">│</text><text class="terminal-2287654653-r5" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-16)">-</text><text class="terminal-2287654653-r5" x="36.6" y="410.4" textLength="85.4" clip-path="url(#terminal-2287654653-line-16)">-docker</text><text class="terminal-2287654653-r5" x="122" y="410.4" textLength="73.2" clip-path="url(#terminal- [...]
-</text><text class="terminal-2287654653-r4" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-2287654653-line-17)">│</text><text class="terminal-2287654653-r4" x="475.8" y="434.8" textLength="549" clip-path="url(#terminal-2287654653-line-17)">[default:&#160;registry]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-2287654653-r4" x="1451.8" y="43 [...]
-</text><text class="terminal-2287654653-r4" x="0" y="459.2" textLength="1464" clip-path="url(#terminal-2287654653-line-18)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2287654653-r2" x="1464" y="459.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-18)">
-</text><text class="terminal-2287654653-r4" x="0" y="483.6" textLength="24.4" clip-path="url(#terminal-2287654653-line-19)">╭─</text><text class="terminal-2287654653-r4" x="24.4" y="483.6" textLength="1415.2" clip-path="url(#terminal-2287654653-line-19)">&#160;Building&#160;images&#160;in&#160;parallel&#160;───────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2287654653-r4" x="1439.6" y="483.6" textLength="24.4" clip-path="ur [...]
-</text><text class="terminal-2287654653-r4" x="0" y="508" textLength="12.2" clip-path="url(#terminal-2287654653-line-20)">│</text><text class="terminal-2287654653-r5" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-2287654653-line-20)">-</text><text class="terminal-2287654653-r5" x="36.6" y="508" textLength="48.8" clip-path="url(#terminal-2287654653-line-20)">-run</text><text class="terminal-2287654653-r5" x="85.4" y="508" textLength="146.4" clip-path="url(#terminal-228765465 [...]
-</text><text class="terminal-2287654653-r4" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-21)">│</text><text class="terminal-2287654653-r5" x="24.4" y="532.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-21)">-</text><text class="terminal-2287654653-r5" x="36.6" y="532.4" textLength="146.4" clip-path="url(#terminal-2287654653-line-21)">-parallelism</text><text class="terminal-2287654653-r2" x="378.2" y="532.4" textLength="915" clip-path="url(#te [...]
-</text><text class="terminal-2287654653-r4" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-2287654653-line-22)">│</text><text class="terminal-2287654653-r7" x="378.2" y="556.8" textLength="915" clip-path="url(#terminal-2287654653-line-22)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
-</text><text class="terminal-2287654653-r4" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-23)">│</text><text class="terminal-2287654653-r4" x="378.2" y="581.2" textLength="915" clip-path="url(#terminal-2287654653-line-23)">[default:&#160;4;&#160;1&lt;=x&lt;=8]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-2287654653-r4" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-2287654653-line-24)">│</text><text class="terminal-2287654653-r5" x="24.4" y="605.6" textLength="12.2" clip-path="url(#terminal-2287654653-line-24)">-</text><text class="terminal-2287654653-r5" x="36.6" y="605.6" textLength="85.4" clip-path="url(#terminal-2287654653-line-24)">-python</text><text class="terminal-2287654653-r5" x="122" y="605.6" textLength="109.8" clip-path="url(#terminal [...]
-</text><text class="terminal-2287654653-r4" x="0" y="630" textLength="12.2" clip-path="url(#terminal-2287654653-line-25)">│</text><text class="terminal-2287654653-r4" x="378.2" y="630" textLength="951.6" clip-path="url(#terminal-2287654653-line-25)">[default:&#160;3.7&#160;3.8&#160;3.9&#160;3.10]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
-</text><text class="terminal-2287654653-r4" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-26)">│</text><text class="terminal-2287654653-r5" x="24.4" y="654.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-26)">-</text><text class="terminal-2287654653-r5" x="36.6" y="654.4" textLength="61" clip-path="url(#terminal-2287654653-line-26)">-skip</text><text class="terminal-2287654653-r5" x="97.6" y="654.4" textLength="97.6" clip-path="url(#terminal-228 [...]
-</text><text class="terminal-2287654653-r4" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-2287654653-line-27)">│</text><text class="terminal-2287654653-r5" x="24.4" y="678.8" textLength="12.2" clip-path="url(#terminal-2287654653-line-27)">-</text><text class="terminal-2287654653-r5" x="36.6" y="678.8" textLength="73.2" clip-path="url(#terminal-2287654653-line-27)">-debug</text><text class="terminal-2287654653-r5" x="109.8" y="678.8" textLength="122" clip-path="url(#terminal- [...]
-</text><text class="terminal-2287654653-r4" x="0" y="703.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-28)">│</text><text class="terminal-2287654653-r5" x="24.4" y="703.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-28)">-</text><text class="terminal-2287654653-r5" x="36.6" y="703.2" textLength="97.6" clip-path="url(#terminal-2287654653-line-28)">-include</text><text class="terminal-2287654653-r5" x="134.2" y="703.2" textLength="195.2" clip-path="url(#termi [...]
-</text><text class="terminal-2287654653-r4" x="0" y="727.6" textLength="1464" clip-path="url(#terminal-2287654653-line-29)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2287654653-r2" x="1464" y="727.6" textLength="12.2" clip-path="url(#terminal-2287654653-line-29)">
-</text><text class="terminal-2287654653-r4" x="0" y="752" textLength="24.4" clip-path="url(#terminal-2287654653-line-30)">╭─</text><text class="terminal-2287654653-r4" x="24.4" y="752" textLength="1415.2" clip-path="url(#terminal-2287654653-line-30)">&#160;Options&#160;for&#160;customizing&#160;images&#160;────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2287654653-r4" x="1439.6" y="752" textLength="24.4" clip-path="url(#ter [...]
-</text><text class="terminal-2287654653-r4" x="0" y="776.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-31)">│</text><text class="terminal-2287654653-r5" x="24.4" y="776.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-31)">-</text><text class="terminal-2287654653-r5" x="36.6" y="776.4" textLength="97.6" clip-path="url(#terminal-2287654653-line-31)">-builder</text><text class="terminal-2287654653-r2" x="463.6" y="776.4" textLength="756.4" clip-path="url(#termi [...]
-</text><text class="terminal-2287654653-r4" x="0" y="800.8" textLength="12.2" clip-path="url(#terminal-2287654653-line-32)">│</text><text class="terminal-2287654653-r5" x="24.4" y="800.8" textLength="12.2" clip-path="url(#terminal-2287654653-line-32)">-</text><text class="terminal-2287654653-r5" x="36.6" y="800.8" textLength="97.6" clip-path="url(#terminal-2287654653-line-32)">-install</text><text class="terminal-2287654653-r5" x="134.2" y="800.8" textLength="280.6" clip-path="url(#termi [...]
-</text><text class="terminal-2287654653-r4" x="0" y="825.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-33)">│</text><text class="terminal-2287654653-r5" x="24.4" y="825.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-33)">-</text><text class="terminal-2287654653-r5" x="36.6" y="825.2" textLength="97.6" clip-path="url(#terminal-2287654653-line-33)">-airflow</text><text class="terminal-2287654653-r5" x="134.2" y="825.2" textLength="85.4" clip-path="url(#termin [...]
-</text><text class="terminal-2287654653-r4" x="0" y="849.6" textLength="12.2" clip-path="url(#terminal-2287654653-line-34)">│</text><text class="terminal-2287654653-r7" x="463.6" y="849.6" textLength="976" clip-path="url(#terminal-2287654653-line-34)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
-</text><text class="terminal-2287654653-r4" x="0" y="874" textLength="12.2" clip-path="url(#terminal-2287654653-line-35)">│</text><text class="terminal-2287654653-r4" x="463.6" y="874" textLength="976" clip-path="url(#terminal-2287654653-line-35)">[default:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-2287654653-r4" x="0" y="898.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-36)">│</text><text class="terminal-2287654653-r4" x="463.6" y="898.4" textLength="976" clip-path="url(#terminal-2287654653-line-36)">amazon,async,celery,cncf.kubernetes,dask,docker,elasticsearch,ftp,google,google…</text><text class="terminal-2287654653-r4" x="1451.8" y="898.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-36)">│</text><text class="terminal-2 [...]
-</text><text class="terminal-2287654653-r4" x="0" y="922.8" textLength="12.2" clip-path="url(#terminal-2287654653-line-37)">│</text><text class="terminal-2287654653-r5" x="24.4" y="922.8" textLength="12.2" clip-path="url(#terminal-2287654653-line-37)">-</text><text class="terminal-2287654653-r5" x="36.6" y="922.8" textLength="97.6" clip-path="url(#terminal-2287654653-line-37)">-airflow</text><text class="terminal-2287654653-r5" x="134.2" y="922.8" textLength="207.4" clip-path="url(#termi [...]
-</text><text class="terminal-2287654653-r4" x="0" y="947.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-38)">│</text><text class="terminal-2287654653-r7" x="463.6" y="947.2" textLength="866.2" clip-path="url(#terminal-2287654653-line-38)">(constraints&#160;|&#160;constraints-no-providers&#160;|&#160;constraints-source-providers)</text><text class="terminal-2287654653-r4" x="1451.8" y="947.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-38)">│</text><text clas [...]
-</text><text class="terminal-2287654653-r4" x="0" y="971.6" textLength="12.2" clip-path="url(#terminal-2287654653-line-39)">│</text><text class="terminal-2287654653-r4" x="463.6" y="971.6" textLength="866.2" clip-path="url(#terminal-2287654653-line-39)">[default:&#160;constraints]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-2287654653-r4" x="0" y="996" textLength="12.2" clip-path="url(#terminal-2287654653-line-40)">│</text><text class="terminal-2287654653-r5" x="24.4" y="996" textLength="12.2" clip-path="url(#terminal-2287654653-line-40)">-</text><text class="terminal-2287654653-r5" x="36.6" y="996" textLength="97.6" clip-path="url(#terminal-2287654653-line-40)">-airflow</text><text class="terminal-2287654653-r5" x="134.2" y="996" textLength="268.4" clip-path="url(#terminal-2287 [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1020.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-41)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1020.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-41)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1020.4" textLength="85.4" clip-path="url(#terminal-2287654653-line-41)">-python</text><text class="terminal-2287654653-r5" x="122" y="1020.4" textLength="73.2" clip-path="url(#termi [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1044.8" textLength="12.2" clip-path="url(#terminal-2287654653-line-42)">│</text><text class="terminal-2287654653-r2" x="463.6" y="1044.8" textLength="976" clip-path="url(#terminal-2287654653-line-42)">something&#160;like:&#160;python:VERSION-slim-bullseye.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1069.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-43)">│</text><text class="terminal-2287654653-r7" x="463.6" y="1069.2" textLength="976" clip-path="url(#terminal-2287654653-line-43)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1093.6" textLength="12.2" clip-path="url(#terminal-2287654653-line-44)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1093.6" textLength="12.2" clip-path="url(#terminal-2287654653-line-44)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1093.6" textLength="134.2" clip-path="url(#terminal-2287654653-line-44)">-additional</text><text class="terminal-2287654653-r5" x="170.8" y="1093.6" textLength="85.4" clip-path="url [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1118" textLength="12.2" clip-path="url(#terminal-2287654653-line-45)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1118" textLength="12.2" clip-path="url(#terminal-2287654653-line-45)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1118" textLength="134.2" clip-path="url(#terminal-2287654653-line-45)">-additional</text><text class="terminal-2287654653-r5" x="170.8" y="1118" textLength="219.6" clip-path="url(#termi [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1142.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-46)">│</text><text class="terminal-2287654653-r2" x="463.6" y="1142.4" textLength="976" clip-path="url(#terminal-2287654653-line-46)">itself).&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1166.8" textLength="12.2" clip-path="url(#terminal-2287654653-line-47)">│</text><text class="terminal-2287654653-r7" x="463.6" y="1166.8" textLength="976" clip-path="url(#terminal-2287654653-line-47)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1191.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-48)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1191.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-48)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1191.2" textLength="134.2" clip-path="url(#terminal-2287654653-line-48)">-additional</text><text class="terminal-2287654653-r5" x="170.8" y="1191.2" textLength="146.4" clip-path="ur [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1215.6" textLength="12.2" clip-path="url(#terminal-2287654653-line-49)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1215.6" textLength="12.2" clip-path="url(#terminal-2287654653-line-49)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1215.6" textLength="134.2" clip-path="url(#terminal-2287654653-line-49)">-additional</text><text class="terminal-2287654653-r5" x="170.8" y="1215.6" textLength="207.4" clip-path="ur [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1240" textLength="12.2" clip-path="url(#terminal-2287654653-line-50)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1240" textLength="12.2" clip-path="url(#terminal-2287654653-line-50)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1240" textLength="134.2" clip-path="url(#terminal-2287654653-line-50)">-additional</text><text class="terminal-2287654653-r5" x="170.8" y="1240" textLength="195.2" clip-path="url(#termi [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1264.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-51)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1264.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-51)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1264.4" textLength="134.2" clip-path="url(#terminal-2287654653-line-51)">-additional</text><text class="terminal-2287654653-r5" x="170.8" y="1264.4" textLength="244" clip-path="url( [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1288.8" textLength="12.2" clip-path="url(#terminal-2287654653-line-52)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1288.8" textLength="12.2" clip-path="url(#terminal-2287654653-line-52)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1288.8" textLength="134.2" clip-path="url(#terminal-2287654653-line-52)">-additional</text><text class="terminal-2287654653-r5" x="170.8" y="1288.8" textLength="158.6" clip-path="ur [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1313.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-53)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1313.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-53)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1313.2" textLength="134.2" clip-path="url(#terminal-2287654653-line-53)">-additional</text><text class="terminal-2287654653-r5" x="170.8" y="1313.2" textLength="146.4" clip-path="ur [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1337.6" textLength="12.2" clip-path="url(#terminal-2287654653-line-54)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1337.6" textLength="12.2" clip-path="url(#terminal-2287654653-line-54)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1337.6" textLength="134.2" clip-path="url(#terminal-2287654653-line-54)">-additional</text><text class="terminal-2287654653-r5" x="170.8" y="1337.6" textLength="195.2" clip-path="ur [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1362" textLength="12.2" clip-path="url(#terminal-2287654653-line-55)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1362" textLength="12.2" clip-path="url(#terminal-2287654653-line-55)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1362" textLength="97.6" clip-path="url(#terminal-2287654653-line-55)">-runtime</text><text class="terminal-2287654653-r5" x="134.2" y="1362" textLength="109.8" clip-path="url(#terminal- [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1386.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-56)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1386.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-56)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1386.4" textLength="97.6" clip-path="url(#terminal-2287654653-line-56)">-runtime</text><text class="terminal-2287654653-r5" x="134.2" y="1386.4" textLength="146.4" clip-path="url(#t [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1410.8" textLength="12.2" clip-path="url(#terminal-2287654653-line-57)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1410.8" textLength="12.2" clip-path="url(#terminal-2287654653-line-57)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1410.8" textLength="48.8" clip-path="url(#terminal-2287654653-line-57)">-dev</text><text class="terminal-2287654653-r5" x="85.4" y="1410.8" textLength="109.8" clip-path="url(#termin [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1435.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-58)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1435.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-58)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1435.2" textLength="48.8" clip-path="url(#terminal-2287654653-line-58)">-dev</text><text class="terminal-2287654653-r5" x="85.4" y="1435.2" textLength="146.4" clip-path="url(#termin [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1459.6" textLength="1464" clip-path="url(#terminal-2287654653-line-59)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2287654653-r2" x="1464" y="1459.6" textLength="12.2" clip-path="url(#terminal-2287654653-line-59)">
-</text><text class="terminal-2287654653-r4" x="0" y="1484" textLength="24.4" clip-path="url(#terminal-2287654653-line-60)">╭─</text><text class="terminal-2287654653-r4" x="24.4" y="1484" textLength="1415.2" clip-path="url(#terminal-2287654653-line-60)">&#160;Customization&#160;options&#160;(for&#160;specific&#160;customization&#160;needs)&#160;──────────────────────────────────────────────────────────</text><text class="terminal-2287654653-r4" x="1439.6" y="1484" textLength="24.4" clip-p [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1508.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-61)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1508.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-61)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1508.4" textLength="97.6" clip-path="url(#terminal-2287654653-line-61)">-install</text><text class="terminal-2287654653-r5" x="134.2" y="1508.4" textLength="268.4" clip-path="url(#t [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1532.8" textLength="12.2" clip-path="url(#terminal-2287654653-line-62)">│</text><text class="terminal-2287654653-r2" x="536.8" y="1532.8" textLength="97.6" clip-path="url(#terminal-2287654653-line-62)">Implies&#160;</text><text class="terminal-2287654653-r5" x="634.4" y="1532.8" textLength="12.2" clip-path="url(#terminal-2287654653-line-62)">-</text><text class="terminal-2287654653-r5" x="646.6" y="1532.8" textLength="97.6" clip-path=" [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1557.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-63)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1557.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-63)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1557.2" textLength="97.6" clip-path="url(#terminal-2287654653-line-63)">-cleanup</text><text class="terminal-2287654653-r5" x="134.2" y="1557.2" textLength="97.6" clip-path="url(#te [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1581.6" textLength="12.2" clip-path="url(#terminal-2287654653-line-64)">│</text><text class="terminal-2287654653-r2" x="536.8" y="1581.6" textLength="170.8" clip-path="url(#terminal-2287654653-line-64)">together&#160;with&#160;</text><text class="terminal-2287654653-r5" x="707.6" y="1581.6" textLength="12.2" clip-path="url(#terminal-2287654653-line-64)">-</text><text class="terminal-2287654653-r5" x="719.8" y="1581.6" textLength="97.6" [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1606" textLength="12.2" clip-path="url(#terminal-2287654653-line-65)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1606" textLength="12.2" clip-path="url(#terminal-2287654653-line-65)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1606" textLength="97.6" clip-path="url(#terminal-2287654653-line-65)">-disable</text><text class="terminal-2287654653-r5" x="134.2" y="1606" textLength="317.2" clip-path="url(#terminal- [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1630.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-66)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1630.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-66)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1630.4" textLength="97.6" clip-path="url(#terminal-2287654653-line-66)">-disable</text><text class="terminal-2287654653-r5" x="134.2" y="1630.4" textLength="317.2" clip-path="url(#t [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1654.8" textLength="12.2" clip-path="url(#terminal-2287654653-line-67)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1654.8" textLength="12.2" clip-path="url(#terminal-2287654653-line-67)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1654.8" textLength="97.6" clip-path="url(#terminal-2287654653-line-67)">-disable</text><text class="terminal-2287654653-r5" x="134.2" y="1654.8" textLength="353.8" clip-path="url(#t [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1679.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-68)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1679.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-68)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1679.2" textLength="97.6" clip-path="url(#terminal-2287654653-line-68)">-disable</text><text class="terminal-2287654653-r5" x="134.2" y="1679.2" textLength="231.8" clip-path="url(#t [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1703.6" textLength="12.2" clip-path="url(#terminal-2287654653-line-69)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1703.6" textLength="12.2" clip-path="url(#terminal-2287654653-line-69)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1703.6" textLength="97.6" clip-path="url(#terminal-2287654653-line-69)">-install</text><text class="terminal-2287654653-r5" x="134.2" y="1703.6" textLength="219.6" clip-path="url(#t [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1728" textLength="12.2" clip-path="url(#terminal-2287654653-line-70)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1728" textLength="12.2" clip-path="url(#terminal-2287654653-line-70)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1728" textLength="158.6" clip-path="url(#terminal-2287654653-line-70)">-installation</text><text class="terminal-2287654653-r5" x="195.2" y="1728" textLength="85.4" clip-path="url(#term [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1752.4" textLength="1464" clip-path="url(#terminal-2287654653-line-71)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2287654653-r2" x="1464" y="1752.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-71)">
-</text><text class="terminal-2287654653-r4" x="0" y="1776.8" textLength="24.4" clip-path="url(#terminal-2287654653-line-72)">╭─</text><text class="terminal-2287654653-r4" x="24.4" y="1776.8" textLength="1415.2" clip-path="url(#terminal-2287654653-line-72)">&#160;Preparing&#160;cache&#160;and&#160;push&#160;(for&#160;maintainers&#160;and&#160;CI)&#160;─────────────────────────────────────────────────────────────────</text><text class="terminal-2287654653-r4" x="1439.6" y="1776.8" textLeng [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1801.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-73)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1801.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-73)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1801.2" textLength="85.4" clip-path="url(#terminal-2287654653-line-73)">-github</text><text class="terminal-2287654653-r5" x="122" y="1801.2" textLength="73.2" clip-path="url(#termi [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1825.6" textLength="12.2" clip-path="url(#terminal-2287654653-line-74)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1825.6" textLength="12.2" clip-path="url(#terminal-2287654653-line-74)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1825.6" textLength="85.4" clip-path="url(#terminal-2287654653-line-74)">-github</text><text class="terminal-2287654653-r5" x="122" y="1825.6" textLength="109.8" clip-path="url(#term [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1850" textLength="12.2" clip-path="url(#terminal-2287654653-line-75)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1850" textLength="12.2" clip-path="url(#terminal-2287654653-line-75)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1850" textLength="109.8" clip-path="url(#terminal-2287654653-line-75)">-platform</text><text class="terminal-2287654653-r2" x="341.6" y="1850" textLength="329.4" clip-path="url(#termina [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1874.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-76)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1874.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-76)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1874.4" textLength="61" clip-path="url(#terminal-2287654653-line-76)">-push</text><text class="terminal-2287654653-r2" x="341.6" y="1874.4" textLength="353.8" clip-path="url(#termin [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1898.8" textLength="12.2" clip-path="url(#terminal-2287654653-line-77)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1898.8" textLength="12.2" clip-path="url(#terminal-2287654653-line-77)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1898.8" textLength="73.2" clip-path="url(#terminal-2287654653-line-77)">-empty</text><text class="terminal-2287654653-r5" x="109.8" y="1898.8" textLength="73.2" clip-path="url(#term [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1923.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-78)">│</text><text class="terminal-2287654653-r5" x="24.4" y="1923.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-78)">-</text><text class="terminal-2287654653-r5" x="36.6" y="1923.2" textLength="97.6" clip-path="url(#terminal-2287654653-line-78)">-prepare</text><text class="terminal-2287654653-r5" x="134.2" y="1923.2" textLength="158.6" clip-path="url(#t [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1947.6" textLength="12.2" clip-path="url(#terminal-2287654653-line-79)">│</text><text class="terminal-2287654653-r2" x="341.6" y="1947.6" textLength="1098" clip-path="url(#terminal-2287654653-line-79)">image).&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
-</text><text class="terminal-2287654653-r4" x="0" y="1972" textLength="1464" clip-path="url(#terminal-2287654653-line-80)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2287654653-r2" x="1464" y="1972" textLength="12.2" clip-path="url(#terminal-2287654653-line-80)">
-</text><text class="terminal-2287654653-r4" x="0" y="1996.4" textLength="24.4" clip-path="url(#terminal-2287654653-line-81)">╭─</text><text class="terminal-2287654653-r4" x="24.4" y="1996.4" textLength="1415.2" clip-path="url(#terminal-2287654653-line-81)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2287654653-r4" x="1439.6" y="1996.4" textLength="24.4" clip-path="url(#term [...]
-</text><text class="terminal-2287654653-r4" x="0" y="2020.8" textLength="12.2" clip-path="url(#terminal-2287654653-line-82)">│</text><text class="terminal-2287654653-r5" x="24.4" y="2020.8" textLength="12.2" clip-path="url(#terminal-2287654653-line-82)">-</text><text class="terminal-2287654653-r5" x="36.6" y="2020.8" textLength="85.4" clip-path="url(#terminal-2287654653-line-82)">-github</text><text class="terminal-2287654653-r5" x="122" y="2020.8" textLength="134.2" clip-path="url(#term [...]
-</text><text class="terminal-2287654653-r4" x="0" y="2045.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-83)">│</text><text class="terminal-2287654653-r5" x="24.4" y="2045.2" textLength="12.2" clip-path="url(#terminal-2287654653-line-83)">-</text><text class="terminal-2287654653-r5" x="36.6" y="2045.2" textLength="85.4" clip-path="url(#terminal-2287654653-line-83)">-answer</text><text class="terminal-2287654653-r6" x="280.6" y="2045.2" textLength="24.4" clip-path="url(#ter [...]
-</text><text class="terminal-2287654653-r4" x="0" y="2069.6" textLength="12.2" clip-path="url(#terminal-2287654653-line-84)">│</text><text class="terminal-2287654653-r5" x="24.4" y="2069.6" textLength="12.2" clip-path="url(#terminal-2287654653-line-84)">-</text><text class="terminal-2287654653-r5" x="36.6" y="2069.6" textLength="48.8" clip-path="url(#terminal-2287654653-line-84)">-dry</text><text class="terminal-2287654653-r5" x="85.4" y="2069.6" textLength="48.8" clip-path="url(#termina [...]
-</text><text class="terminal-2287654653-r4" x="0" y="2094" textLength="12.2" clip-path="url(#terminal-2287654653-line-85)">│</text><text class="terminal-2287654653-r5" x="24.4" y="2094" textLength="12.2" clip-path="url(#terminal-2287654653-line-85)">-</text><text class="terminal-2287654653-r5" x="36.6" y="2094" textLength="97.6" clip-path="url(#terminal-2287654653-line-85)">-verbose</text><text class="terminal-2287654653-r6" x="280.6" y="2094" textLength="24.4" clip-path="url(#terminal-2 [...]
-</text><text class="terminal-2287654653-r4" x="0" y="2118.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-86)">│</text><text class="terminal-2287654653-r5" x="24.4" y="2118.4" textLength="12.2" clip-path="url(#terminal-2287654653-line-86)">-</text><text class="terminal-2287654653-r5" x="36.6" y="2118.4" textLength="61" clip-path="url(#terminal-2287654653-line-86)">-help</text><text class="terminal-2287654653-r6" x="280.6" y="2118.4" textLength="24.4" clip-path="url(#termina [...]
-</text><text class="terminal-2287654653-r4" x="0" y="2142.8" textLength="1464" clip-path="url(#terminal-2287654653-line-87)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2287654653-r2" x="1464" y="2142.8" textLength="12.2" clip-path="url(#terminal-2287654653-line-87)">
+    <g class="terminal-1126029279-matrix">
+    <text class="terminal-1126029279-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-1126029279-line-0)">
+</text><text class="terminal-1126029279-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-1126029279-line-1)">Usage:&#160;</text><text class="terminal-1126029279-r1" x="97.6" y="44.4" textLength="305" clip-path="url(#terminal-1126029279-line-1)">breeze&#160;prod-image&#160;build&#160;[</text><text class="terminal-1126029279-r4" x="402.6" y="44.4" textLength="85.4" clip-path="url(#terminal-1126029279-line-1)">OPTIONS</text><text class="terminal-1126029279-r1" x="488" y="44. [...]
+</text><text class="terminal-1126029279-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-1126029279-line-2)">
+</text><text class="terminal-1126029279-r2" x="12.2" y="93.2" textLength="1293.2" clip-path="url(#terminal-1126029279-line-3)">Build&#160;Production&#160;image.&#160;Include&#160;building&#160;multiple&#160;images&#160;for&#160;all&#160;or&#160;selected&#160;Python&#160;versions&#160;sequentially.</text><text class="terminal-1126029279-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-3)">
+</text><text class="terminal-1126029279-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-1126029279-line-4)">
+</text><text class="terminal-1126029279-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-1126029279-line-5)">╭─</text><text class="terminal-1126029279-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-1126029279-line-5)">&#160;Basic&#160;usage&#160;───────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1126029279-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-112602 [...]
+</text><text class="terminal-1126029279-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-6)">│</text><text class="terminal-1126029279-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-6)">-</text><text class="terminal-1126029279-r4" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-1126029279-line-6)">-python</text><text class="terminal-1126029279-r6" x="427" y="166.4" textLength="24.4" clip-path="url(#terminal-112 [...]
+</text><text class="terminal-1126029279-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-1126029279-line-7)">│</text><text class="terminal-1126029279-r7" x="475.8" y="190.8" textLength="732" clip-path="url(#terminal-1126029279-line-7)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10&#160;|&#160;3.11)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;< [...]
+</text><text class="terminal-1126029279-r5" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-8)">│</text><text class="terminal-1126029279-r5" x="475.8" y="215.2" textLength="732" clip-path="url(#terminal-1126029279-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-1126029279-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-1126029279-line-9)">│</text><text class="terminal-1126029279-r4" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-1126029279-line-9)">-</text><text class="terminal-1126029279-r4" x="36.6" y="239.6" textLength="97.6" clip-path="url(#terminal-1126029279-line-9)">-install</text><text class="terminal-1126029279-r4" x="134.2" y="239.6" textLength="195.2" clip-path="url(#terminal [...]
+</text><text class="terminal-1126029279-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-1126029279-line-10)">│</text><text class="terminal-1126029279-r4" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-1126029279-line-10)">-</text><text class="terminal-1126029279-r4" x="36.6" y="264" textLength="97.6" clip-path="url(#terminal-1126029279-line-10)">-upgrade</text><text class="terminal-1126029279-r4" x="134.2" y="264" textLength="268.4" clip-path="url(#terminal-1126 [...]
+</text><text class="terminal-1126029279-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-11)">│</text><text class="terminal-1126029279-r4" x="24.4" y="288.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-11)">-</text><text class="terminal-1126029279-r4" x="36.6" y="288.4" textLength="97.6" clip-path="url(#terminal-1126029279-line-11)">-upgrade</text><text class="terminal-1126029279-r4" x="134.2" y="288.4" textLength="134.2" clip-path="url(#termi [...]
+</text><text class="terminal-1126029279-r5" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-1126029279-line-12)">│</text><text class="terminal-1126029279-r2" x="475.8" y="312.8" textLength="963.8" clip-path="url(#terminal-1126029279-line-12)">fails.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
+</text><text class="terminal-1126029279-r5" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-13)">│</text><text class="terminal-1126029279-r4" x="24.4" y="337.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-13)">-</text><text class="terminal-1126029279-r4" x="36.6" y="337.2" textLength="73.2" clip-path="url(#terminal-1126029279-line-13)">-image</text><text class="terminal-1126029279-r4" x="109.8" y="337.2" textLength="48.8" clip-path="url(#terminal [...]
+</text><text class="terminal-1126029279-r5" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-1126029279-line-14)">│</text><text class="terminal-1126029279-r4" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-1126029279-line-14)">-</text><text class="terminal-1126029279-r4" x="36.6" y="361.6" textLength="48.8" clip-path="url(#terminal-1126029279-line-14)">-tag</text><text class="terminal-1126029279-r4" x="85.4" y="361.6" textLength="122" clip-path="url(#terminal-112 [...]
+</text><text class="terminal-1126029279-r5" x="0" y="386" textLength="12.2" clip-path="url(#terminal-1126029279-line-15)">│</text><text class="terminal-1126029279-r2" x="475.8" y="386" textLength="414.8" clip-path="url(#terminal-1126029279-line-15)">when&#160;you&#160;build&#160;or&#160;pull&#160;image&#160;with&#160;</text><text class="terminal-1126029279-r4" x="890.6" y="386" textLength="12.2" clip-path="url(#terminal-1126029279-line-15)">-</text><text class="terminal-1126029279-r4" x= [...]
+</text><text class="terminal-1126029279-r5" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-16)">│</text><text class="terminal-1126029279-r4" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-16)">-</text><text class="terminal-1126029279-r4" x="36.6" y="410.4" textLength="85.4" clip-path="url(#terminal-1126029279-line-16)">-docker</text><text class="terminal-1126029279-r4" x="122" y="410.4" textLength="73.2" clip-path="url(#terminal- [...]
+</text><text class="terminal-1126029279-r5" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-1126029279-line-17)">│</text><text class="terminal-1126029279-r5" x="475.8" y="434.8" textLength="549" clip-path="url(#terminal-1126029279-line-17)">[default:&#160;registry]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-1126029279-r5" x="1451.8" y="43 [...]
+</text><text class="terminal-1126029279-r5" x="0" y="459.2" textLength="1464" clip-path="url(#terminal-1126029279-line-18)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1126029279-r2" x="1464" y="459.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-18)">
+</text><text class="terminal-1126029279-r5" x="0" y="483.6" textLength="24.4" clip-path="url(#terminal-1126029279-line-19)">╭─</text><text class="terminal-1126029279-r5" x="24.4" y="483.6" textLength="1415.2" clip-path="url(#terminal-1126029279-line-19)">&#160;Building&#160;images&#160;in&#160;parallel&#160;───────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1126029279-r5" x="1439.6" y="483.6" textLength="24.4" clip-path="ur [...]
+</text><text class="terminal-1126029279-r5" x="0" y="508" textLength="12.2" clip-path="url(#terminal-1126029279-line-20)">│</text><text class="terminal-1126029279-r4" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-1126029279-line-20)">-</text><text class="terminal-1126029279-r4" x="36.6" y="508" textLength="48.8" clip-path="url(#terminal-1126029279-line-20)">-run</text><text class="terminal-1126029279-r4" x="85.4" y="508" textLength="146.4" clip-path="url(#terminal-112602927 [...]
+</text><text class="terminal-1126029279-r5" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-21)">│</text><text class="terminal-1126029279-r4" x="24.4" y="532.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-21)">-</text><text class="terminal-1126029279-r4" x="36.6" y="532.4" textLength="146.4" clip-path="url(#terminal-1126029279-line-21)">-parallelism</text><text class="terminal-1126029279-r2" x="378.2" y="532.4" textLength="915" clip-path="url(#te [...]
+</text><text class="terminal-1126029279-r5" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-1126029279-line-22)">│</text><text class="terminal-1126029279-r7" x="378.2" y="556.8" textLength="915" clip-path="url(#terminal-1126029279-line-22)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
+</text><text class="terminal-1126029279-r5" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-23)">│</text><text class="terminal-1126029279-r5" x="378.2" y="581.2" textLength="915" clip-path="url(#terminal-1126029279-line-23)">[default:&#160;4;&#160;1&lt;=x&lt;=8]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-1126029279-r5" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-1126029279-line-24)">│</text><text class="terminal-1126029279-r4" x="24.4" y="605.6" textLength="12.2" clip-path="url(#terminal-1126029279-line-24)">-</text><text class="terminal-1126029279-r4" x="36.6" y="605.6" textLength="85.4" clip-path="url(#terminal-1126029279-line-24)">-python</text><text class="terminal-1126029279-r4" x="122" y="605.6" textLength="109.8" clip-path="url(#terminal [...]
+</text><text class="terminal-1126029279-r5" x="0" y="630" textLength="12.2" clip-path="url(#terminal-1126029279-line-25)">│</text><text class="terminal-1126029279-r5" x="378.2" y="630" textLength="951.6" clip-path="url(#terminal-1126029279-line-25)">[default:&#160;3.7&#160;3.8&#160;3.9&#160;3.10&#160;3.11]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-1126029279-r5" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-26)">│</text><text class="terminal-1126029279-r4" x="24.4" y="654.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-26)">-</text><text class="terminal-1126029279-r4" x="36.6" y="654.4" textLength="61" clip-path="url(#terminal-1126029279-line-26)">-skip</text><text class="terminal-1126029279-r4" x="97.6" y="654.4" textLength="97.6" clip-path="url(#terminal-112 [...]
+</text><text class="terminal-1126029279-r5" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-1126029279-line-27)">│</text><text class="terminal-1126029279-r4" x="24.4" y="678.8" textLength="12.2" clip-path="url(#terminal-1126029279-line-27)">-</text><text class="terminal-1126029279-r4" x="36.6" y="678.8" textLength="73.2" clip-path="url(#terminal-1126029279-line-27)">-debug</text><text class="terminal-1126029279-r4" x="109.8" y="678.8" textLength="122" clip-path="url(#terminal- [...]
+</text><text class="terminal-1126029279-r5" x="0" y="703.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-28)">│</text><text class="terminal-1126029279-r4" x="24.4" y="703.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-28)">-</text><text class="terminal-1126029279-r4" x="36.6" y="703.2" textLength="97.6" clip-path="url(#terminal-1126029279-line-28)">-include</text><text class="terminal-1126029279-r4" x="134.2" y="703.2" textLength="195.2" clip-path="url(#termi [...]
+</text><text class="terminal-1126029279-r5" x="0" y="727.6" textLength="1464" clip-path="url(#terminal-1126029279-line-29)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1126029279-r2" x="1464" y="727.6" textLength="12.2" clip-path="url(#terminal-1126029279-line-29)">
+</text><text class="terminal-1126029279-r5" x="0" y="752" textLength="24.4" clip-path="url(#terminal-1126029279-line-30)">╭─</text><text class="terminal-1126029279-r5" x="24.4" y="752" textLength="1415.2" clip-path="url(#terminal-1126029279-line-30)">&#160;Options&#160;for&#160;customizing&#160;images&#160;────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1126029279-r5" x="1439.6" y="752" textLength="24.4" clip-path="url(#ter [...]
+</text><text class="terminal-1126029279-r5" x="0" y="776.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-31)">│</text><text class="terminal-1126029279-r4" x="24.4" y="776.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-31)">-</text><text class="terminal-1126029279-r4" x="36.6" y="776.4" textLength="97.6" clip-path="url(#terminal-1126029279-line-31)">-builder</text><text class="terminal-1126029279-r2" x="463.6" y="776.4" textLength="756.4" clip-path="url(#termi [...]
+</text><text class="terminal-1126029279-r5" x="0" y="800.8" textLength="12.2" clip-path="url(#terminal-1126029279-line-32)">│</text><text class="terminal-1126029279-r4" x="24.4" y="800.8" textLength="12.2" clip-path="url(#terminal-1126029279-line-32)">-</text><text class="terminal-1126029279-r4" x="36.6" y="800.8" textLength="97.6" clip-path="url(#terminal-1126029279-line-32)">-install</text><text class="terminal-1126029279-r4" x="134.2" y="800.8" textLength="280.6" clip-path="url(#termi [...]
+</text><text class="terminal-1126029279-r5" x="0" y="825.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-33)">│</text><text class="terminal-1126029279-r4" x="24.4" y="825.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-33)">-</text><text class="terminal-1126029279-r4" x="36.6" y="825.2" textLength="97.6" clip-path="url(#terminal-1126029279-line-33)">-airflow</text><text class="terminal-1126029279-r4" x="134.2" y="825.2" textLength="85.4" clip-path="url(#termin [...]
+</text><text class="terminal-1126029279-r5" x="0" y="849.6" textLength="12.2" clip-path="url(#terminal-1126029279-line-34)">│</text><text class="terminal-1126029279-r7" x="463.6" y="849.6" textLength="976" clip-path="url(#terminal-1126029279-line-34)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
+</text><text class="terminal-1126029279-r5" x="0" y="874" textLength="12.2" clip-path="url(#terminal-1126029279-line-35)">│</text><text class="terminal-1126029279-r5" x="463.6" y="874" textLength="976" clip-path="url(#terminal-1126029279-line-35)">[default:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-1126029279-r5" x="0" y="898.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-36)">│</text><text class="terminal-1126029279-r5" x="463.6" y="898.4" textLength="976" clip-path="url(#terminal-1126029279-line-36)">amazon,async,celery,cncf.kubernetes,dask,docker,elasticsearch,ftp,google,google…</text><text class="terminal-1126029279-r5" x="1451.8" y="898.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-36)">│</text><text class="terminal-1 [...]
+</text><text class="terminal-1126029279-r5" x="0" y="922.8" textLength="12.2" clip-path="url(#terminal-1126029279-line-37)">│</text><text class="terminal-1126029279-r4" x="24.4" y="922.8" textLength="12.2" clip-path="url(#terminal-1126029279-line-37)">-</text><text class="terminal-1126029279-r4" x="36.6" y="922.8" textLength="97.6" clip-path="url(#terminal-1126029279-line-37)">-airflow</text><text class="terminal-1126029279-r4" x="134.2" y="922.8" textLength="207.4" clip-path="url(#termi [...]
+</text><text class="terminal-1126029279-r5" x="0" y="947.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-38)">│</text><text class="terminal-1126029279-r7" x="463.6" y="947.2" textLength="866.2" clip-path="url(#terminal-1126029279-line-38)">(constraints&#160;|&#160;constraints-no-providers&#160;|&#160;constraints-source-providers)</text><text class="terminal-1126029279-r5" x="1451.8" y="947.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-38)">│</text><text clas [...]
+</text><text class="terminal-1126029279-r5" x="0" y="971.6" textLength="12.2" clip-path="url(#terminal-1126029279-line-39)">│</text><text class="terminal-1126029279-r5" x="463.6" y="971.6" textLength="866.2" clip-path="url(#terminal-1126029279-line-39)">[default:&#160;constraints]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-1126029279-r5" x="0" y="996" textLength="12.2" clip-path="url(#terminal-1126029279-line-40)">│</text><text class="terminal-1126029279-r4" x="24.4" y="996" textLength="12.2" clip-path="url(#terminal-1126029279-line-40)">-</text><text class="terminal-1126029279-r4" x="36.6" y="996" textLength="97.6" clip-path="url(#terminal-1126029279-line-40)">-airflow</text><text class="terminal-1126029279-r4" x="134.2" y="996" textLength="268.4" clip-path="url(#terminal-1126 [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1020.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-41)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1020.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-41)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1020.4" textLength="85.4" clip-path="url(#terminal-1126029279-line-41)">-python</text><text class="terminal-1126029279-r4" x="122" y="1020.4" textLength="73.2" clip-path="url(#termi [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1044.8" textLength="12.2" clip-path="url(#terminal-1126029279-line-42)">│</text><text class="terminal-1126029279-r2" x="463.6" y="1044.8" textLength="280.6" clip-path="url(#terminal-1126029279-line-42)">something&#160;like:&#160;python:</text><text class="terminal-1126029279-r4" x="744.2" y="1044.8" textLength="85.4" clip-path="url(#terminal-1126029279-line-42)">VERSION</text><text class="terminal-1126029279-r2" x="829.6" y="1044.8" te [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1069.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-43)">│</text><text class="terminal-1126029279-r7" x="463.6" y="1069.2" textLength="976" clip-path="url(#terminal-1126029279-line-43)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1093.6" textLength="12.2" clip-path="url(#terminal-1126029279-line-44)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1093.6" textLength="12.2" clip-path="url(#terminal-1126029279-line-44)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1093.6" textLength="134.2" clip-path="url(#terminal-1126029279-line-44)">-additional</text><text class="terminal-1126029279-r4" x="170.8" y="1093.6" textLength="85.4" clip-path="url [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1118" textLength="12.2" clip-path="url(#terminal-1126029279-line-45)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1118" textLength="12.2" clip-path="url(#terminal-1126029279-line-45)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1118" textLength="134.2" clip-path="url(#terminal-1126029279-line-45)">-additional</text><text class="terminal-1126029279-r4" x="170.8" y="1118" textLength="219.6" clip-path="url(#termi [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1142.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-46)">│</text><text class="terminal-1126029279-r2" x="463.6" y="1142.4" textLength="976" clip-path="url(#terminal-1126029279-line-46)">itself).&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1166.8" textLength="12.2" clip-path="url(#terminal-1126029279-line-47)">│</text><text class="terminal-1126029279-r7" x="463.6" y="1166.8" textLength="976" clip-path="url(#terminal-1126029279-line-47)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1191.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-48)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1191.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-48)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1191.2" textLength="134.2" clip-path="url(#terminal-1126029279-line-48)">-additional</text><text class="terminal-1126029279-r4" x="170.8" y="1191.2" textLength="146.4" clip-path="ur [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1215.6" textLength="12.2" clip-path="url(#terminal-1126029279-line-49)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1215.6" textLength="12.2" clip-path="url(#terminal-1126029279-line-49)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1215.6" textLength="134.2" clip-path="url(#terminal-1126029279-line-49)">-additional</text><text class="terminal-1126029279-r4" x="170.8" y="1215.6" textLength="207.4" clip-path="ur [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1240" textLength="12.2" clip-path="url(#terminal-1126029279-line-50)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1240" textLength="12.2" clip-path="url(#terminal-1126029279-line-50)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1240" textLength="134.2" clip-path="url(#terminal-1126029279-line-50)">-additional</text><text class="terminal-1126029279-r4" x="170.8" y="1240" textLength="195.2" clip-path="url(#termi [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1264.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-51)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1264.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-51)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1264.4" textLength="134.2" clip-path="url(#terminal-1126029279-line-51)">-additional</text><text class="terminal-1126029279-r4" x="170.8" y="1264.4" textLength="244" clip-path="url( [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1288.8" textLength="12.2" clip-path="url(#terminal-1126029279-line-52)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1288.8" textLength="12.2" clip-path="url(#terminal-1126029279-line-52)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1288.8" textLength="134.2" clip-path="url(#terminal-1126029279-line-52)">-additional</text><text class="terminal-1126029279-r4" x="170.8" y="1288.8" textLength="158.6" clip-path="ur [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1313.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-53)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1313.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-53)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1313.2" textLength="134.2" clip-path="url(#terminal-1126029279-line-53)">-additional</text><text class="terminal-1126029279-r4" x="170.8" y="1313.2" textLength="146.4" clip-path="ur [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1337.6" textLength="12.2" clip-path="url(#terminal-1126029279-line-54)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1337.6" textLength="12.2" clip-path="url(#terminal-1126029279-line-54)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1337.6" textLength="134.2" clip-path="url(#terminal-1126029279-line-54)">-additional</text><text class="terminal-1126029279-r4" x="170.8" y="1337.6" textLength="195.2" clip-path="ur [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1362" textLength="12.2" clip-path="url(#terminal-1126029279-line-55)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1362" textLength="12.2" clip-path="url(#terminal-1126029279-line-55)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1362" textLength="97.6" clip-path="url(#terminal-1126029279-line-55)">-runtime</text><text class="terminal-1126029279-r4" x="134.2" y="1362" textLength="109.8" clip-path="url(#terminal- [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1386.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-56)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1386.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-56)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1386.4" textLength="97.6" clip-path="url(#terminal-1126029279-line-56)">-runtime</text><text class="terminal-1126029279-r4" x="134.2" y="1386.4" textLength="146.4" clip-path="url(#t [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1410.8" textLength="12.2" clip-path="url(#terminal-1126029279-line-57)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1410.8" textLength="12.2" clip-path="url(#terminal-1126029279-line-57)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1410.8" textLength="48.8" clip-path="url(#terminal-1126029279-line-57)">-dev</text><text class="terminal-1126029279-r4" x="85.4" y="1410.8" textLength="109.8" clip-path="url(#termin [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1435.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-58)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1435.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-58)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1435.2" textLength="48.8" clip-path="url(#terminal-1126029279-line-58)">-dev</text><text class="terminal-1126029279-r4" x="85.4" y="1435.2" textLength="146.4" clip-path="url(#termin [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1459.6" textLength="1464" clip-path="url(#terminal-1126029279-line-59)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1126029279-r2" x="1464" y="1459.6" textLength="12.2" clip-path="url(#terminal-1126029279-line-59)">
+</text><text class="terminal-1126029279-r5" x="0" y="1484" textLength="24.4" clip-path="url(#terminal-1126029279-line-60)">╭─</text><text class="terminal-1126029279-r5" x="24.4" y="1484" textLength="1415.2" clip-path="url(#terminal-1126029279-line-60)">&#160;Customization&#160;options&#160;(for&#160;specific&#160;customization&#160;needs)&#160;──────────────────────────────────────────────────────────</text><text class="terminal-1126029279-r5" x="1439.6" y="1484" textLength="24.4" clip-p [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1508.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-61)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1508.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-61)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1508.4" textLength="97.6" clip-path="url(#terminal-1126029279-line-61)">-install</text><text class="terminal-1126029279-r4" x="134.2" y="1508.4" textLength="268.4" clip-path="url(#t [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1532.8" textLength="12.2" clip-path="url(#terminal-1126029279-line-62)">│</text><text class="terminal-1126029279-r2" x="536.8" y="1532.8" textLength="97.6" clip-path="url(#terminal-1126029279-line-62)">Implies&#160;</text><text class="terminal-1126029279-r4" x="634.4" y="1532.8" textLength="12.2" clip-path="url(#terminal-1126029279-line-62)">-</text><text class="terminal-1126029279-r4" x="646.6" y="1532.8" textLength="97.6" clip-path=" [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1557.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-63)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1557.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-63)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1557.2" textLength="97.6" clip-path="url(#terminal-1126029279-line-63)">-cleanup</text><text class="terminal-1126029279-r4" x="134.2" y="1557.2" textLength="97.6" clip-path="url(#te [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1581.6" textLength="12.2" clip-path="url(#terminal-1126029279-line-64)">│</text><text class="terminal-1126029279-r2" x="536.8" y="1581.6" textLength="170.8" clip-path="url(#terminal-1126029279-line-64)">together&#160;with&#160;</text><text class="terminal-1126029279-r4" x="707.6" y="1581.6" textLength="12.2" clip-path="url(#terminal-1126029279-line-64)">-</text><text class="terminal-1126029279-r4" x="719.8" y="1581.6" textLength="97.6" [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1606" textLength="12.2" clip-path="url(#terminal-1126029279-line-65)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1606" textLength="12.2" clip-path="url(#terminal-1126029279-line-65)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1606" textLength="97.6" clip-path="url(#terminal-1126029279-line-65)">-disable</text><text class="terminal-1126029279-r4" x="134.2" y="1606" textLength="317.2" clip-path="url(#terminal- [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1630.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-66)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1630.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-66)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1630.4" textLength="97.6" clip-path="url(#terminal-1126029279-line-66)">-disable</text><text class="terminal-1126029279-r4" x="134.2" y="1630.4" textLength="317.2" clip-path="url(#t [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1654.8" textLength="12.2" clip-path="url(#terminal-1126029279-line-67)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1654.8" textLength="12.2" clip-path="url(#terminal-1126029279-line-67)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1654.8" textLength="97.6" clip-path="url(#terminal-1126029279-line-67)">-disable</text><text class="terminal-1126029279-r4" x="134.2" y="1654.8" textLength="353.8" clip-path="url(#t [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1679.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-68)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1679.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-68)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1679.2" textLength="97.6" clip-path="url(#terminal-1126029279-line-68)">-disable</text><text class="terminal-1126029279-r4" x="134.2" y="1679.2" textLength="231.8" clip-path="url(#t [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1703.6" textLength="12.2" clip-path="url(#terminal-1126029279-line-69)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1703.6" textLength="12.2" clip-path="url(#terminal-1126029279-line-69)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1703.6" textLength="97.6" clip-path="url(#terminal-1126029279-line-69)">-install</text><text class="terminal-1126029279-r4" x="134.2" y="1703.6" textLength="219.6" clip-path="url(#t [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1728" textLength="12.2" clip-path="url(#terminal-1126029279-line-70)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1728" textLength="12.2" clip-path="url(#terminal-1126029279-line-70)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1728" textLength="158.6" clip-path="url(#terminal-1126029279-line-70)">-installation</text><text class="terminal-1126029279-r4" x="195.2" y="1728" textLength="85.4" clip-path="url(#term [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1752.4" textLength="1464" clip-path="url(#terminal-1126029279-line-71)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1126029279-r2" x="1464" y="1752.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-71)">
+</text><text class="terminal-1126029279-r5" x="0" y="1776.8" textLength="24.4" clip-path="url(#terminal-1126029279-line-72)">╭─</text><text class="terminal-1126029279-r5" x="24.4" y="1776.8" textLength="1415.2" clip-path="url(#terminal-1126029279-line-72)">&#160;Preparing&#160;cache&#160;and&#160;push&#160;(for&#160;maintainers&#160;and&#160;CI)&#160;─────────────────────────────────────────────────────────────────</text><text class="terminal-1126029279-r5" x="1439.6" y="1776.8" textLeng [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1801.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-73)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1801.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-73)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1801.2" textLength="85.4" clip-path="url(#terminal-1126029279-line-73)">-github</text><text class="terminal-1126029279-r4" x="122" y="1801.2" textLength="73.2" clip-path="url(#termi [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1825.6" textLength="12.2" clip-path="url(#terminal-1126029279-line-74)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1825.6" textLength="12.2" clip-path="url(#terminal-1126029279-line-74)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1825.6" textLength="85.4" clip-path="url(#terminal-1126029279-line-74)">-github</text><text class="terminal-1126029279-r4" x="122" y="1825.6" textLength="109.8" clip-path="url(#term [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1850" textLength="12.2" clip-path="url(#terminal-1126029279-line-75)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1850" textLength="12.2" clip-path="url(#terminal-1126029279-line-75)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1850" textLength="109.8" clip-path="url(#terminal-1126029279-line-75)">-platform</text><text class="terminal-1126029279-r2" x="341.6" y="1850" textLength="329.4" clip-path="url(#termina [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1874.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-76)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1874.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-76)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1874.4" textLength="61" clip-path="url(#terminal-1126029279-line-76)">-push</text><text class="terminal-1126029279-r2" x="341.6" y="1874.4" textLength="353.8" clip-path="url(#termin [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1898.8" textLength="12.2" clip-path="url(#terminal-1126029279-line-77)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1898.8" textLength="12.2" clip-path="url(#terminal-1126029279-line-77)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1898.8" textLength="73.2" clip-path="url(#terminal-1126029279-line-77)">-empty</text><text class="terminal-1126029279-r4" x="109.8" y="1898.8" textLength="73.2" clip-path="url(#term [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1923.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-78)">│</text><text class="terminal-1126029279-r4" x="24.4" y="1923.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-78)">-</text><text class="terminal-1126029279-r4" x="36.6" y="1923.2" textLength="97.6" clip-path="url(#terminal-1126029279-line-78)">-prepare</text><text class="terminal-1126029279-r4" x="134.2" y="1923.2" textLength="158.6" clip-path="url(#t [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1947.6" textLength="12.2" clip-path="url(#terminal-1126029279-line-79)">│</text><text class="terminal-1126029279-r2" x="341.6" y="1947.6" textLength="1098" clip-path="url(#terminal-1126029279-line-79)">image).&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
+</text><text class="terminal-1126029279-r5" x="0" y="1972" textLength="1464" clip-path="url(#terminal-1126029279-line-80)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1126029279-r2" x="1464" y="1972" textLength="12.2" clip-path="url(#terminal-1126029279-line-80)">
+</text><text class="terminal-1126029279-r5" x="0" y="1996.4" textLength="24.4" clip-path="url(#terminal-1126029279-line-81)">╭─</text><text class="terminal-1126029279-r5" x="24.4" y="1996.4" textLength="1415.2" clip-path="url(#terminal-1126029279-line-81)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1126029279-r5" x="1439.6" y="1996.4" textLength="24.4" clip-path="url(#term [...]
+</text><text class="terminal-1126029279-r5" x="0" y="2020.8" textLength="12.2" clip-path="url(#terminal-1126029279-line-82)">│</text><text class="terminal-1126029279-r4" x="24.4" y="2020.8" textLength="12.2" clip-path="url(#terminal-1126029279-line-82)">-</text><text class="terminal-1126029279-r4" x="36.6" y="2020.8" textLength="85.4" clip-path="url(#terminal-1126029279-line-82)">-github</text><text class="terminal-1126029279-r4" x="122" y="2020.8" textLength="134.2" clip-path="url(#term [...]
+</text><text class="terminal-1126029279-r5" x="0" y="2045.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-83)">│</text><text class="terminal-1126029279-r4" x="24.4" y="2045.2" textLength="12.2" clip-path="url(#terminal-1126029279-line-83)">-</text><text class="terminal-1126029279-r4" x="36.6" y="2045.2" textLength="85.4" clip-path="url(#terminal-1126029279-line-83)">-answer</text><text class="terminal-1126029279-r6" x="280.6" y="2045.2" textLength="24.4" clip-path="url(#ter [...]
+</text><text class="terminal-1126029279-r5" x="0" y="2069.6" textLength="12.2" clip-path="url(#terminal-1126029279-line-84)">│</text><text class="terminal-1126029279-r4" x="24.4" y="2069.6" textLength="12.2" clip-path="url(#terminal-1126029279-line-84)">-</text><text class="terminal-1126029279-r4" x="36.6" y="2069.6" textLength="48.8" clip-path="url(#terminal-1126029279-line-84)">-dry</text><text class="terminal-1126029279-r4" x="85.4" y="2069.6" textLength="48.8" clip-path="url(#termina [...]
+</text><text class="terminal-1126029279-r5" x="0" y="2094" textLength="12.2" clip-path="url(#terminal-1126029279-line-85)">│</text><text class="terminal-1126029279-r4" x="24.4" y="2094" textLength="12.2" clip-path="url(#terminal-1126029279-line-85)">-</text><text class="terminal-1126029279-r4" x="36.6" y="2094" textLength="97.6" clip-path="url(#terminal-1126029279-line-85)">-verbose</text><text class="terminal-1126029279-r6" x="280.6" y="2094" textLength="24.4" clip-path="url(#terminal-1 [...]
+</text><text class="terminal-1126029279-r5" x="0" y="2118.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-86)">│</text><text class="terminal-1126029279-r4" x="24.4" y="2118.4" textLength="12.2" clip-path="url(#terminal-1126029279-line-86)">-</text><text class="terminal-1126029279-r4" x="36.6" y="2118.4" textLength="61" clip-path="url(#terminal-1126029279-line-86)">-help</text><text class="terminal-1126029279-r6" x="280.6" y="2118.4" textLength="24.4" clip-path="url(#termina [...]
+</text><text class="terminal-1126029279-r5" x="0" y="2142.8" textLength="1464" clip-path="url(#terminal-1126029279-line-87)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1126029279-r2" x="1464" y="2142.8" textLength="12.2" clip-path="url(#terminal-1126029279-line-87)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_prod-image_pull.svg b/images/breeze/output_prod-image_pull.svg
index 460793f165..67a0d14560 100644
--- a/images/breeze/output_prod-image_pull.svg
+++ b/images/breeze/output_prod-image_pull.svg
@@ -19,169 +19,169 @@
         font-weight: 700;
     }
 
-    .terminal-930179811-matrix {
+    .terminal-1427270597-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-930179811-title {
+    .terminal-1427270597-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-930179811-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-930179811-r2 { fill: #c5c8c6 }
-.terminal-930179811-r3 { fill: #d0b344;font-weight: bold }
-.terminal-930179811-r4 { fill: #868887 }
-.terminal-930179811-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-930179811-r6 { fill: #98a84b;font-weight: bold }
-.terminal-930179811-r7 { fill: #8d7b39 }
+    .terminal-1427270597-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-1427270597-r2 { fill: #c5c8c6 }
+.terminal-1427270597-r3 { fill: #d0b344;font-weight: bold }
+.terminal-1427270597-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-1427270597-r5 { fill: #868887 }
+.terminal-1427270597-r6 { fill: #98a84b;font-weight: bold }
+.terminal-1427270597-r7 { fill: #8d7b39 }
     </style>
 
     <defs>
-    <clipPath id="terminal-930179811-clip-terminal">
+    <clipPath id="terminal-1427270597-clip-terminal">
       <rect x="0" y="0" width="1463.0" height="779.8" />
     </clipPath>
-    <clipPath id="terminal-930179811-line-0">
+    <clipPath id="terminal-1427270597-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-1">
+<clipPath id="terminal-1427270597-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-2">
+<clipPath id="terminal-1427270597-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-3">
+<clipPath id="terminal-1427270597-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-4">
+<clipPath id="terminal-1427270597-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-5">
+<clipPath id="terminal-1427270597-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-6">
+<clipPath id="terminal-1427270597-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-7">
+<clipPath id="terminal-1427270597-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-8">
+<clipPath id="terminal-1427270597-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-9">
+<clipPath id="terminal-1427270597-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-10">
+<clipPath id="terminal-1427270597-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-11">
+<clipPath id="terminal-1427270597-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-12">
+<clipPath id="terminal-1427270597-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-13">
+<clipPath id="terminal-1427270597-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-14">
+<clipPath id="terminal-1427270597-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-15">
+<clipPath id="terminal-1427270597-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-16">
+<clipPath id="terminal-1427270597-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-17">
+<clipPath id="terminal-1427270597-line-17">
     <rect x="0" y="416.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-18">
+<clipPath id="terminal-1427270597-line-18">
     <rect x="0" y="440.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-19">
+<clipPath id="terminal-1427270597-line-19">
     <rect x="0" y="465.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-20">
+<clipPath id="terminal-1427270597-line-20">
     <rect x="0" y="489.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-21">
+<clipPath id="terminal-1427270597-line-21">
     <rect x="0" y="513.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-22">
+<clipPath id="terminal-1427270597-line-22">
     <rect x="0" y="538.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-23">
+<clipPath id="terminal-1427270597-line-23">
     <rect x="0" y="562.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-24">
+<clipPath id="terminal-1427270597-line-24">
     <rect x="0" y="587.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-25">
+<clipPath id="terminal-1427270597-line-25">
     <rect x="0" y="611.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-26">
+<clipPath id="terminal-1427270597-line-26">
     <rect x="0" y="635.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-27">
+<clipPath id="terminal-1427270597-line-27">
     <rect x="0" y="660.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-28">
+<clipPath id="terminal-1427270597-line-28">
     <rect x="0" y="684.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-29">
+<clipPath id="terminal-1427270597-line-29">
     <rect x="0" y="709.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-930179811-line-30">
+<clipPath id="terminal-1427270597-line-30">
     <rect x="0" y="733.5" width="1464" height="24.65"/>
             </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="828.8" rx="8"/><text class="terminal-930179811-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;prod-image&#160;pull</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="828.8" rx="8"/><text class="terminal-1427270597-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;prod-image&#160;pull</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-930179811-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-1427270597-clip-terminal)">
     
-    <g class="terminal-930179811-matrix">
-    <text class="terminal-930179811-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-930179811-line-0)">
-</text><text class="terminal-930179811-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-930179811-line-1)">Usage:&#160;</text><text class="terminal-930179811-r1" x="97.6" y="44.4" textLength="671" clip-path="url(#terminal-930179811-line-1)">breeze&#160;prod-image&#160;pull&#160;[OPTIONS]&#160;[EXTRA_PYTEST_ARGS]...</text><text class="terminal-930179811-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-930179811-line-1)">
-</text><text class="terminal-930179811-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-930179811-line-2)">
-</text><text class="terminal-930179811-r2" x="12.2" y="93.2" textLength="1122.4" clip-path="url(#terminal-930179811-line-3)">Pull&#160;and&#160;optionally&#160;verify&#160;Production&#160;images&#160;-&#160;possibly&#160;in&#160;parallel&#160;for&#160;all&#160;Python&#160;versions.</text><text class="terminal-930179811-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-930179811-line-3)">
-</text><text class="terminal-930179811-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-930179811-line-4)">
-</text><text class="terminal-930179811-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-930179811-line-5)">╭─</text><text class="terminal-930179811-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-930179811-line-5)">&#160;Pull&#160;image&#160;flags&#160;──────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-930179811-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-930179 [...]
-</text><text class="terminal-930179811-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-930179811-line-6)">│</text><text class="terminal-930179811-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-930179811-line-6)">-</text><text class="terminal-930179811-r5" x="36.6" y="166.4" textLength="73.2" clip-path="url(#terminal-930179811-line-6)">-image</text><text class="terminal-930179811-r5" x="109.8" y="166.4" textLength="48.8" clip-path="url(#terminal-930179811 [...]
-</text><text class="terminal-930179811-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-930179811-line-7)">│</text><text class="terminal-930179811-r5" x="24.4" y="190.8" textLength="12.2" clip-path="url(#terminal-930179811-line-7)">-</text><text class="terminal-930179811-r5" x="36.6" y="190.8" textLength="85.4" clip-path="url(#terminal-930179811-line-7)">-python</text><text class="terminal-930179811-r6" x="244" y="190.8" textLength="24.4" clip-path="url(#terminal-930179811- [...]
-</text><text class="terminal-930179811-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-930179811-line-8)">│</text><text class="terminal-930179811-r4" x="292.8" y="215.2" textLength="732" clip-path="url(#terminal-930179811-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-930179811-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-930179811-line-9)">│</text><text class="terminal-930179811-r5" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-930179811-line-9)">-</text><text class="terminal-930179811-r5" x="36.6" y="239.6" textLength="85.4" clip-path="url(#terminal-930179811-line-9)">-github</text><text class="terminal-930179811-r5" x="122" y="239.6" textLength="73.2" clip-path="url(#terminal-930179811- [...]
-</text><text class="terminal-930179811-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-930179811-line-10)">│</text><text class="terminal-930179811-r5" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-930179811-line-10)">-</text><text class="terminal-930179811-r5" x="36.6" y="264" textLength="85.4" clip-path="url(#terminal-930179811-line-10)">-verify</text><text class="terminal-930179811-r2" x="292.8" y="264" textLength="158.6" clip-path="url(#terminal-930179811-li [...]
-</text><text class="terminal-930179811-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-930179811-line-11)">│</text><text class="terminal-930179811-r5" x="24.4" y="288.4" textLength="12.2" clip-path="url(#terminal-930179811-line-11)">-</text><text class="terminal-930179811-r5" x="36.6" y="288.4" textLength="61" clip-path="url(#terminal-930179811-line-11)">-wait</text><text class="terminal-930179811-r5" x="97.6" y="288.4" textLength="122" clip-path="url(#terminal-930179811-l [...]
-</text><text class="terminal-930179811-r4" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-930179811-line-12)">│</text><text class="terminal-930179811-r5" x="24.4" y="312.8" textLength="12.2" clip-path="url(#terminal-930179811-line-12)">-</text><text class="terminal-930179811-r5" x="36.6" y="312.8" textLength="48.8" clip-path="url(#terminal-930179811-line-12)">-tag</text><text class="terminal-930179811-r5" x="85.4" y="312.8" textLength="122" clip-path="url(#terminal-930179811- [...]
-</text><text class="terminal-930179811-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-930179811-line-13)">│</text><text class="terminal-930179811-r2" x="292.8" y="337.2" textLength="231.8" clip-path="url(#terminal-930179811-line-13)">or&#160;pull&#160;image&#160;with&#160;</text><text class="terminal-930179811-r5" x="524.6" y="337.2" textLength="12.2" clip-path="url(#terminal-930179811-line-13)">-</text><text class="terminal-930179811-r5" x="536.8" y="337.2" textLength="7 [...]
-</text><text class="terminal-930179811-r4" x="0" y="361.6" textLength="1464" clip-path="url(#terminal-930179811-line-14)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-930179811-r2" x="1464" y="361.6" textLength="12.2" clip-path="url(#terminal-930179811-line-14)">
-</text><text class="terminal-930179811-r4" x="0" y="386" textLength="24.4" clip-path="url(#terminal-930179811-line-15)">╭─</text><text class="terminal-930179811-r4" x="24.4" y="386" textLength="1415.2" clip-path="url(#terminal-930179811-line-15)">&#160;Parallel&#160;running&#160;──────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-930179811-r4" x="1439.6" y="386" textLength="24.4" clip-path="url(#terminal-930179811 [...]
-</text><text class="terminal-930179811-r4" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-930179811-line-16)">│</text><text class="terminal-930179811-r5" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-930179811-line-16)">-</text><text class="terminal-930179811-r5" x="36.6" y="410.4" textLength="48.8" clip-path="url(#terminal-930179811-line-16)">-run</text><text class="terminal-930179811-r5" x="85.4" y="410.4" textLength="146.4" clip-path="url(#terminal-93017981 [...]
-</text><text class="terminal-930179811-r4" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-930179811-line-17)">│</text><text class="terminal-930179811-r5" x="24.4" y="434.8" textLength="12.2" clip-path="url(#terminal-930179811-line-17)">-</text><text class="terminal-930179811-r5" x="36.6" y="434.8" textLength="146.4" clip-path="url(#terminal-930179811-line-17)">-parallelism</text><text class="terminal-930179811-r2" x="378.2" y="434.8" textLength="915" clip-path="url(#terminal- [...]
-</text><text class="terminal-930179811-r4" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-930179811-line-18)">│</text><text class="terminal-930179811-r7" x="378.2" y="459.2" textLength="915" clip-path="url(#terminal-930179811-line-18)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
-</text><text class="terminal-930179811-r4" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-930179811-line-19)">│</text><text class="terminal-930179811-r4" x="378.2" y="483.6" textLength="915" clip-path="url(#terminal-930179811-line-19)">[default:&#160;4;&#160;1&lt;=x&lt;=8]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
-</text><text class="terminal-930179811-r4" x="0" y="508" textLength="12.2" clip-path="url(#terminal-930179811-line-20)">│</text><text class="terminal-930179811-r5" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-930179811-line-20)">-</text><text class="terminal-930179811-r5" x="36.6" y="508" textLength="85.4" clip-path="url(#terminal-930179811-line-20)">-python</text><text class="terminal-930179811-r5" x="122" y="508" textLength="109.8" clip-path="url(#terminal-930179811-line [...]
-</text><text class="terminal-930179811-r4" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-930179811-line-21)">│</text><text class="terminal-930179811-r4" x="378.2" y="532.4" textLength="951.6" clip-path="url(#terminal-930179811-line-21)">[default:&#160;3.7&#160;3.8&#160;3.9&#160;3.10]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
-</text><text class="terminal-930179811-r4" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-930179811-line-22)">│</text><text class="terminal-930179811-r5" x="24.4" y="556.8" textLength="12.2" clip-path="url(#terminal-930179811-line-22)">-</text><text class="terminal-930179811-r5" x="36.6" y="556.8" textLength="61" clip-path="url(#terminal-930179811-line-22)">-skip</text><text class="terminal-930179811-r5" x="97.6" y="556.8" textLength="97.6" clip-path="url(#terminal-930179811- [...]
-</text><text class="terminal-930179811-r4" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-930179811-line-23)">│</text><text class="terminal-930179811-r5" x="24.4" y="581.2" textLength="12.2" clip-path="url(#terminal-930179811-line-23)">-</text><text class="terminal-930179811-r5" x="36.6" y="581.2" textLength="73.2" clip-path="url(#terminal-930179811-line-23)">-debug</text><text class="terminal-930179811-r5" x="109.8" y="581.2" textLength="122" clip-path="url(#terminal-9301798 [...]
-</text><text class="terminal-930179811-r4" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-930179811-line-24)">│</text><text class="terminal-930179811-r5" x="24.4" y="605.6" textLength="12.2" clip-path="url(#terminal-930179811-line-24)">-</text><text class="terminal-930179811-r5" x="36.6" y="605.6" textLength="97.6" clip-path="url(#terminal-930179811-line-24)">-include</text><text class="terminal-930179811-r5" x="134.2" y="605.6" textLength="195.2" clip-path="url(#terminal-930 [...]
-</text><text class="terminal-930179811-r4" x="0" y="630" textLength="1464" clip-path="url(#terminal-930179811-line-25)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-930179811-r2" x="1464" y="630" textLength="12.2" clip-path="url(#terminal-930179811-line-25)">
-</text><text class="terminal-930179811-r4" x="0" y="654.4" textLength="24.4" clip-path="url(#terminal-930179811-line-26)">╭─</text><text class="terminal-930179811-r4" x="24.4" y="654.4" textLength="1415.2" clip-path="url(#terminal-930179811-line-26)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-930179811-r4" x="1439.6" y="654.4" textLength="24.4" clip-path="url(#terminal-930 [...]
-</text><text class="terminal-930179811-r4" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-930179811-line-27)">│</text><text class="terminal-930179811-r5" x="24.4" y="678.8" textLength="12.2" clip-path="url(#terminal-930179811-line-27)">-</text><text class="terminal-930179811-r5" x="36.6" y="678.8" textLength="97.6" clip-path="url(#terminal-930179811-line-27)">-verbose</text><text class="terminal-930179811-r6" x="280.6" y="678.8" textLength="24.4" clip-path="url(#terminal-9301 [...]
-</text><text class="terminal-930179811-r4" x="0" y="703.2" textLength="12.2" clip-path="url(#terminal-930179811-line-28)">│</text><text class="terminal-930179811-r5" x="24.4" y="703.2" textLength="12.2" clip-path="url(#terminal-930179811-line-28)">-</text><text class="terminal-930179811-r5" x="36.6" y="703.2" textLength="48.8" clip-path="url(#terminal-930179811-line-28)">-dry</text><text class="terminal-930179811-r5" x="85.4" y="703.2" textLength="48.8" clip-path="url(#terminal-930179811 [...]
-</text><text class="terminal-930179811-r4" x="0" y="727.6" textLength="12.2" clip-path="url(#terminal-930179811-line-29)">│</text><text class="terminal-930179811-r5" x="24.4" y="727.6" textLength="12.2" clip-path="url(#terminal-930179811-line-29)">-</text><text class="terminal-930179811-r5" x="36.6" y="727.6" textLength="85.4" clip-path="url(#terminal-930179811-line-29)">-github</text><text class="terminal-930179811-r5" x="122" y="727.6" textLength="134.2" clip-path="url(#terminal-930179 [...]
-</text><text class="terminal-930179811-r4" x="0" y="752" textLength="12.2" clip-path="url(#terminal-930179811-line-30)">│</text><text class="terminal-930179811-r5" x="24.4" y="752" textLength="12.2" clip-path="url(#terminal-930179811-line-30)">-</text><text class="terminal-930179811-r5" x="36.6" y="752" textLength="61" clip-path="url(#terminal-930179811-line-30)">-help</text><text class="terminal-930179811-r6" x="280.6" y="752" textLength="24.4" clip-path="url(#terminal-930179811-line-30 [...]
-</text><text class="terminal-930179811-r4" x="0" y="776.4" textLength="1464" clip-path="url(#terminal-930179811-line-31)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-930179811-r2" x="1464" y="776.4" textLength="12.2" clip-path="url(#terminal-930179811-line-31)">
+    <g class="terminal-1427270597-matrix">
+    <text class="terminal-1427270597-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-1427270597-line-0)">
+</text><text class="terminal-1427270597-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-1427270597-line-1)">Usage:&#160;</text><text class="terminal-1427270597-r1" x="97.6" y="44.4" textLength="292.8" clip-path="url(#terminal-1427270597-line-1)">breeze&#160;prod-image&#160;pull&#160;[</text><text class="terminal-1427270597-r4" x="390.4" y="44.4" textLength="85.4" clip-path="url(#terminal-1427270597-line-1)">OPTIONS</text><text class="terminal-1427270597-r1" x="475.8" y=" [...]
+</text><text class="terminal-1427270597-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-1427270597-line-2)">
+</text><text class="terminal-1427270597-r2" x="12.2" y="93.2" textLength="1122.4" clip-path="url(#terminal-1427270597-line-3)">Pull&#160;and&#160;optionally&#160;verify&#160;Production&#160;images&#160;-&#160;possibly&#160;in&#160;parallel&#160;for&#160;all&#160;Python&#160;versions.</text><text class="terminal-1427270597-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-1427270597-line-3)">
+</text><text class="terminal-1427270597-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-1427270597-line-4)">
+</text><text class="terminal-1427270597-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-1427270597-line-5)">╭─</text><text class="terminal-1427270597-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-1427270597-line-5)">&#160;Pull&#160;image&#160;flags&#160;──────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1427270597-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-1 [...]
+</text><text class="terminal-1427270597-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-1427270597-line-6)">│</text><text class="terminal-1427270597-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-1427270597-line-6)">-</text><text class="terminal-1427270597-r4" x="36.6" y="166.4" textLength="73.2" clip-path="url(#terminal-1427270597-line-6)">-image</text><text class="terminal-1427270597-r4" x="109.8" y="166.4" textLength="48.8" clip-path="url(#terminal-14 [...]
+</text><text class="terminal-1427270597-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-1427270597-line-7)">│</text><text class="terminal-1427270597-r4" x="24.4" y="190.8" textLength="12.2" clip-path="url(#terminal-1427270597-line-7)">-</text><text class="terminal-1427270597-r4" x="36.6" y="190.8" textLength="85.4" clip-path="url(#terminal-1427270597-line-7)">-python</text><text class="terminal-1427270597-r6" x="244" y="190.8" textLength="24.4" clip-path="url(#terminal-142 [...]
+</text><text class="terminal-1427270597-r5" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-1427270597-line-8)">│</text><text class="terminal-1427270597-r5" x="292.8" y="215.2" textLength="732" clip-path="url(#terminal-1427270597-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-1427270597-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-1427270597-line-9)">│</text><text class="terminal-1427270597-r4" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-1427270597-line-9)">-</text><text class="terminal-1427270597-r4" x="36.6" y="239.6" textLength="85.4" clip-path="url(#terminal-1427270597-line-9)">-github</text><text class="terminal-1427270597-r4" x="122" y="239.6" textLength="73.2" clip-path="url(#terminal-142 [...]
+</text><text class="terminal-1427270597-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-1427270597-line-10)">│</text><text class="terminal-1427270597-r4" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-1427270597-line-10)">-</text><text class="terminal-1427270597-r4" x="36.6" y="264" textLength="85.4" clip-path="url(#terminal-1427270597-line-10)">-verify</text><text class="terminal-1427270597-r2" x="292.8" y="264" textLength="158.6" clip-path="url(#terminal-14272 [...]
+</text><text class="terminal-1427270597-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-1427270597-line-11)">│</text><text class="terminal-1427270597-r4" x="24.4" y="288.4" textLength="12.2" clip-path="url(#terminal-1427270597-line-11)">-</text><text class="terminal-1427270597-r4" x="36.6" y="288.4" textLength="61" clip-path="url(#terminal-1427270597-line-11)">-wait</text><text class="terminal-1427270597-r4" x="97.6" y="288.4" textLength="122" clip-path="url(#terminal-1427 [...]
+</text><text class="terminal-1427270597-r5" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-1427270597-line-12)">│</text><text class="terminal-1427270597-r4" x="24.4" y="312.8" textLength="12.2" clip-path="url(#terminal-1427270597-line-12)">-</text><text class="terminal-1427270597-r4" x="36.6" y="312.8" textLength="48.8" clip-path="url(#terminal-1427270597-line-12)">-tag</text><text class="terminal-1427270597-r4" x="85.4" y="312.8" textLength="122" clip-path="url(#terminal-142 [...]
+</text><text class="terminal-1427270597-r5" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-1427270597-line-13)">│</text><text class="terminal-1427270597-r2" x="292.8" y="337.2" textLength="231.8" clip-path="url(#terminal-1427270597-line-13)">or&#160;pull&#160;image&#160;with&#160;</text><text class="terminal-1427270597-r4" x="524.6" y="337.2" textLength="12.2" clip-path="url(#terminal-1427270597-line-13)">-</text><text class="terminal-1427270597-r4" x="536.8" y="337.2" textLe [...]
+</text><text class="terminal-1427270597-r5" x="0" y="361.6" textLength="1464" clip-path="url(#terminal-1427270597-line-14)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1427270597-r2" x="1464" y="361.6" textLength="12.2" clip-path="url(#terminal-1427270597-line-14)">
+</text><text class="terminal-1427270597-r5" x="0" y="386" textLength="24.4" clip-path="url(#terminal-1427270597-line-15)">╭─</text><text class="terminal-1427270597-r5" x="24.4" y="386" textLength="1415.2" clip-path="url(#terminal-1427270597-line-15)">&#160;Parallel&#160;running&#160;──────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1427270597-r5" x="1439.6" y="386" textLength="24.4" clip-path="url(#terminal-1427 [...]
+</text><text class="terminal-1427270597-r5" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-1427270597-line-16)">│</text><text class="terminal-1427270597-r4" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-1427270597-line-16)">-</text><text class="terminal-1427270597-r4" x="36.6" y="410.4" textLength="48.8" clip-path="url(#terminal-1427270597-line-16)">-run</text><text class="terminal-1427270597-r4" x="85.4" y="410.4" textLength="146.4" clip-path="url(#terminal-1 [...]
+</text><text class="terminal-1427270597-r5" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-1427270597-line-17)">│</text><text class="terminal-1427270597-r4" x="24.4" y="434.8" textLength="12.2" clip-path="url(#terminal-1427270597-line-17)">-</text><text class="terminal-1427270597-r4" x="36.6" y="434.8" textLength="146.4" clip-path="url(#terminal-1427270597-line-17)">-parallelism</text><text class="terminal-1427270597-r2" x="378.2" y="434.8" textLength="915" clip-path="url(#te [...]
+</text><text class="terminal-1427270597-r5" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-1427270597-line-18)">│</text><text class="terminal-1427270597-r7" x="378.2" y="459.2" textLength="915" clip-path="url(#terminal-1427270597-line-18)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
+</text><text class="terminal-1427270597-r5" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-1427270597-line-19)">│</text><text class="terminal-1427270597-r5" x="378.2" y="483.6" textLength="915" clip-path="url(#terminal-1427270597-line-19)">[default:&#160;4;&#160;1&lt;=x&lt;=8]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-1427270597-r5" x="0" y="508" textLength="12.2" clip-path="url(#terminal-1427270597-line-20)">│</text><text class="terminal-1427270597-r4" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-1427270597-line-20)">-</text><text class="terminal-1427270597-r4" x="36.6" y="508" textLength="85.4" clip-path="url(#terminal-1427270597-line-20)">-python</text><text class="terminal-1427270597-r4" x="122" y="508" textLength="109.8" clip-path="url(#terminal-1427270 [...]
+</text><text class="terminal-1427270597-r5" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-1427270597-line-21)">│</text><text class="terminal-1427270597-r5" x="378.2" y="532.4" textLength="951.6" clip-path="url(#terminal-1427270597-line-21)">[default:&#160;3.7&#160;3.8&#160;3.9&#160;3.10&#160;3.11]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-1427270597-r5" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-1427270597-line-22)">│</text><text class="terminal-1427270597-r4" x="24.4" y="556.8" textLength="12.2" clip-path="url(#terminal-1427270597-line-22)">-</text><text class="terminal-1427270597-r4" x="36.6" y="556.8" textLength="61" clip-path="url(#terminal-1427270597-line-22)">-skip</text><text class="terminal-1427270597-r4" x="97.6" y="556.8" textLength="97.6" clip-path="url(#terminal-142 [...]
+</text><text class="terminal-1427270597-r5" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-1427270597-line-23)">│</text><text class="terminal-1427270597-r4" x="24.4" y="581.2" textLength="12.2" clip-path="url(#terminal-1427270597-line-23)">-</text><text class="terminal-1427270597-r4" x="36.6" y="581.2" textLength="73.2" clip-path="url(#terminal-1427270597-line-23)">-debug</text><text class="terminal-1427270597-r4" x="109.8" y="581.2" textLength="122" clip-path="url(#terminal- [...]
+</text><text class="terminal-1427270597-r5" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-1427270597-line-24)">│</text><text class="terminal-1427270597-r4" x="24.4" y="605.6" textLength="12.2" clip-path="url(#terminal-1427270597-line-24)">-</text><text class="terminal-1427270597-r4" x="36.6" y="605.6" textLength="97.6" clip-path="url(#terminal-1427270597-line-24)">-include</text><text class="terminal-1427270597-r4" x="134.2" y="605.6" textLength="195.2" clip-path="url(#termi [...]
+</text><text class="terminal-1427270597-r5" x="0" y="630" textLength="1464" clip-path="url(#terminal-1427270597-line-25)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1427270597-r2" x="1464" y="630" textLength="12.2" clip-path="url(#terminal-1427270597-line-25)">
+</text><text class="terminal-1427270597-r5" x="0" y="654.4" textLength="24.4" clip-path="url(#terminal-1427270597-line-26)">╭─</text><text class="terminal-1427270597-r5" x="24.4" y="654.4" textLength="1415.2" clip-path="url(#terminal-1427270597-line-26)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1427270597-r5" x="1439.6" y="654.4" textLength="24.4" clip-path="url(#termina [...]
+</text><text class="terminal-1427270597-r5" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-1427270597-line-27)">│</text><text class="terminal-1427270597-r4" x="24.4" y="678.8" textLength="12.2" clip-path="url(#terminal-1427270597-line-27)">-</text><text class="terminal-1427270597-r4" x="36.6" y="678.8" textLength="97.6" clip-path="url(#terminal-1427270597-line-27)">-verbose</text><text class="terminal-1427270597-r6" x="280.6" y="678.8" textLength="24.4" clip-path="url(#termin [...]
+</text><text class="terminal-1427270597-r5" x="0" y="703.2" textLength="12.2" clip-path="url(#terminal-1427270597-line-28)">│</text><text class="terminal-1427270597-r4" x="24.4" y="703.2" textLength="12.2" clip-path="url(#terminal-1427270597-line-28)">-</text><text class="terminal-1427270597-r4" x="36.6" y="703.2" textLength="48.8" clip-path="url(#terminal-1427270597-line-28)">-dry</text><text class="terminal-1427270597-r4" x="85.4" y="703.2" textLength="48.8" clip-path="url(#terminal-14 [...]
+</text><text class="terminal-1427270597-r5" x="0" y="727.6" textLength="12.2" clip-path="url(#terminal-1427270597-line-29)">│</text><text class="terminal-1427270597-r4" x="24.4" y="727.6" textLength="12.2" clip-path="url(#terminal-1427270597-line-29)">-</text><text class="terminal-1427270597-r4" x="36.6" y="727.6" textLength="85.4" clip-path="url(#terminal-1427270597-line-29)">-github</text><text class="terminal-1427270597-r4" x="122" y="727.6" textLength="134.2" clip-path="url(#terminal [...]
+</text><text class="terminal-1427270597-r5" x="0" y="752" textLength="12.2" clip-path="url(#terminal-1427270597-line-30)">│</text><text class="terminal-1427270597-r4" x="24.4" y="752" textLength="12.2" clip-path="url(#terminal-1427270597-line-30)">-</text><text class="terminal-1427270597-r4" x="36.6" y="752" textLength="61" clip-path="url(#terminal-1427270597-line-30)">-help</text><text class="terminal-1427270597-r6" x="280.6" y="752" textLength="24.4" clip-path="url(#terminal-1427270597 [...]
+</text><text class="terminal-1427270597-r5" x="0" y="776.4" textLength="1464" clip-path="url(#terminal-1427270597-line-31)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1427270597-r2" x="1464" y="776.4" textLength="12.2" clip-path="url(#terminal-1427270597-line-31)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_prod-image_verify.svg b/images/breeze/output_prod-image_verify.svg
index e193df0889..57317cec86 100644
--- a/images/breeze/output_prod-image_verify.svg
+++ b/images/breeze/output_prod-image_verify.svg
@@ -19,117 +19,117 @@
         font-weight: 700;
     }
 
-    .terminal-591802771-matrix {
+    .terminal-912011826-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-591802771-title {
+    .terminal-912011826-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-591802771-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-591802771-r2 { fill: #c5c8c6 }
-.terminal-591802771-r3 { fill: #d0b344;font-weight: bold }
-.terminal-591802771-r4 { fill: #868887 }
-.terminal-591802771-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-591802771-r6 { fill: #98a84b;font-weight: bold }
-.terminal-591802771-r7 { fill: #8d7b39 }
+    .terminal-912011826-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-912011826-r2 { fill: #c5c8c6 }
+.terminal-912011826-r3 { fill: #d0b344;font-weight: bold }
+.terminal-912011826-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-912011826-r5 { fill: #868887 }
+.terminal-912011826-r6 { fill: #98a84b;font-weight: bold }
+.terminal-912011826-r7 { fill: #8d7b39 }
     </style>
 
     <defs>
-    <clipPath id="terminal-591802771-clip-terminal">
+    <clipPath id="terminal-912011826-clip-terminal">
       <rect x="0" y="0" width="1463.0" height="462.59999999999997" />
     </clipPath>
-    <clipPath id="terminal-591802771-line-0">
+    <clipPath id="terminal-912011826-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-591802771-line-1">
+<clipPath id="terminal-912011826-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-591802771-line-2">
+<clipPath id="terminal-912011826-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-591802771-line-3">
+<clipPath id="terminal-912011826-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-591802771-line-4">
+<clipPath id="terminal-912011826-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-591802771-line-5">
+<clipPath id="terminal-912011826-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-591802771-line-6">
+<clipPath id="terminal-912011826-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-591802771-line-7">
+<clipPath id="terminal-912011826-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-591802771-line-8">
+<clipPath id="terminal-912011826-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-591802771-line-9">
+<clipPath id="terminal-912011826-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-591802771-line-10">
+<clipPath id="terminal-912011826-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-591802771-line-11">
+<clipPath id="terminal-912011826-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-591802771-line-12">
+<clipPath id="terminal-912011826-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-591802771-line-13">
+<clipPath id="terminal-912011826-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-591802771-line-14">
+<clipPath id="terminal-912011826-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-591802771-line-15">
+<clipPath id="terminal-912011826-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-591802771-line-16">
+<clipPath id="terminal-912011826-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-591802771-line-17">
+<clipPath id="terminal-912011826-line-17">
     <rect x="0" y="416.3" width="1464" height="24.65"/>
             </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="511.6" rx="8"/><text class="terminal-591802771-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;prod-image&#160;verify</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="511.6" rx="8"/><text class="terminal-912011826-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;prod-image&#160;verify</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-591802771-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-912011826-clip-terminal)">
     
-    <g class="terminal-591802771-matrix">
-    <text class="terminal-591802771-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-591802771-line-0)">
-</text><text class="terminal-591802771-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-591802771-line-1)">Usage:&#160;</text><text class="terminal-591802771-r1" x="97.6" y="44.4" textLength="695.4" clip-path="url(#terminal-591802771-line-1)">breeze&#160;prod-image&#160;verify&#160;[OPTIONS]&#160;[EXTRA_PYTEST_ARGS]...</text><text class="terminal-591802771-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-591802771-line-1)">
-</text><text class="terminal-591802771-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-591802771-line-2)">
-</text><text class="terminal-591802771-r2" x="12.2" y="93.2" textLength="292.8" clip-path="url(#terminal-591802771-line-3)">Verify&#160;Production&#160;image.</text><text class="terminal-591802771-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-591802771-line-3)">
-</text><text class="terminal-591802771-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-591802771-line-4)">
-</text><text class="terminal-591802771-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-591802771-line-5)">╭─</text><text class="terminal-591802771-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-591802771-line-5)">&#160;Verify&#160;image&#160;flags&#160;────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-591802771-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-591802 [...]
-</text><text class="terminal-591802771-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-591802771-line-6)">│</text><text class="terminal-591802771-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-591802771-line-6)">-</text><text class="terminal-591802771-r5" x="36.6" y="166.4" textLength="73.2" clip-path="url(#terminal-591802771-line-6)">-image</text><text class="terminal-591802771-r5" x="109.8" y="166.4" textLength="61" clip-path="url(#terminal-591802771-l [...]
-</text><text class="terminal-591802771-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-591802771-line-7)">│</text><text class="terminal-591802771-r5" x="24.4" y="190.8" textLength="12.2" clip-path="url(#terminal-591802771-line-7)">-</text><text class="terminal-591802771-r5" x="36.6" y="190.8" textLength="85.4" clip-path="url(#terminal-591802771-line-7)">-python</text><text class="terminal-591802771-r6" x="195.2" y="190.8" textLength="24.4" clip-path="url(#terminal-59180277 [...]
-</text><text class="terminal-591802771-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-591802771-line-8)">│</text><text class="terminal-591802771-r4" x="244" y="215.2" textLength="732" clip-path="url(#terminal-591802771-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-591802771-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-591802771-line-9)">│</text><text class="terminal-591802771-r5" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-591802771-line-9)">-</text><text class="terminal-591802771-r5" x="36.6" y="239.6" textLength="61" clip-path="url(#terminal-591802771-line-9)">-slim</text><text class="terminal-591802771-r5" x="97.6" y="239.6" textLength="73.2" clip-path="url(#terminal-591802771-lin [...]
-</text><text class="terminal-591802771-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-591802771-line-10)">│</text><text class="terminal-591802771-r5" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-591802771-line-10)">-</text><text class="terminal-591802771-r5" x="36.6" y="264" textLength="73.2" clip-path="url(#terminal-591802771-line-10)">-image</text><text class="terminal-591802771-r5" x="109.8" y="264" textLength="48.8" clip-path="url(#terminal-591802771-line [...]
-</text><text class="terminal-591802771-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-591802771-line-11)">│</text><text class="terminal-591802771-r5" x="24.4" y="288.4" textLength="12.2" clip-path="url(#terminal-591802771-line-11)">-</text><text class="terminal-591802771-r5" x="36.6" y="288.4" textLength="61" clip-path="url(#terminal-591802771-line-11)">-pull</text><text class="terminal-591802771-r2" x="244" y="288.4" textLength="646.6" clip-path="url(#terminal-591802771- [...]
-</text><text class="terminal-591802771-r4" x="0" y="312.8" textLength="1464" clip-path="url(#terminal-591802771-line-12)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-591802771-r2" x="1464" y="312.8" textLength="12.2" clip-path="url(#terminal-591802771-line-12)">
-</text><text class="terminal-591802771-r4" x="0" y="337.2" textLength="24.4" clip-path="url(#terminal-591802771-line-13)">╭─</text><text class="terminal-591802771-r4" x="24.4" y="337.2" textLength="1415.2" clip-path="url(#terminal-591802771-line-13)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-591802771-r4" x="1439.6" y="337.2" textLength="24.4" clip-path="url(#terminal-591 [...]
-</text><text class="terminal-591802771-r4" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-591802771-line-14)">│</text><text class="terminal-591802771-r5" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-591802771-line-14)">-</text><text class="terminal-591802771-r5" x="36.6" y="361.6" textLength="97.6" clip-path="url(#terminal-591802771-line-14)">-verbose</text><text class="terminal-591802771-r6" x="280.6" y="361.6" textLength="24.4" clip-path="url(#terminal-5918 [...]
-</text><text class="terminal-591802771-r4" x="0" y="386" textLength="12.2" clip-path="url(#terminal-591802771-line-15)">│</text><text class="terminal-591802771-r5" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-591802771-line-15)">-</text><text class="terminal-591802771-r5" x="36.6" y="386" textLength="48.8" clip-path="url(#terminal-591802771-line-15)">-dry</text><text class="terminal-591802771-r5" x="85.4" y="386" textLength="48.8" clip-path="url(#terminal-591802771-line-15 [...]
-</text><text class="terminal-591802771-r4" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-591802771-line-16)">│</text><text class="terminal-591802771-r5" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-591802771-line-16)">-</text><text class="terminal-591802771-r5" x="36.6" y="410.4" textLength="85.4" clip-path="url(#terminal-591802771-line-16)">-github</text><text class="terminal-591802771-r5" x="122" y="410.4" textLength="134.2" clip-path="url(#terminal-591802 [...]
-</text><text class="terminal-591802771-r4" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-591802771-line-17)">│</text><text class="terminal-591802771-r5" x="24.4" y="434.8" textLength="12.2" clip-path="url(#terminal-591802771-line-17)">-</text><text class="terminal-591802771-r5" x="36.6" y="434.8" textLength="61" clip-path="url(#terminal-591802771-line-17)">-help</text><text class="terminal-591802771-r6" x="280.6" y="434.8" textLength="24.4" clip-path="url(#terminal-591802771 [...]
-</text><text class="terminal-591802771-r4" x="0" y="459.2" textLength="1464" clip-path="url(#terminal-591802771-line-18)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-591802771-r2" x="1464" y="459.2" textLength="12.2" clip-path="url(#terminal-591802771-line-18)">
+    <g class="terminal-912011826-matrix">
+    <text class="terminal-912011826-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-912011826-line-0)">
+</text><text class="terminal-912011826-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-912011826-line-1)">Usage:&#160;</text><text class="terminal-912011826-r1" x="97.6" y="44.4" textLength="317.2" clip-path="url(#terminal-912011826-line-1)">breeze&#160;prod-image&#160;verify&#160;[</text><text class="terminal-912011826-r4" x="414.8" y="44.4" textLength="85.4" clip-path="url(#terminal-912011826-line-1)">OPTIONS</text><text class="terminal-912011826-r1" x="500.2" y="44.4" [...]
+</text><text class="terminal-912011826-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-912011826-line-2)">
+</text><text class="terminal-912011826-r2" x="12.2" y="93.2" textLength="292.8" clip-path="url(#terminal-912011826-line-3)">Verify&#160;Production&#160;image.</text><text class="terminal-912011826-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-912011826-line-3)">
+</text><text class="terminal-912011826-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-912011826-line-4)">
+</text><text class="terminal-912011826-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-912011826-line-5)">╭─</text><text class="terminal-912011826-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-912011826-line-5)">&#160;Verify&#160;image&#160;flags&#160;────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-912011826-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-912011 [...]
+</text><text class="terminal-912011826-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-912011826-line-6)">│</text><text class="terminal-912011826-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-912011826-line-6)">-</text><text class="terminal-912011826-r4" x="36.6" y="166.4" textLength="73.2" clip-path="url(#terminal-912011826-line-6)">-image</text><text class="terminal-912011826-r4" x="109.8" y="166.4" textLength="61" clip-path="url(#terminal-912011826-l [...]
+</text><text class="terminal-912011826-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-912011826-line-7)">│</text><text class="terminal-912011826-r4" x="24.4" y="190.8" textLength="12.2" clip-path="url(#terminal-912011826-line-7)">-</text><text class="terminal-912011826-r4" x="36.6" y="190.8" textLength="85.4" clip-path="url(#terminal-912011826-line-7)">-python</text><text class="terminal-912011826-r6" x="195.2" y="190.8" textLength="24.4" clip-path="url(#terminal-91201182 [...]
+</text><text class="terminal-912011826-r5" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-912011826-line-8)">│</text><text class="terminal-912011826-r5" x="244" y="215.2" textLength="732" clip-path="url(#terminal-912011826-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-912011826-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-912011826-line-9)">│</text><text class="terminal-912011826-r4" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-912011826-line-9)">-</text><text class="terminal-912011826-r4" x="36.6" y="239.6" textLength="61" clip-path="url(#terminal-912011826-line-9)">-slim</text><text class="terminal-912011826-r4" x="97.6" y="239.6" textLength="73.2" clip-path="url(#terminal-912011826-lin [...]
+</text><text class="terminal-912011826-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-912011826-line-10)">│</text><text class="terminal-912011826-r4" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-912011826-line-10)">-</text><text class="terminal-912011826-r4" x="36.6" y="264" textLength="73.2" clip-path="url(#terminal-912011826-line-10)">-image</text><text class="terminal-912011826-r4" x="109.8" y="264" textLength="48.8" clip-path="url(#terminal-912011826-line [...]
+</text><text class="terminal-912011826-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-912011826-line-11)">│</text><text class="terminal-912011826-r4" x="24.4" y="288.4" textLength="12.2" clip-path="url(#terminal-912011826-line-11)">-</text><text class="terminal-912011826-r4" x="36.6" y="288.4" textLength="61" clip-path="url(#terminal-912011826-line-11)">-pull</text><text class="terminal-912011826-r2" x="244" y="288.4" textLength="646.6" clip-path="url(#terminal-912011826- [...]
+</text><text class="terminal-912011826-r5" x="0" y="312.8" textLength="1464" clip-path="url(#terminal-912011826-line-12)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-912011826-r2" x="1464" y="312.8" textLength="12.2" clip-path="url(#terminal-912011826-line-12)">
+</text><text class="terminal-912011826-r5" x="0" y="337.2" textLength="24.4" clip-path="url(#terminal-912011826-line-13)">╭─</text><text class="terminal-912011826-r5" x="24.4" y="337.2" textLength="1415.2" clip-path="url(#terminal-912011826-line-13)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-912011826-r5" x="1439.6" y="337.2" textLength="24.4" clip-path="url(#terminal-912 [...]
+</text><text class="terminal-912011826-r5" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-912011826-line-14)">│</text><text class="terminal-912011826-r4" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-912011826-line-14)">-</text><text class="terminal-912011826-r4" x="36.6" y="361.6" textLength="97.6" clip-path="url(#terminal-912011826-line-14)">-verbose</text><text class="terminal-912011826-r6" x="280.6" y="361.6" textLength="24.4" clip-path="url(#terminal-9120 [...]
+</text><text class="terminal-912011826-r5" x="0" y="386" textLength="12.2" clip-path="url(#terminal-912011826-line-15)">│</text><text class="terminal-912011826-r4" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-912011826-line-15)">-</text><text class="terminal-912011826-r4" x="36.6" y="386" textLength="48.8" clip-path="url(#terminal-912011826-line-15)">-dry</text><text class="terminal-912011826-r4" x="85.4" y="386" textLength="48.8" clip-path="url(#terminal-912011826-line-15 [...]
+</text><text class="terminal-912011826-r5" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-912011826-line-16)">│</text><text class="terminal-912011826-r4" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-912011826-line-16)">-</text><text class="terminal-912011826-r4" x="36.6" y="410.4" textLength="85.4" clip-path="url(#terminal-912011826-line-16)">-github</text><text class="terminal-912011826-r4" x="122" y="410.4" textLength="134.2" clip-path="url(#terminal-912011 [...]
+</text><text class="terminal-912011826-r5" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-912011826-line-17)">│</text><text class="terminal-912011826-r4" x="24.4" y="434.8" textLength="12.2" clip-path="url(#terminal-912011826-line-17)">-</text><text class="terminal-912011826-r4" x="36.6" y="434.8" textLength="61" clip-path="url(#terminal-912011826-line-17)">-help</text><text class="terminal-912011826-r6" x="280.6" y="434.8" textLength="24.4" clip-path="url(#terminal-912011826 [...]
+</text><text class="terminal-912011826-r5" x="0" y="459.2" textLength="1464" clip-path="url(#terminal-912011826-line-18)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-912011826-r2" x="1464" y="459.2" textLength="12.2" clip-path="url(#terminal-912011826-line-18)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_release-management.svg b/images/breeze/output_release-management.svg
index 66af753517..8798839223 100644
--- a/images/breeze/output_release-management.svg
+++ b/images/breeze/output_release-management.svg
@@ -35,8 +35,8 @@
     .terminal-3090088729-r1 { fill: #c5c8c6;font-weight: bold }
 .terminal-3090088729-r2 { fill: #c5c8c6 }
 .terminal-3090088729-r3 { fill: #d0b344;font-weight: bold }
-.terminal-3090088729-r4 { fill: #868887 }
-.terminal-3090088729-r5 { fill: #68a0b3;font-weight: bold }
+.terminal-3090088729-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-3090088729-r5 { fill: #868887 }
 .terminal-3090088729-r6 { fill: #98a84b;font-weight: bold }
     </style>
 
@@ -102,21 +102,21 @@
     
     <g class="terminal-3090088729-matrix">
     <text class="terminal-3090088729-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-3090088729-line-0)">
-</text><text class="terminal-3090088729-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-3090088729-line-1)">Usage:&#160;</text><text class="terminal-3090088729-r1" x="97.6" y="44.4" textLength="646.6" clip-path="url(#terminal-3090088729-line-1)">breeze&#160;release-management&#160;[OPTIONS]&#160;COMMAND&#160;[ARGS]...</text><text class="terminal-3090088729-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-3090088729-line-1)">
+</text><text class="terminal-3090088729-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-3090088729-line-1)">Usage:&#160;</text><text class="terminal-3090088729-r1" x="97.6" y="44.4" textLength="329.4" clip-path="url(#terminal-3090088729-line-1)">breeze&#160;release-management&#160;[</text><text class="terminal-3090088729-r4" x="427" y="44.4" textLength="85.4" clip-path="url(#terminal-3090088729-line-1)">OPTIONS</text><text class="terminal-3090088729-r1" x="512.4" y="44.4 [...]
 </text><text class="terminal-3090088729-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-3090088729-line-2)">
 </text><text class="terminal-3090088729-r2" x="12.2" y="93.2" textLength="902.8" clip-path="url(#terminal-3090088729-line-3)">Tools&#160;that&#160;release&#160;managers&#160;can&#160;use&#160;to&#160;prepare&#160;and&#160;manage&#160;Airflow&#160;releases</text><text class="terminal-3090088729-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-3090088729-line-3)">
 </text><text class="terminal-3090088729-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-3090088729-line-4)">
-</text><text class="terminal-3090088729-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-3090088729-line-5)">╭─</text><text class="terminal-3090088729-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-3090088729-line-5)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3090088729-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-309008 [...]
-</text><text class="terminal-3090088729-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-3090088729-line-6)">│</text><text class="terminal-3090088729-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-3090088729-line-6)">-</text><text class="terminal-3090088729-r5" x="36.6" y="166.4" textLength="61" clip-path="url(#terminal-3090088729-line-6)">-help</text><text class="terminal-3090088729-r6" x="122" y="166.4" textLength="24.4" clip-path="url(#terminal-3090088 [...]
-</text><text class="terminal-3090088729-r4" x="0" y="190.8" textLength="1464" clip-path="url(#terminal-3090088729-line-7)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3090088729-r2" x="1464" y="190.8" textLength="12.2" clip-path="url(#terminal-3090088729-line-7)">
-</text><text class="terminal-3090088729-r4" x="0" y="215.2" textLength="24.4" clip-path="url(#terminal-3090088729-line-8)">╭─</text><text class="terminal-3090088729-r4" x="24.4" y="215.2" textLength="1415.2" clip-path="url(#terminal-3090088729-line-8)">&#160;Commands&#160;──────────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3090088729-r4" x="1439.6" y="215.2" textLength="24.4" clip-path="url(#terminal-30900 [...]
-</text><text class="terminal-3090088729-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-3090088729-line-9)">│</text><text class="terminal-3090088729-r5" x="24.4" y="239.6" textLength="402.6" clip-path="url(#terminal-3090088729-line-9)">generate-constraints&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-3090088729-r2" x="451.4" y="239.6" textLength="988.2" clip-path="url(#terminal-3090088729-line-9)">Generates&#160; [...]
-</text><text class="terminal-3090088729-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-3090088729-line-10)">│</text><text class="terminal-3090088729-r5" x="24.4" y="264" textLength="402.6" clip-path="url(#terminal-3090088729-line-10)">prepare-airflow-package&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-3090088729-r2" x="451.4" y="264" textLength="988.2" clip-path="url(#terminal-3090088729-line-10)">Prepare&#160;sdist/whl&#160;packa [...]
-</text><text class="terminal-3090088729-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-3090088729-line-11)">│</text><text class="terminal-3090088729-r5" x="24.4" y="288.4" textLength="402.6" clip-path="url(#terminal-3090088729-line-11)">prepare-provider-documentation&#160;&#160;&#160;</text><text class="terminal-3090088729-r2" x="451.4" y="288.4" textLength="988.2" clip-path="url(#terminal-3090088729-line-11)">Prepare&#160;CHANGELOG,&#160;README&#160;and&#160;COMMITS&#160 [...]
-</text><text class="terminal-3090088729-r4" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-3090088729-line-12)">│</text><text class="terminal-3090088729-r5" x="24.4" y="312.8" textLength="402.6" clip-path="url(#terminal-3090088729-line-12)">prepare-provider-packages&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-3090088729-r2" x="451.4" y="312.8" textLength="988.2" clip-path="url(#terminal-3090088729-line-12)">Prepare&#160;sdist/whl&#160;packages& [...]
-</text><text class="terminal-3090088729-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-3090088729-line-13)">│</text><text class="terminal-3090088729-r5" x="24.4" y="337.2" textLength="402.6" clip-path="url(#terminal-3090088729-line-13)">release-prod-images&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-3090088729-r2" x="451.4" y="337.2" textLength="988.2" clip-path="url(#terminal-3090088729-line-13)">Release [...]
-</text><text class="terminal-3090088729-r4" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-3090088729-line-14)">│</text><text class="terminal-3090088729-r5" x="24.4" y="361.6" textLength="402.6" clip-path="url(#terminal-3090088729-line-14)">verify-provider-packages&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-3090088729-r2" x="451.4" y="361.6" textLength="988.2" clip-path="url(#terminal-3090088729-line-14)">Verifies&#160;if&#160;all&#160;p [...]
-</text><text class="terminal-3090088729-r4" x="0" y="386" textLength="1464" clip-path="url(#terminal-3090088729-line-15)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3090088729-r2" x="1464" y="386" textLength="12.2" clip-path="url(#terminal-3090088729-line-15)">
+</text><text class="terminal-3090088729-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-3090088729-line-5)">╭─</text><text class="terminal-3090088729-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-3090088729-line-5)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3090088729-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-309008 [...]
+</text><text class="terminal-3090088729-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-3090088729-line-6)">│</text><text class="terminal-3090088729-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-3090088729-line-6)">-</text><text class="terminal-3090088729-r4" x="36.6" y="166.4" textLength="61" clip-path="url(#terminal-3090088729-line-6)">-help</text><text class="terminal-3090088729-r6" x="122" y="166.4" textLength="24.4" clip-path="url(#terminal-3090088 [...]
+</text><text class="terminal-3090088729-r5" x="0" y="190.8" textLength="1464" clip-path="url(#terminal-3090088729-line-7)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3090088729-r2" x="1464" y="190.8" textLength="12.2" clip-path="url(#terminal-3090088729-line-7)">
+</text><text class="terminal-3090088729-r5" x="0" y="215.2" textLength="24.4" clip-path="url(#terminal-3090088729-line-8)">╭─</text><text class="terminal-3090088729-r5" x="24.4" y="215.2" textLength="1415.2" clip-path="url(#terminal-3090088729-line-8)">&#160;Commands&#160;──────────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3090088729-r5" x="1439.6" y="215.2" textLength="24.4" clip-path="url(#terminal-30900 [...]
+</text><text class="terminal-3090088729-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-3090088729-line-9)">│</text><text class="terminal-3090088729-r4" x="24.4" y="239.6" textLength="402.6" clip-path="url(#terminal-3090088729-line-9)">generate-constraints&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-3090088729-r2" x="451.4" y="239.6" textLength="988.2" clip-path="url(#terminal-3090088729-line-9)">Generates&#160; [...]
+</text><text class="terminal-3090088729-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-3090088729-line-10)">│</text><text class="terminal-3090088729-r4" x="24.4" y="264" textLength="402.6" clip-path="url(#terminal-3090088729-line-10)">prepare-airflow-package&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-3090088729-r2" x="451.4" y="264" textLength="988.2" clip-path="url(#terminal-3090088729-line-10)">Prepare&#160;sdist/whl&#160;packa [...]
+</text><text class="terminal-3090088729-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-3090088729-line-11)">│</text><text class="terminal-3090088729-r4" x="24.4" y="288.4" textLength="402.6" clip-path="url(#terminal-3090088729-line-11)">prepare-provider-documentation&#160;&#160;&#160;</text><text class="terminal-3090088729-r2" x="451.4" y="288.4" textLength="97.6" clip-path="url(#terminal-3090088729-line-11)">Prepare&#160;</text><text class="terminal-3090088729-r4" x="549 [...]
+</text><text class="terminal-3090088729-r5" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-3090088729-line-12)">│</text><text class="terminal-3090088729-r4" x="24.4" y="312.8" textLength="402.6" clip-path="url(#terminal-3090088729-line-12)">prepare-provider-packages&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-3090088729-r2" x="451.4" y="312.8" textLength="988.2" clip-path="url(#terminal-3090088729-line-12)">Prepare&#160;sdist/whl&#160;packages& [...]
+</text><text class="terminal-3090088729-r5" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-3090088729-line-13)">│</text><text class="terminal-3090088729-r4" x="24.4" y="337.2" textLength="402.6" clip-path="url(#terminal-3090088729-line-13)">release-prod-images&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-3090088729-r2" x="451.4" y="337.2" textLength="988.2" clip-path="url(#terminal-3090088729-line-13)">Release [...]
+</text><text class="terminal-3090088729-r5" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-3090088729-line-14)">│</text><text class="terminal-3090088729-r4" x="24.4" y="361.6" textLength="402.6" clip-path="url(#terminal-3090088729-line-14)">verify-provider-packages&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-3090088729-r2" x="451.4" y="361.6" textLength="988.2" clip-path="url(#terminal-3090088729-line-14)">Verifies&#160;if&#160;all&#160;p [...]
+</text><text class="terminal-3090088729-r5" x="0" y="386" textLength="1464" clip-path="url(#terminal-3090088729-line-15)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3090088729-r2" x="1464" y="386" textLength="12.2" clip-path="url(#terminal-3090088729-line-15)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_release-management_generate-constraints.svg b/images/breeze/output_release-management_generate-constraints.svg
index 5ec7bda74e..9b19194060 100644
--- a/images/breeze/output_release-management_generate-constraints.svg
+++ b/images/breeze/output_release-management_generate-constraints.svg
@@ -19,173 +19,173 @@
         font-weight: 700;
     }
 
-    .terminal-1117746507-matrix {
+    .terminal-4225791533-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-1117746507-title {
+    .terminal-4225791533-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-1117746507-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-1117746507-r2 { fill: #c5c8c6 }
-.terminal-1117746507-r3 { fill: #d0b344;font-weight: bold }
-.terminal-1117746507-r4 { fill: #868887 }
-.terminal-1117746507-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-1117746507-r6 { fill: #98a84b;font-weight: bold }
-.terminal-1117746507-r7 { fill: #8d7b39 }
+    .terminal-4225791533-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-4225791533-r2 { fill: #c5c8c6 }
+.terminal-4225791533-r3 { fill: #d0b344;font-weight: bold }
+.terminal-4225791533-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-4225791533-r5 { fill: #868887 }
+.terminal-4225791533-r6 { fill: #98a84b;font-weight: bold }
+.terminal-4225791533-r7 { fill: #8d7b39 }
     </style>
 
     <defs>
-    <clipPath id="terminal-1117746507-clip-terminal">
+    <clipPath id="terminal-4225791533-clip-terminal">
       <rect x="0" y="0" width="1463.0" height="804.1999999999999" />
     </clipPath>
-    <clipPath id="terminal-1117746507-line-0">
+    <clipPath id="terminal-4225791533-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-1">
+<clipPath id="terminal-4225791533-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-2">
+<clipPath id="terminal-4225791533-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-3">
+<clipPath id="terminal-4225791533-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-4">
+<clipPath id="terminal-4225791533-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-5">
+<clipPath id="terminal-4225791533-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-6">
+<clipPath id="terminal-4225791533-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-7">
+<clipPath id="terminal-4225791533-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-8">
+<clipPath id="terminal-4225791533-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-9">
+<clipPath id="terminal-4225791533-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-10">
+<clipPath id="terminal-4225791533-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-11">
+<clipPath id="terminal-4225791533-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-12">
+<clipPath id="terminal-4225791533-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-13">
+<clipPath id="terminal-4225791533-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-14">
+<clipPath id="terminal-4225791533-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-15">
+<clipPath id="terminal-4225791533-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-16">
+<clipPath id="terminal-4225791533-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-17">
+<clipPath id="terminal-4225791533-line-17">
     <rect x="0" y="416.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-18">
+<clipPath id="terminal-4225791533-line-18">
     <rect x="0" y="440.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-19">
+<clipPath id="terminal-4225791533-line-19">
     <rect x="0" y="465.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-20">
+<clipPath id="terminal-4225791533-line-20">
     <rect x="0" y="489.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-21">
+<clipPath id="terminal-4225791533-line-21">
     <rect x="0" y="513.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-22">
+<clipPath id="terminal-4225791533-line-22">
     <rect x="0" y="538.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-23">
+<clipPath id="terminal-4225791533-line-23">
     <rect x="0" y="562.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-24">
+<clipPath id="terminal-4225791533-line-24">
     <rect x="0" y="587.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-25">
+<clipPath id="terminal-4225791533-line-25">
     <rect x="0" y="611.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-26">
+<clipPath id="terminal-4225791533-line-26">
     <rect x="0" y="635.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-27">
+<clipPath id="terminal-4225791533-line-27">
     <rect x="0" y="660.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-28">
+<clipPath id="terminal-4225791533-line-28">
     <rect x="0" y="684.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-29">
+<clipPath id="terminal-4225791533-line-29">
     <rect x="0" y="709.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-30">
+<clipPath id="terminal-4225791533-line-30">
     <rect x="0" y="733.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1117746507-line-31">
+<clipPath id="terminal-4225791533-line-31">
     <rect x="0" y="757.9" width="1464" height="24.65"/>
             </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="853.2" rx="8"/><text class="terminal-1117746507-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;release-management&#160;generate-constraints</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="853.2" rx="8"/><text class="terminal-4225791533-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;release-management&#160;generate-constraints</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-1117746507-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-4225791533-clip-terminal)">
     
-    <g class="terminal-1117746507-matrix">
-    <text class="terminal-1117746507-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-1117746507-line-0)">
-</text><text class="terminal-1117746507-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-1117746507-line-1)">Usage:&#160;</text><text class="terminal-1117746507-r1" x="97.6" y="44.4" textLength="683.2" clip-path="url(#terminal-1117746507-line-1)">breeze&#160;release-management&#160;generate-constraints&#160;[OPTIONS]</text><text class="terminal-1117746507-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-1117746507-line-1)">
-</text><text class="terminal-1117746507-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-1117746507-line-2)">
-</text><text class="terminal-1117746507-r2" x="12.2" y="93.2" textLength="927.2" clip-path="url(#terminal-1117746507-line-3)">Generates&#160;pinned&#160;constraint&#160;files&#160;with&#160;all&#160;extras&#160;from&#160;setup.py&#160;in&#160;parallel.</text><text class="terminal-1117746507-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-1117746507-line-3)">
-</text><text class="terminal-1117746507-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-1117746507-line-4)">
-</text><text class="terminal-1117746507-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-1117746507-line-5)">╭─</text><text class="terminal-1117746507-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-1117746507-line-5)">&#160;Generate&#160;constraints&#160;flags&#160;────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1117746507-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-1 [...]
-</text><text class="terminal-1117746507-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-1117746507-line-6)">│</text><text class="terminal-1117746507-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-1117746507-line-6)">-</text><text class="terminal-1117746507-r5" x="36.6" y="166.4" textLength="73.2" clip-path="url(#terminal-1117746507-line-6)">-image</text><text class="terminal-1117746507-r5" x="109.8" y="166.4" textLength="48.8" clip-path="url(#terminal-11 [...]
-</text><text class="terminal-1117746507-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-1117746507-line-7)">│</text><text class="terminal-1117746507-r7" x="414.8" y="190.8" textLength="963.8" clip-path="url(#terminal-1117746507-line-7)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
-</text><text class="terminal-1117746507-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-1117746507-line-8)">│</text><text class="terminal-1117746507-r4" x="414.8" y="215.2" textLength="963.8" clip-path="url(#terminal-1117746507-line-8)">[default:&#160;latest]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
-</text><text class="terminal-1117746507-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-1117746507-line-9)">│</text><text class="terminal-1117746507-r5" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-1117746507-line-9)">-</text><text class="terminal-1117746507-r5" x="36.6" y="239.6" textLength="85.4" clip-path="url(#terminal-1117746507-line-9)">-python</text><text class="terminal-1117746507-r6" x="366" y="239.6" textLength="24.4" clip-path="url(#terminal-111 [...]
-</text><text class="terminal-1117746507-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-1117746507-line-10)">│</text><text class="terminal-1117746507-r7" x="414.8" y="264" textLength="732" clip-path="url(#terminal-1117746507-line-10)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
-</text><text class="terminal-1117746507-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-1117746507-line-11)">│</text><text class="terminal-1117746507-r4" x="414.8" y="288.4" textLength="732" clip-path="url(#terminal-1117746507-line-11)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-1117746507-r4" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-1117746507-line-12)">│</text><text class="terminal-1117746507-r5" x="24.4" y="312.8" textLength="12.2" clip-path="url(#terminal-1117746507-line-12)">-</text><text class="terminal-1117746507-r5" x="36.6" y="312.8" textLength="97.6" clip-path="url(#terminal-1117746507-line-12)">-airflow</text><text class="terminal-1117746507-r5" x="134.2" y="312.8" textLength="207.4" clip-path="url(#termi [...]
-</text><text class="terminal-1117746507-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-1117746507-line-13)">│</text><text class="terminal-1117746507-r7" x="414.8" y="337.2" textLength="866.2" clip-path="url(#terminal-1117746507-line-13)">(constraints-source-providers&#160;|&#160;constraints&#160;|&#160;constraints-no-providers)</text><text class="terminal-1117746507-r4" x="1451.8" y="337.2" textLength="12.2" clip-path="url(#terminal-1117746507-line-13)">│</text><text clas [...]
-</text><text class="terminal-1117746507-r4" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-1117746507-line-14)">│</text><text class="terminal-1117746507-r4" x="414.8" y="361.6" textLength="866.2" clip-path="url(#terminal-1117746507-line-14)">[default:&#160;constraints-source-providers]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</ [...]
-</text><text class="terminal-1117746507-r4" x="0" y="386" textLength="12.2" clip-path="url(#terminal-1117746507-line-15)">│</text><text class="terminal-1117746507-r5" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-1117746507-line-15)">-</text><text class="terminal-1117746507-r5" x="36.6" y="386" textLength="73.2" clip-path="url(#terminal-1117746507-line-15)">-debug</text><text class="terminal-1117746507-r2" x="414.8" y="386" textLength="878.4" clip-path="url(#terminal-111774 [...]
-</text><text class="terminal-1117746507-r4" x="0" y="410.4" textLength="1464" clip-path="url(#terminal-1117746507-line-16)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1117746507-r2" x="1464" y="410.4" textLength="12.2" clip-path="url(#terminal-1117746507-line-16)">
-</text><text class="terminal-1117746507-r4" x="0" y="434.8" textLength="24.4" clip-path="url(#terminal-1117746507-line-17)">╭─</text><text class="terminal-1117746507-r4" x="24.4" y="434.8" textLength="1415.2" clip-path="url(#terminal-1117746507-line-17)">&#160;Parallel&#160;running&#160;──────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1117746507-r4" x="1439.6" y="434.8" textLength="24.4" clip-path="url(#termina [...]
-</text><text class="terminal-1117746507-r4" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-1117746507-line-18)">│</text><text class="terminal-1117746507-r5" x="24.4" y="459.2" textLength="12.2" clip-path="url(#terminal-1117746507-line-18)">-</text><text class="terminal-1117746507-r5" x="36.6" y="459.2" textLength="48.8" clip-path="url(#terminal-1117746507-line-18)">-run</text><text class="terminal-1117746507-r5" x="85.4" y="459.2" textLength="146.4" clip-path="url(#terminal-1 [...]
-</text><text class="terminal-1117746507-r4" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-1117746507-line-19)">│</text><text class="terminal-1117746507-r5" x="24.4" y="483.6" textLength="12.2" clip-path="url(#terminal-1117746507-line-19)">-</text><text class="terminal-1117746507-r5" x="36.6" y="483.6" textLength="146.4" clip-path="url(#terminal-1117746507-line-19)">-parallelism</text><text class="terminal-1117746507-r2" x="280.6" y="483.6" textLength="915" clip-path="url(#te [...]
-</text><text class="terminal-1117746507-r4" x="0" y="508" textLength="12.2" clip-path="url(#terminal-1117746507-line-20)">│</text><text class="terminal-1117746507-r4" x="280.6" y="508" textLength="915" clip-path="url(#terminal-1117746507-line-20)">[default:&#160;4;&#160;1&lt;=x&lt;=8]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
-</text><text class="terminal-1117746507-r4" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-1117746507-line-21)">│</text><text class="terminal-1117746507-r5" x="24.4" y="532.4" textLength="12.2" clip-path="url(#terminal-1117746507-line-21)">-</text><text class="terminal-1117746507-r5" x="36.6" y="532.4" textLength="85.4" clip-path="url(#terminal-1117746507-line-21)">-python</text><text class="terminal-1117746507-r5" x="122" y="532.4" textLength="109.8" clip-path="url(#terminal [...]
-</text><text class="terminal-1117746507-r4" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-1117746507-line-22)">│</text><text class="terminal-1117746507-r4" x="280.6" y="556.8" textLength="951.6" clip-path="url(#terminal-1117746507-line-22)">[default:&#160;3.7&#160;3.8&#160;3.9&#160;3.10]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-1117746507-r4" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-1117746507-line-23)">│</text><text class="terminal-1117746507-r5" x="24.4" y="581.2" textLength="12.2" clip-path="url(#terminal-1117746507-line-23)">-</text><text class="terminal-1117746507-r5" x="36.6" y="581.2" textLength="61" clip-path="url(#terminal-1117746507-line-23)">-skip</text><text class="terminal-1117746507-r5" x="97.6" y="581.2" textLength="97.6" clip-path="url(#terminal-111 [...]
-</text><text class="terminal-1117746507-r4" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-1117746507-line-24)">│</text><text class="terminal-1117746507-r5" x="24.4" y="605.6" textLength="12.2" clip-path="url(#terminal-1117746507-line-24)">-</text><text class="terminal-1117746507-r5" x="36.6" y="605.6" textLength="73.2" clip-path="url(#terminal-1117746507-line-24)">-debug</text><text class="terminal-1117746507-r5" x="109.8" y="605.6" textLength="122" clip-path="url(#terminal- [...]
-</text><text class="terminal-1117746507-r4" x="0" y="630" textLength="1464" clip-path="url(#terminal-1117746507-line-25)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1117746507-r2" x="1464" y="630" textLength="12.2" clip-path="url(#terminal-1117746507-line-25)">
-</text><text class="terminal-1117746507-r4" x="0" y="654.4" textLength="24.4" clip-path="url(#terminal-1117746507-line-26)">╭─</text><text class="terminal-1117746507-r4" x="24.4" y="654.4" textLength="1415.2" clip-path="url(#terminal-1117746507-line-26)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1117746507-r4" x="1439.6" y="654.4" textLength="24.4" clip-path="url(#termina [...]
-</text><text class="terminal-1117746507-r4" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-1117746507-line-27)">│</text><text class="terminal-1117746507-r5" x="24.4" y="678.8" textLength="12.2" clip-path="url(#terminal-1117746507-line-27)">-</text><text class="terminal-1117746507-r5" x="36.6" y="678.8" textLength="97.6" clip-path="url(#terminal-1117746507-line-27)">-verbose</text><text class="terminal-1117746507-r6" x="280.6" y="678.8" textLength="24.4" clip-path="url(#termin [...]
-</text><text class="terminal-1117746507-r4" x="0" y="703.2" textLength="12.2" clip-path="url(#terminal-1117746507-line-28)">│</text><text class="terminal-1117746507-r5" x="24.4" y="703.2" textLength="12.2" clip-path="url(#terminal-1117746507-line-28)">-</text><text class="terminal-1117746507-r5" x="36.6" y="703.2" textLength="48.8" clip-path="url(#terminal-1117746507-line-28)">-dry</text><text class="terminal-1117746507-r5" x="85.4" y="703.2" textLength="48.8" clip-path="url(#terminal-11 [...]
-</text><text class="terminal-1117746507-r4" x="0" y="727.6" textLength="12.2" clip-path="url(#terminal-1117746507-line-29)">│</text><text class="terminal-1117746507-r5" x="24.4" y="727.6" textLength="12.2" clip-path="url(#terminal-1117746507-line-29)">-</text><text class="terminal-1117746507-r5" x="36.6" y="727.6" textLength="85.4" clip-path="url(#terminal-1117746507-line-29)">-github</text><text class="terminal-1117746507-r5" x="122" y="727.6" textLength="134.2" clip-path="url(#terminal [...]
-</text><text class="terminal-1117746507-r4" x="0" y="752" textLength="12.2" clip-path="url(#terminal-1117746507-line-30)">│</text><text class="terminal-1117746507-r5" x="24.4" y="752" textLength="12.2" clip-path="url(#terminal-1117746507-line-30)">-</text><text class="terminal-1117746507-r5" x="36.6" y="752" textLength="85.4" clip-path="url(#terminal-1117746507-line-30)">-answer</text><text class="terminal-1117746507-r6" x="280.6" y="752" textLength="24.4" clip-path="url(#terminal-111774 [...]
-</text><text class="terminal-1117746507-r4" x="0" y="776.4" textLength="12.2" clip-path="url(#terminal-1117746507-line-31)">│</text><text class="terminal-1117746507-r5" x="24.4" y="776.4" textLength="12.2" clip-path="url(#terminal-1117746507-line-31)">-</text><text class="terminal-1117746507-r5" x="36.6" y="776.4" textLength="61" clip-path="url(#terminal-1117746507-line-31)">-help</text><text class="terminal-1117746507-r6" x="280.6" y="776.4" textLength="24.4" clip-path="url(#terminal-11 [...]
-</text><text class="terminal-1117746507-r4" x="0" y="800.8" textLength="1464" clip-path="url(#terminal-1117746507-line-32)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1117746507-r2" x="1464" y="800.8" textLength="12.2" clip-path="url(#terminal-1117746507-line-32)">
+    <g class="terminal-4225791533-matrix">
+    <text class="terminal-4225791533-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-4225791533-line-0)">
+</text><text class="terminal-4225791533-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-4225791533-line-1)">Usage:&#160;</text><text class="terminal-4225791533-r1" x="97.6" y="44.4" textLength="585.6" clip-path="url(#terminal-4225791533-line-1)">breeze&#160;release-management&#160;generate-constraints&#160;[</text><text class="terminal-4225791533-r4" x="683.2" y="44.4" textLength="85.4" clip-path="url(#terminal-4225791533-line-1)">OPTIONS</text><text class="terminal-4225 [...]
+</text><text class="terminal-4225791533-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-4225791533-line-2)">
+</text><text class="terminal-4225791533-r2" x="12.2" y="93.2" textLength="927.2" clip-path="url(#terminal-4225791533-line-3)">Generates&#160;pinned&#160;constraint&#160;files&#160;with&#160;all&#160;extras&#160;from&#160;setup.py&#160;in&#160;parallel.</text><text class="terminal-4225791533-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-4225791533-line-3)">
+</text><text class="terminal-4225791533-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-4225791533-line-4)">
+</text><text class="terminal-4225791533-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-4225791533-line-5)">╭─</text><text class="terminal-4225791533-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-4225791533-line-5)">&#160;Generate&#160;constraints&#160;flags&#160;────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-4225791533-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-4 [...]
+</text><text class="terminal-4225791533-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-4225791533-line-6)">│</text><text class="terminal-4225791533-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-4225791533-line-6)">-</text><text class="terminal-4225791533-r4" x="36.6" y="166.4" textLength="73.2" clip-path="url(#terminal-4225791533-line-6)">-image</text><text class="terminal-4225791533-r4" x="109.8" y="166.4" textLength="48.8" clip-path="url(#terminal-42 [...]
+</text><text class="terminal-4225791533-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-4225791533-line-7)">│</text><text class="terminal-4225791533-r7" x="414.8" y="190.8" textLength="963.8" clip-path="url(#terminal-4225791533-line-7)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
+</text><text class="terminal-4225791533-r5" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-4225791533-line-8)">│</text><text class="terminal-4225791533-r5" x="414.8" y="215.2" textLength="963.8" clip-path="url(#terminal-4225791533-line-8)">[default:&#160;latest]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
+</text><text class="terminal-4225791533-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-4225791533-line-9)">│</text><text class="terminal-4225791533-r4" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-4225791533-line-9)">-</text><text class="terminal-4225791533-r4" x="36.6" y="239.6" textLength="85.4" clip-path="url(#terminal-4225791533-line-9)">-python</text><text class="terminal-4225791533-r6" x="366" y="239.6" textLength="24.4" clip-path="url(#terminal-422 [...]
+</text><text class="terminal-4225791533-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-4225791533-line-10)">│</text><text class="terminal-4225791533-r7" x="414.8" y="264" textLength="732" clip-path="url(#terminal-4225791533-line-10)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10&#160;|&#160;3.11)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</t [...]
+</text><text class="terminal-4225791533-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-4225791533-line-11)">│</text><text class="terminal-4225791533-r5" x="414.8" y="288.4" textLength="732" clip-path="url(#terminal-4225791533-line-11)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-4225791533-r5" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-4225791533-line-12)">│</text><text class="terminal-4225791533-r4" x="24.4" y="312.8" textLength="12.2" clip-path="url(#terminal-4225791533-line-12)">-</text><text class="terminal-4225791533-r4" x="36.6" y="312.8" textLength="97.6" clip-path="url(#terminal-4225791533-line-12)">-airflow</text><text class="terminal-4225791533-r4" x="134.2" y="312.8" textLength="207.4" clip-path="url(#termi [...]
+</text><text class="terminal-4225791533-r5" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-4225791533-line-13)">│</text><text class="terminal-4225791533-r7" x="414.8" y="337.2" textLength="866.2" clip-path="url(#terminal-4225791533-line-13)">(constraints-source-providers&#160;|&#160;constraints&#160;|&#160;constraints-no-providers)</text><text class="terminal-4225791533-r5" x="1451.8" y="337.2" textLength="12.2" clip-path="url(#terminal-4225791533-line-13)">│</text><text clas [...]
+</text><text class="terminal-4225791533-r5" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-4225791533-line-14)">│</text><text class="terminal-4225791533-r5" x="414.8" y="361.6" textLength="866.2" clip-path="url(#terminal-4225791533-line-14)">[default:&#160;constraints-source-providers]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</ [...]
+</text><text class="terminal-4225791533-r5" x="0" y="386" textLength="12.2" clip-path="url(#terminal-4225791533-line-15)">│</text><text class="terminal-4225791533-r4" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-4225791533-line-15)">-</text><text class="terminal-4225791533-r4" x="36.6" y="386" textLength="73.2" clip-path="url(#terminal-4225791533-line-15)">-debug</text><text class="terminal-4225791533-r2" x="414.8" y="386" textLength="878.4" clip-path="url(#terminal-422579 [...]
+</text><text class="terminal-4225791533-r5" x="0" y="410.4" textLength="1464" clip-path="url(#terminal-4225791533-line-16)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-4225791533-r2" x="1464" y="410.4" textLength="12.2" clip-path="url(#terminal-4225791533-line-16)">
+</text><text class="terminal-4225791533-r5" x="0" y="434.8" textLength="24.4" clip-path="url(#terminal-4225791533-line-17)">╭─</text><text class="terminal-4225791533-r5" x="24.4" y="434.8" textLength="1415.2" clip-path="url(#terminal-4225791533-line-17)">&#160;Parallel&#160;running&#160;──────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-4225791533-r5" x="1439.6" y="434.8" textLength="24.4" clip-path="url(#termina [...]
+</text><text class="terminal-4225791533-r5" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-4225791533-line-18)">│</text><text class="terminal-4225791533-r4" x="24.4" y="459.2" textLength="12.2" clip-path="url(#terminal-4225791533-line-18)">-</text><text class="terminal-4225791533-r4" x="36.6" y="459.2" textLength="48.8" clip-path="url(#terminal-4225791533-line-18)">-run</text><text class="terminal-4225791533-r4" x="85.4" y="459.2" textLength="146.4" clip-path="url(#terminal-4 [...]
+</text><text class="terminal-4225791533-r5" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-4225791533-line-19)">│</text><text class="terminal-4225791533-r4" x="24.4" y="483.6" textLength="12.2" clip-path="url(#terminal-4225791533-line-19)">-</text><text class="terminal-4225791533-r4" x="36.6" y="483.6" textLength="146.4" clip-path="url(#terminal-4225791533-line-19)">-parallelism</text><text class="terminal-4225791533-r2" x="280.6" y="483.6" textLength="915" clip-path="url(#te [...]
+</text><text class="terminal-4225791533-r5" x="0" y="508" textLength="12.2" clip-path="url(#terminal-4225791533-line-20)">│</text><text class="terminal-4225791533-r5" x="280.6" y="508" textLength="915" clip-path="url(#terminal-4225791533-line-20)">[default:&#160;4;&#160;1&lt;=x&lt;=8]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
+</text><text class="terminal-4225791533-r5" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-4225791533-line-21)">│</text><text class="terminal-4225791533-r4" x="24.4" y="532.4" textLength="12.2" clip-path="url(#terminal-4225791533-line-21)">-</text><text class="terminal-4225791533-r4" x="36.6" y="532.4" textLength="85.4" clip-path="url(#terminal-4225791533-line-21)">-python</text><text class="terminal-4225791533-r4" x="122" y="532.4" textLength="109.8" clip-path="url(#terminal [...]
+</text><text class="terminal-4225791533-r5" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-4225791533-line-22)">│</text><text class="terminal-4225791533-r5" x="280.6" y="556.8" textLength="951.6" clip-path="url(#terminal-4225791533-line-22)">[default:&#160;3.7&#160;3.8&#160;3.9&#160;3.10&#160;3.11]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-4225791533-r5" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-4225791533-line-23)">│</text><text class="terminal-4225791533-r4" x="24.4" y="581.2" textLength="12.2" clip-path="url(#terminal-4225791533-line-23)">-</text><text class="terminal-4225791533-r4" x="36.6" y="581.2" textLength="61" clip-path="url(#terminal-4225791533-line-23)">-skip</text><text class="terminal-4225791533-r4" x="97.6" y="581.2" textLength="97.6" clip-path="url(#terminal-422 [...]
+</text><text class="terminal-4225791533-r5" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-4225791533-line-24)">│</text><text class="terminal-4225791533-r4" x="24.4" y="605.6" textLength="12.2" clip-path="url(#terminal-4225791533-line-24)">-</text><text class="terminal-4225791533-r4" x="36.6" y="605.6" textLength="73.2" clip-path="url(#terminal-4225791533-line-24)">-debug</text><text class="terminal-4225791533-r4" x="109.8" y="605.6" textLength="122" clip-path="url(#terminal- [...]
+</text><text class="terminal-4225791533-r5" x="0" y="630" textLength="1464" clip-path="url(#terminal-4225791533-line-25)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-4225791533-r2" x="1464" y="630" textLength="12.2" clip-path="url(#terminal-4225791533-line-25)">
+</text><text class="terminal-4225791533-r5" x="0" y="654.4" textLength="24.4" clip-path="url(#terminal-4225791533-line-26)">╭─</text><text class="terminal-4225791533-r5" x="24.4" y="654.4" textLength="1415.2" clip-path="url(#terminal-4225791533-line-26)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-4225791533-r5" x="1439.6" y="654.4" textLength="24.4" clip-path="url(#termina [...]
+</text><text class="terminal-4225791533-r5" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-4225791533-line-27)">│</text><text class="terminal-4225791533-r4" x="24.4" y="678.8" textLength="12.2" clip-path="url(#terminal-4225791533-line-27)">-</text><text class="terminal-4225791533-r4" x="36.6" y="678.8" textLength="97.6" clip-path="url(#terminal-4225791533-line-27)">-verbose</text><text class="terminal-4225791533-r6" x="280.6" y="678.8" textLength="24.4" clip-path="url(#termin [...]
+</text><text class="terminal-4225791533-r5" x="0" y="703.2" textLength="12.2" clip-path="url(#terminal-4225791533-line-28)">│</text><text class="terminal-4225791533-r4" x="24.4" y="703.2" textLength="12.2" clip-path="url(#terminal-4225791533-line-28)">-</text><text class="terminal-4225791533-r4" x="36.6" y="703.2" textLength="48.8" clip-path="url(#terminal-4225791533-line-28)">-dry</text><text class="terminal-4225791533-r4" x="85.4" y="703.2" textLength="48.8" clip-path="url(#terminal-42 [...]
+</text><text class="terminal-4225791533-r5" x="0" y="727.6" textLength="12.2" clip-path="url(#terminal-4225791533-line-29)">│</text><text class="terminal-4225791533-r4" x="24.4" y="727.6" textLength="12.2" clip-path="url(#terminal-4225791533-line-29)">-</text><text class="terminal-4225791533-r4" x="36.6" y="727.6" textLength="85.4" clip-path="url(#terminal-4225791533-line-29)">-github</text><text class="terminal-4225791533-r4" x="122" y="727.6" textLength="134.2" clip-path="url(#terminal [...]
+</text><text class="terminal-4225791533-r5" x="0" y="752" textLength="12.2" clip-path="url(#terminal-4225791533-line-30)">│</text><text class="terminal-4225791533-r4" x="24.4" y="752" textLength="12.2" clip-path="url(#terminal-4225791533-line-30)">-</text><text class="terminal-4225791533-r4" x="36.6" y="752" textLength="85.4" clip-path="url(#terminal-4225791533-line-30)">-answer</text><text class="terminal-4225791533-r6" x="280.6" y="752" textLength="24.4" clip-path="url(#terminal-422579 [...]
+</text><text class="terminal-4225791533-r5" x="0" y="776.4" textLength="12.2" clip-path="url(#terminal-4225791533-line-31)">│</text><text class="terminal-4225791533-r4" x="24.4" y="776.4" textLength="12.2" clip-path="url(#terminal-4225791533-line-31)">-</text><text class="terminal-4225791533-r4" x="36.6" y="776.4" textLength="61" clip-path="url(#terminal-4225791533-line-31)">-help</text><text class="terminal-4225791533-r6" x="280.6" y="776.4" textLength="24.4" clip-path="url(#terminal-42 [...]
+</text><text class="terminal-4225791533-r5" x="0" y="800.8" textLength="1464" clip-path="url(#terminal-4225791533-line-32)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-4225791533-r2" x="1464" y="800.8" textLength="12.2" clip-path="url(#terminal-4225791533-line-32)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_release-management_release-prod-images.svg b/images/breeze/output_release-management_release-prod-images.svg
index ef945e9fd0..e29fed1f7c 100644
--- a/images/breeze/output_release-management_release-prod-images.svg
+++ b/images/breeze/output_release-management_release-prod-images.svg
@@ -19,139 +19,139 @@
         font-weight: 700;
     }
 
-    .terminal-2418532981-matrix {
+    .terminal-560063252-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-2418532981-title {
+    .terminal-560063252-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-2418532981-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-2418532981-r2 { fill: #c5c8c6 }
-.terminal-2418532981-r3 { fill: #d0b344;font-weight: bold }
-.terminal-2418532981-r4 { fill: #868887 }
-.terminal-2418532981-r5 { fill: #cc555a }
-.terminal-2418532981-r6 { fill: #68a0b3;font-weight: bold }
-.terminal-2418532981-r7 { fill: #8d7b39 }
-.terminal-2418532981-r8 { fill: #8a4346 }
-.terminal-2418532981-r9 { fill: #98a84b;font-weight: bold }
+    .terminal-560063252-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-560063252-r2 { fill: #c5c8c6 }
+.terminal-560063252-r3 { fill: #d0b344;font-weight: bold }
+.terminal-560063252-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-560063252-r5 { fill: #868887 }
+.terminal-560063252-r6 { fill: #cc555a }
+.terminal-560063252-r7 { fill: #8d7b39 }
+.terminal-560063252-r8 { fill: #8a4346 }
+.terminal-560063252-r9 { fill: #98a84b;font-weight: bold }
     </style>
 
     <defs>
-    <clipPath id="terminal-2418532981-clip-terminal">
+    <clipPath id="terminal-560063252-clip-terminal">
       <rect x="0" y="0" width="1463.0" height="584.5999999999999" />
     </clipPath>
-    <clipPath id="terminal-2418532981-line-0">
+    <clipPath id="terminal-560063252-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2418532981-line-1">
+<clipPath id="terminal-560063252-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2418532981-line-2">
+<clipPath id="terminal-560063252-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2418532981-line-3">
+<clipPath id="terminal-560063252-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2418532981-line-4">
+<clipPath id="terminal-560063252-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2418532981-line-5">
+<clipPath id="terminal-560063252-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2418532981-line-6">
+<clipPath id="terminal-560063252-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2418532981-line-7">
+<clipPath id="terminal-560063252-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2418532981-line-8">
+<clipPath id="terminal-560063252-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2418532981-line-9">
+<clipPath id="terminal-560063252-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2418532981-line-10">
+<clipPath id="terminal-560063252-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2418532981-line-11">
+<clipPath id="terminal-560063252-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2418532981-line-12">
+<clipPath id="terminal-560063252-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2418532981-line-13">
+<clipPath id="terminal-560063252-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2418532981-line-14">
+<clipPath id="terminal-560063252-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2418532981-line-15">
+<clipPath id="terminal-560063252-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2418532981-line-16">
+<clipPath id="terminal-560063252-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2418532981-line-17">
+<clipPath id="terminal-560063252-line-17">
     <rect x="0" y="416.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2418532981-line-18">
+<clipPath id="terminal-560063252-line-18">
     <rect x="0" y="440.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2418532981-line-19">
+<clipPath id="terminal-560063252-line-19">
     <rect x="0" y="465.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2418532981-line-20">
+<clipPath id="terminal-560063252-line-20">
     <rect x="0" y="489.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2418532981-line-21">
+<clipPath id="terminal-560063252-line-21">
     <rect x="0" y="513.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2418532981-line-22">
+<clipPath id="terminal-560063252-line-22">
     <rect x="0" y="538.3" width="1464" height="24.65"/>
             </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="633.6" rx="8"/><text class="terminal-2418532981-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;release-management&#160;release-prod-images</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="633.6" rx="8"/><text class="terminal-560063252-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;release-management&#160;release-prod-images</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-2418532981-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-560063252-clip-terminal)">
     
-    <g class="terminal-2418532981-matrix">
-    <text class="terminal-2418532981-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-2418532981-line-0)">
-</text><text class="terminal-2418532981-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-2418532981-line-1)">Usage:&#160;</text><text class="terminal-2418532981-r1" x="97.6" y="44.4" textLength="671" clip-path="url(#terminal-2418532981-line-1)">breeze&#160;release-management&#160;release-prod-images&#160;[OPTIONS]</text><text class="terminal-2418532981-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-2418532981-line-1)">
-</text><text class="terminal-2418532981-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-2418532981-line-2)">
-</text><text class="terminal-2418532981-r2" x="12.2" y="93.2" textLength="841.8" clip-path="url(#terminal-2418532981-line-3)">Release&#160;production&#160;images&#160;to&#160;DockerHub&#160;(needs&#160;DockerHub&#160;permissions).</text><text class="terminal-2418532981-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-2418532981-line-3)">
-</text><text class="terminal-2418532981-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-2418532981-line-4)">
-</text><text class="terminal-2418532981-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-2418532981-line-5)">╭─</text><text class="terminal-2418532981-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-2418532981-line-5)">&#160;Release&#160;PROD&#160;IMAGE&#160;flags&#160;──────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2418532981-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#termi [...]
-</text><text class="terminal-2418532981-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-2418532981-line-6)">│</text><text class="terminal-2418532981-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-2418532981-line-6)">*</text><text class="terminal-2418532981-r6" x="61" y="166.4" textLength="12.2" clip-path="url(#terminal-2418532981-line-6)">-</text><text class="terminal-2418532981-r6" x="73.2" y="166.4" textLength="97.6" clip-path="url(#terminal-2418532981 [...]
-</text><text class="terminal-2418532981-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-2418532981-line-7)">│</text><text class="terminal-2418532981-r6" x="61" y="190.8" textLength="12.2" clip-path="url(#terminal-2418532981-line-7)">-</text><text class="terminal-2418532981-r6" x="73.2" y="190.8" textLength="122" clip-path="url(#terminal-2418532981-line-7)">-dockerhub</text><text class="terminal-2418532981-r6" x="195.2" y="190.8" textLength="61" clip-path="url(#terminal-241 [...]
-</text><text class="terminal-2418532981-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-2418532981-line-8)">│</text><text class="terminal-2418532981-r6" x="61" y="215.2" textLength="12.2" clip-path="url(#terminal-2418532981-line-8)">-</text><text class="terminal-2418532981-r6" x="73.2" y="215.2" textLength="61" clip-path="url(#terminal-2418532981-line-8)">-slim</text><text class="terminal-2418532981-r6" x="134.2" y="215.2" textLength="85.4" clip-path="url(#terminal-2418532 [...]
-</text><text class="terminal-2418532981-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-2418532981-line-9)">│</text><text class="terminal-2418532981-r6" x="61" y="239.6" textLength="12.2" clip-path="url(#terminal-2418532981-line-9)">-</text><text class="terminal-2418532981-r6" x="73.2" y="239.6" textLength="73.2" clip-path="url(#terminal-2418532981-line-9)">-limit</text><text class="terminal-2418532981-r6" x="146.4" y="239.6" textLength="85.4" clip-path="url(#terminal-2418 [...]
-</text><text class="terminal-2418532981-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-2418532981-line-10)">│</text><text class="terminal-2418532981-r2" x="317.2" y="264" textLength="1122.4" clip-path="url(#terminal-2418532981-line-10)">available&#160;python&#160;versions)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-2418532981-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-2418532981-line-11)">│</text><text class="terminal-2418532981-r7" x="317.2" y="288.4" textLength="1122.4" clip-path="url(#terminal-2418532981-line-11)">(3.7&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
-</text><text class="terminal-2418532981-r4" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-2418532981-line-12)">│</text><text class="terminal-2418532981-r6" x="61" y="312.8" textLength="12.2" clip-path="url(#terminal-2418532981-line-12)">-</text><text class="terminal-2418532981-r6" x="73.2" y="312.8" textLength="73.2" clip-path="url(#terminal-2418532981-line-12)">-limit</text><text class="terminal-2418532981-r6" x="146.4" y="312.8" textLength="109.8" clip-path="url(#terminal- [...]
-</text><text class="terminal-2418532981-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-2418532981-line-13)">│</text><text class="terminal-2418532981-r7" x="317.2" y="337.2" textLength="1122.4" clip-path="url(#terminal-2418532981-line-13)">(linux/amd64&#160;|&#160;linux/arm64&#160;|&#160;linux/amd64,linux/arm64)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
-</text><text class="terminal-2418532981-r4" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-2418532981-line-14)">│</text><text class="terminal-2418532981-r4" x="317.2" y="361.6" textLength="1122.4" clip-path="url(#terminal-2418532981-line-14)">[default:&#160;linux/amd64,linux/arm64]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
-</text><text class="terminal-2418532981-r4" x="0" y="386" textLength="12.2" clip-path="url(#terminal-2418532981-line-15)">│</text><text class="terminal-2418532981-r6" x="61" y="386" textLength="12.2" clip-path="url(#terminal-2418532981-line-15)">-</text><text class="terminal-2418532981-r6" x="73.2" y="386" textLength="61" clip-path="url(#terminal-2418532981-line-15)">-skip</text><text class="terminal-2418532981-r6" x="134.2" y="386" textLength="85.4" clip-path="url(#terminal-2418532981-l [...]
-</text><text class="terminal-2418532981-r4" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-2418532981-line-16)">│</text><text class="terminal-2418532981-r2" x="317.2" y="410.4" textLength="1122.4" clip-path="url(#terminal-2418532981-line-16)">should&#160;only&#160;be&#160;used&#160;if&#160;you&#160;release&#160;image&#160;for&#160;previous&#160;branches.&#160;Automatically&#160;set&#160;when&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-2418532981-r4" x="145 [...]
-</text><text class="terminal-2418532981-r4" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-2418532981-line-17)">│</text><text class="terminal-2418532981-r2" x="317.2" y="434.8" textLength="1122.4" clip-path="url(#terminal-2418532981-line-17)">rc/alpha/beta&#160;images&#160;are&#160;built.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-2418532981-r4" x="0" y="459.2" textLength="1464" clip-path="url(#terminal-2418532981-line-18)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2418532981-r2" x="1464" y="459.2" textLength="12.2" clip-path="url(#terminal-2418532981-line-18)">
-</text><text class="terminal-2418532981-r4" x="0" y="483.6" textLength="24.4" clip-path="url(#terminal-2418532981-line-19)">╭─</text><text class="terminal-2418532981-r4" x="24.4" y="483.6" textLength="1415.2" clip-path="url(#terminal-2418532981-line-19)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2418532981-r4" x="1439.6" y="483.6" textLength="24.4" clip-path="url(#termina [...]
-</text><text class="terminal-2418532981-r4" x="0" y="508" textLength="12.2" clip-path="url(#terminal-2418532981-line-20)">│</text><text class="terminal-2418532981-r6" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-2418532981-line-20)">-</text><text class="terminal-2418532981-r6" x="36.6" y="508" textLength="97.6" clip-path="url(#terminal-2418532981-line-20)">-verbose</text><text class="terminal-2418532981-r9" x="158.6" y="508" textLength="24.4" clip-path="url(#terminal-24185 [...]
-</text><text class="terminal-2418532981-r4" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-2418532981-line-21)">│</text><text class="terminal-2418532981-r6" x="24.4" y="532.4" textLength="12.2" clip-path="url(#terminal-2418532981-line-21)">-</text><text class="terminal-2418532981-r6" x="36.6" y="532.4" textLength="48.8" clip-path="url(#terminal-2418532981-line-21)">-dry</text><text class="terminal-2418532981-r6" x="85.4" y="532.4" textLength="48.8" clip-path="url(#terminal-24 [...]
-</text><text class="terminal-2418532981-r4" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-2418532981-line-22)">│</text><text class="terminal-2418532981-r6" x="24.4" y="556.8" textLength="12.2" clip-path="url(#terminal-2418532981-line-22)">-</text><text class="terminal-2418532981-r6" x="36.6" y="556.8" textLength="61" clip-path="url(#terminal-2418532981-line-22)">-help</text><text class="terminal-2418532981-r9" x="158.6" y="556.8" textLength="24.4" clip-path="url(#terminal-24 [...]
-</text><text class="terminal-2418532981-r4" x="0" y="581.2" textLength="1464" clip-path="url(#terminal-2418532981-line-23)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2418532981-r2" x="1464" y="581.2" textLength="12.2" clip-path="url(#terminal-2418532981-line-23)">
+    <g class="terminal-560063252-matrix">
+    <text class="terminal-560063252-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-560063252-line-0)">
+</text><text class="terminal-560063252-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-560063252-line-1)">Usage:&#160;</text><text class="terminal-560063252-r1" x="97.6" y="44.4" textLength="573.4" clip-path="url(#terminal-560063252-line-1)">breeze&#160;release-management&#160;release-prod-images&#160;[</text><text class="terminal-560063252-r4" x="671" y="44.4" textLength="85.4" clip-path="url(#terminal-560063252-line-1)">OPTIONS</text><text class="terminal-560063252-r1" [...]
+</text><text class="terminal-560063252-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-560063252-line-2)">
+</text><text class="terminal-560063252-r2" x="12.2" y="93.2" textLength="841.8" clip-path="url(#terminal-560063252-line-3)">Release&#160;production&#160;images&#160;to&#160;DockerHub&#160;(needs&#160;DockerHub&#160;permissions).</text><text class="terminal-560063252-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-560063252-line-3)">
+</text><text class="terminal-560063252-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-560063252-line-4)">
+</text><text class="terminal-560063252-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-560063252-line-5)">╭─</text><text class="terminal-560063252-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-560063252-line-5)">&#160;Release&#160;PROD&#160;IMAGE&#160;flags&#160;──────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-560063252-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-5 [...]
+</text><text class="terminal-560063252-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-560063252-line-6)">│</text><text class="terminal-560063252-r6" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-560063252-line-6)">*</text><text class="terminal-560063252-r4" x="61" y="166.4" textLength="12.2" clip-path="url(#terminal-560063252-line-6)">-</text><text class="terminal-560063252-r4" x="73.2" y="166.4" textLength="97.6" clip-path="url(#terminal-560063252-line-6) [...]
+</text><text class="terminal-560063252-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-560063252-line-7)">│</text><text class="terminal-560063252-r4" x="61" y="190.8" textLength="12.2" clip-path="url(#terminal-560063252-line-7)">-</text><text class="terminal-560063252-r4" x="73.2" y="190.8" textLength="122" clip-path="url(#terminal-560063252-line-7)">-dockerhub</text><text class="terminal-560063252-r4" x="195.2" y="190.8" textLength="61" clip-path="url(#terminal-560063252- [...]
+</text><text class="terminal-560063252-r5" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-560063252-line-8)">│</text><text class="terminal-560063252-r4" x="61" y="215.2" textLength="12.2" clip-path="url(#terminal-560063252-line-8)">-</text><text class="terminal-560063252-r4" x="73.2" y="215.2" textLength="61" clip-path="url(#terminal-560063252-line-8)">-slim</text><text class="terminal-560063252-r4" x="134.2" y="215.2" textLength="85.4" clip-path="url(#terminal-560063252-line [...]
+</text><text class="terminal-560063252-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-560063252-line-9)">│</text><text class="terminal-560063252-r4" x="61" y="239.6" textLength="12.2" clip-path="url(#terminal-560063252-line-9)">-</text><text class="terminal-560063252-r4" x="73.2" y="239.6" textLength="73.2" clip-path="url(#terminal-560063252-line-9)">-limit</text><text class="terminal-560063252-r4" x="146.4" y="239.6" textLength="85.4" clip-path="url(#terminal-560063252-l [...]
+</text><text class="terminal-560063252-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-560063252-line-10)">│</text><text class="terminal-560063252-r2" x="317.2" y="264" textLength="1122.4" clip-path="url(#terminal-560063252-line-10)">available&#160;python&#160;versions)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-560063252-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-560063252-line-11)">│</text><text class="terminal-560063252-r7" x="317.2" y="288.4" textLength="1122.4" clip-path="url(#terminal-560063252-line-11)">(3.7&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10&#160;|&#160;3.11)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
+</text><text class="terminal-560063252-r5" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-560063252-line-12)">│</text><text class="terminal-560063252-r4" x="61" y="312.8" textLength="12.2" clip-path="url(#terminal-560063252-line-12)">-</text><text class="terminal-560063252-r4" x="73.2" y="312.8" textLength="73.2" clip-path="url(#terminal-560063252-line-12)">-limit</text><text class="terminal-560063252-r4" x="146.4" y="312.8" textLength="109.8" clip-path="url(#terminal-5600632 [...]
+</text><text class="terminal-560063252-r5" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-560063252-line-13)">│</text><text class="terminal-560063252-r7" x="317.2" y="337.2" textLength="1122.4" clip-path="url(#terminal-560063252-line-13)">(linux/amd64&#160;|&#160;linux/arm64&#160;|&#160;linux/amd64,linux/arm64)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
+</text><text class="terminal-560063252-r5" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-560063252-line-14)">│</text><text class="terminal-560063252-r5" x="317.2" y="361.6" textLength="1122.4" clip-path="url(#terminal-560063252-line-14)">[default:&#160;linux/amd64,linux/arm64]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
+</text><text class="terminal-560063252-r5" x="0" y="386" textLength="12.2" clip-path="url(#terminal-560063252-line-15)">│</text><text class="terminal-560063252-r4" x="61" y="386" textLength="12.2" clip-path="url(#terminal-560063252-line-15)">-</text><text class="terminal-560063252-r4" x="73.2" y="386" textLength="61" clip-path="url(#terminal-560063252-line-15)">-skip</text><text class="terminal-560063252-r4" x="134.2" y="386" textLength="85.4" clip-path="url(#terminal-560063252-line-15)" [...]
+</text><text class="terminal-560063252-r5" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-560063252-line-16)">│</text><text class="terminal-560063252-r2" x="317.2" y="410.4" textLength="1122.4" clip-path="url(#terminal-560063252-line-16)">should&#160;only&#160;be&#160;used&#160;if&#160;you&#160;release&#160;image&#160;for&#160;previous&#160;branches.&#160;Automatically&#160;set&#160;when&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-560063252-r5" x="1451.8"  [...]
+</text><text class="terminal-560063252-r5" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-560063252-line-17)">│</text><text class="terminal-560063252-r2" x="317.2" y="434.8" textLength="1122.4" clip-path="url(#terminal-560063252-line-17)">rc/alpha/beta&#160;images&#160;are&#160;built.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
+</text><text class="terminal-560063252-r5" x="0" y="459.2" textLength="1464" clip-path="url(#terminal-560063252-line-18)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-560063252-r2" x="1464" y="459.2" textLength="12.2" clip-path="url(#terminal-560063252-line-18)">
+</text><text class="terminal-560063252-r5" x="0" y="483.6" textLength="24.4" clip-path="url(#terminal-560063252-line-19)">╭─</text><text class="terminal-560063252-r5" x="24.4" y="483.6" textLength="1415.2" clip-path="url(#terminal-560063252-line-19)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-560063252-r5" x="1439.6" y="483.6" textLength="24.4" clip-path="url(#terminal-560 [...]
+</text><text class="terminal-560063252-r5" x="0" y="508" textLength="12.2" clip-path="url(#terminal-560063252-line-20)">│</text><text class="terminal-560063252-r4" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-560063252-line-20)">-</text><text class="terminal-560063252-r4" x="36.6" y="508" textLength="97.6" clip-path="url(#terminal-560063252-line-20)">-verbose</text><text class="terminal-560063252-r9" x="158.6" y="508" textLength="24.4" clip-path="url(#terminal-560063252-li [...]
+</text><text class="terminal-560063252-r5" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-560063252-line-21)">│</text><text class="terminal-560063252-r4" x="24.4" y="532.4" textLength="12.2" clip-path="url(#terminal-560063252-line-21)">-</text><text class="terminal-560063252-r4" x="36.6" y="532.4" textLength="48.8" clip-path="url(#terminal-560063252-line-21)">-dry</text><text class="terminal-560063252-r4" x="85.4" y="532.4" textLength="48.8" clip-path="url(#terminal-560063252 [...]
+</text><text class="terminal-560063252-r5" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-560063252-line-22)">│</text><text class="terminal-560063252-r4" x="24.4" y="556.8" textLength="12.2" clip-path="url(#terminal-560063252-line-22)">-</text><text class="terminal-560063252-r4" x="36.6" y="556.8" textLength="61" clip-path="url(#terminal-560063252-line-22)">-help</text><text class="terminal-560063252-r9" x="158.6" y="556.8" textLength="24.4" clip-path="url(#terminal-560063252 [...]
+</text><text class="terminal-560063252-r5" x="0" y="581.2" textLength="1464" clip-path="url(#terminal-560063252-line-23)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-560063252-r2" x="1464" y="581.2" textLength="12.2" clip-path="url(#terminal-560063252-line-23)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_setup.svg b/images/breeze/output_setup.svg
index 40050418b0..4ea9da3ed8 100644
--- a/images/breeze/output_setup.svg
+++ b/images/breeze/output_setup.svg
@@ -35,8 +35,8 @@
     .terminal-563718598-r1 { fill: #c5c8c6;font-weight: bold }
 .terminal-563718598-r2 { fill: #c5c8c6 }
 .terminal-563718598-r3 { fill: #d0b344;font-weight: bold }
-.terminal-563718598-r4 { fill: #868887 }
-.terminal-563718598-r5 { fill: #68a0b3;font-weight: bold }
+.terminal-563718598-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-563718598-r5 { fill: #868887 }
 .terminal-563718598-r6 { fill: #98a84b;font-weight: bold }
     </style>
 
@@ -99,20 +99,20 @@
     
     <g class="terminal-563718598-matrix">
     <text class="terminal-563718598-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-563718598-line-0)">
-</text><text class="terminal-563718598-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-563718598-line-1)">Usage:&#160;</text><text class="terminal-563718598-r1" x="97.6" y="44.4" textLength="488" clip-path="url(#terminal-563718598-line-1)">breeze&#160;setup&#160;[OPTIONS]&#160;COMMAND&#160;[ARGS]...</text><text class="terminal-563718598-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-563718598-line-1)">
+</text><text class="terminal-563718598-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-563718598-line-1)">Usage:&#160;</text><text class="terminal-563718598-r1" x="97.6" y="44.4" textLength="170.8" clip-path="url(#terminal-563718598-line-1)">breeze&#160;setup&#160;[</text><text class="terminal-563718598-r4" x="268.4" y="44.4" textLength="85.4" clip-path="url(#terminal-563718598-line-1)">OPTIONS</text><text class="terminal-563718598-r1" x="353.8" y="44.4" textLength="24.4 [...]
 </text><text class="terminal-563718598-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-563718598-line-2)">
 </text><text class="terminal-563718598-r2" x="12.2" y="93.2" textLength="597.8" clip-path="url(#terminal-563718598-line-3)">Tools&#160;that&#160;developers&#160;can&#160;use&#160;to&#160;configure&#160;Breeze</text><text class="terminal-563718598-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-563718598-line-3)">
 </text><text class="terminal-563718598-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-563718598-line-4)">
-</text><text class="terminal-563718598-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-563718598-line-5)">╭─</text><text class="terminal-563718598-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-563718598-line-5)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-563718598-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-563718598-l [...]
-</text><text class="terminal-563718598-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-563718598-line-6)">│</text><text class="terminal-563718598-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-563718598-line-6)">-</text><text class="terminal-563718598-r5" x="36.6" y="166.4" textLength="61" clip-path="url(#terminal-563718598-line-6)">-help</text><text class="terminal-563718598-r6" x="122" y="166.4" textLength="24.4" clip-path="url(#terminal-563718598-line [...]
-</text><text class="terminal-563718598-r4" x="0" y="190.8" textLength="1464" clip-path="url(#terminal-563718598-line-7)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-563718598-r2" x="1464" y="190.8" textLength="12.2" clip-path="url(#terminal-563718598-line-7)">
-</text><text class="terminal-563718598-r4" x="0" y="215.2" textLength="24.4" clip-path="url(#terminal-563718598-line-8)">╭─</text><text class="terminal-563718598-r4" x="24.4" y="215.2" textLength="1415.2" clip-path="url(#terminal-563718598-line-8)">&#160;Commands&#160;──────────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-563718598-r4" x="1439.6" y="215.2" textLength="24.4" clip-path="url(#terminal-563718598- [...]
-</text><text class="terminal-563718598-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-563718598-line-9)">│</text><text class="terminal-563718598-r5" x="24.4" y="239.6" textLength="390.4" clip-path="url(#terminal-563718598-line-9)">autocomplete&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-563718598-r2" x="439.2" y="239.6" textLength="1000.4" clip-path="url(#terminal-56371 [...]
-</text><text class="terminal-563718598-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-563718598-line-10)">│</text><text class="terminal-563718598-r5" x="24.4" y="264" textLength="390.4" clip-path="url(#terminal-563718598-line-10)">config&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-563718598-r2" x="439.2" y="264" textLength="1000.4" clip [...]
-</text><text class="terminal-563718598-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-563718598-line-11)">│</text><text class="terminal-563718598-r5" x="24.4" y="288.4" textLength="390.4" clip-path="url(#terminal-563718598-line-11)">regenerate-command-images&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-563718598-r2" x="439.2" y="288.4" textLength="1000.4" clip-path="url(#terminal-563718598-line-11)">Regenerate&#160;breeze&#160;command&#160;images. [...]
-</text><text class="terminal-563718598-r4" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-563718598-line-12)">│</text><text class="terminal-563718598-r5" x="24.4" y="312.8" textLength="390.4" clip-path="url(#terminal-563718598-line-12)">self-upgrade&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-563718598-r2" x="439.2" y="312.8" textLength="1000.4" clip-path="url(#terminal-563 [...]
-</text><text class="terminal-563718598-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-563718598-line-13)">│</text><text class="terminal-563718598-r5" x="24.4" y="337.2" textLength="390.4" clip-path="url(#terminal-563718598-line-13)">version&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-563718598-r2" x="439.2" y="337.2" textLength="1000.4" cli [...]
-</text><text class="terminal-563718598-r4" x="0" y="361.6" textLength="1464" clip-path="url(#terminal-563718598-line-14)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-563718598-r2" x="1464" y="361.6" textLength="12.2" clip-path="url(#terminal-563718598-line-14)">
+</text><text class="terminal-563718598-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-563718598-line-5)">╭─</text><text class="terminal-563718598-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-563718598-line-5)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-563718598-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-563718598-l [...]
+</text><text class="terminal-563718598-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-563718598-line-6)">│</text><text class="terminal-563718598-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-563718598-line-6)">-</text><text class="terminal-563718598-r4" x="36.6" y="166.4" textLength="61" clip-path="url(#terminal-563718598-line-6)">-help</text><text class="terminal-563718598-r6" x="122" y="166.4" textLength="24.4" clip-path="url(#terminal-563718598-line [...]
+</text><text class="terminal-563718598-r5" x="0" y="190.8" textLength="1464" clip-path="url(#terminal-563718598-line-7)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-563718598-r2" x="1464" y="190.8" textLength="12.2" clip-path="url(#terminal-563718598-line-7)">
+</text><text class="terminal-563718598-r5" x="0" y="215.2" textLength="24.4" clip-path="url(#terminal-563718598-line-8)">╭─</text><text class="terminal-563718598-r5" x="24.4" y="215.2" textLength="1415.2" clip-path="url(#terminal-563718598-line-8)">&#160;Commands&#160;──────────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-563718598-r5" x="1439.6" y="215.2" textLength="24.4" clip-path="url(#terminal-563718598- [...]
+</text><text class="terminal-563718598-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-563718598-line-9)">│</text><text class="terminal-563718598-r4" x="24.4" y="239.6" textLength="390.4" clip-path="url(#terminal-563718598-line-9)">autocomplete&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-563718598-r2" x="439.2" y="239.6" textLength="1000.4" clip-path="url(#terminal-56371 [...]
+</text><text class="terminal-563718598-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-563718598-line-10)">│</text><text class="terminal-563718598-r4" x="24.4" y="264" textLength="390.4" clip-path="url(#terminal-563718598-line-10)">config&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-563718598-r2" x="439.2" y="264" textLength="683.2" clip- [...]
+</text><text class="terminal-563718598-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-563718598-line-11)">│</text><text class="terminal-563718598-r4" x="24.4" y="288.4" textLength="390.4" clip-path="url(#terminal-563718598-line-11)">regenerate-command-images&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-563718598-r2" x="439.2" y="288.4" textLength="1000.4" clip-path="url(#terminal-563718598-line-11)">Regenerate&#160;breeze&#160;command&#160;images. [...]
+</text><text class="terminal-563718598-r5" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-563718598-line-12)">│</text><text class="terminal-563718598-r4" x="24.4" y="312.8" textLength="390.4" clip-path="url(#terminal-563718598-line-12)">self-upgrade&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-563718598-r2" x="439.2" y="312.8" textLength="1000.4" clip-path="url(#terminal-563 [...]
+</text><text class="terminal-563718598-r5" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-563718598-line-13)">│</text><text class="terminal-563718598-r4" x="24.4" y="337.2" textLength="390.4" clip-path="url(#terminal-563718598-line-13)">version&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-563718598-r2" x="439.2" y="337.2" textLength="1000.4" cli [...]
+</text><text class="terminal-563718598-r5" x="0" y="361.6" textLength="1464" clip-path="url(#terminal-563718598-line-14)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-563718598-r2" x="1464" y="361.6" textLength="12.2" clip-path="url(#terminal-563718598-line-14)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_setup_config.svg b/images/breeze/output_setup_config.svg
index 4d6c2dbba5..89bc2fd5ee 100644
--- a/images/breeze/output_setup_config.svg
+++ b/images/breeze/output_setup_config.svg
@@ -19,125 +19,125 @@
         font-weight: 700;
     }
 
-    .terminal-4106968381-matrix {
+    .terminal-3123797468-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-4106968381-title {
+    .terminal-3123797468-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-4106968381-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-4106968381-r2 { fill: #c5c8c6 }
-.terminal-4106968381-r3 { fill: #d0b344;font-weight: bold }
-.terminal-4106968381-r4 { fill: #868887 }
-.terminal-4106968381-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-4106968381-r6 { fill: #98a84b;font-weight: bold }
-.terminal-4106968381-r7 { fill: #8d7b39 }
+    .terminal-3123797468-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-3123797468-r2 { fill: #c5c8c6 }
+.terminal-3123797468-r3 { fill: #d0b344;font-weight: bold }
+.terminal-3123797468-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-3123797468-r5 { fill: #868887 }
+.terminal-3123797468-r6 { fill: #98a84b;font-weight: bold }
+.terminal-3123797468-r7 { fill: #8d7b39 }
     </style>
 
     <defs>
-    <clipPath id="terminal-4106968381-clip-terminal">
+    <clipPath id="terminal-3123797468-clip-terminal">
       <rect x="0" y="0" width="1463.0" height="511.4" />
     </clipPath>
-    <clipPath id="terminal-4106968381-line-0">
+    <clipPath id="terminal-3123797468-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4106968381-line-1">
+<clipPath id="terminal-3123797468-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4106968381-line-2">
+<clipPath id="terminal-3123797468-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4106968381-line-3">
+<clipPath id="terminal-3123797468-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4106968381-line-4">
+<clipPath id="terminal-3123797468-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4106968381-line-5">
+<clipPath id="terminal-3123797468-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4106968381-line-6">
+<clipPath id="terminal-3123797468-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4106968381-line-7">
+<clipPath id="terminal-3123797468-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4106968381-line-8">
+<clipPath id="terminal-3123797468-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4106968381-line-9">
+<clipPath id="terminal-3123797468-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4106968381-line-10">
+<clipPath id="terminal-3123797468-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4106968381-line-11">
+<clipPath id="terminal-3123797468-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4106968381-line-12">
+<clipPath id="terminal-3123797468-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4106968381-line-13">
+<clipPath id="terminal-3123797468-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4106968381-line-14">
+<clipPath id="terminal-3123797468-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4106968381-line-15">
+<clipPath id="terminal-3123797468-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4106968381-line-16">
+<clipPath id="terminal-3123797468-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4106968381-line-17">
+<clipPath id="terminal-3123797468-line-17">
     <rect x="0" y="416.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4106968381-line-18">
+<clipPath id="terminal-3123797468-line-18">
     <rect x="0" y="440.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-4106968381-line-19">
+<clipPath id="terminal-3123797468-line-19">
     <rect x="0" y="465.1" width="1464" height="24.65"/>
             </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="560.4" rx="8"/><text class="terminal-4106968381-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;setup&#160;config</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="560.4" rx="8"/><text class="terminal-3123797468-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;setup&#160;config</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-4106968381-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-3123797468-clip-terminal)">
     
-    <g class="terminal-4106968381-matrix">
-    <text class="terminal-4106968381-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-4106968381-line-0)">
-</text><text class="terminal-4106968381-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-4106968381-line-1)">Usage:&#160;</text><text class="terminal-4106968381-r1" x="97.6" y="44.4" textLength="353.8" clip-path="url(#terminal-4106968381-line-1)">breeze&#160;setup&#160;config&#160;[OPTIONS]</text><text class="terminal-4106968381-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-4106968381-line-1)">
-</text><text class="terminal-4106968381-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-4106968381-line-2)">
-</text><text class="terminal-4106968381-r2" x="12.2" y="93.2" textLength="805.2" clip-path="url(#terminal-4106968381-line-3)">Show/update&#160;configuration&#160;(Python,&#160;Backend,&#160;Cheatsheet,&#160;ASCIIART).</text><text class="terminal-4106968381-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-4106968381-line-3)">
-</text><text class="terminal-4106968381-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-4106968381-line-4)">
-</text><text class="terminal-4106968381-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-4106968381-line-5)">╭─</text><text class="terminal-4106968381-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-4106968381-line-5)">&#160;Config&#160;flags&#160;──────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-4106968381-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-410696 [...]
-</text><text class="terminal-4106968381-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-4106968381-line-6)">│</text><text class="terminal-4106968381-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-4106968381-line-6)">-</text><text class="terminal-4106968381-r5" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-4106968381-line-6)">-python</text><text class="terminal-4106968381-r6" x="390.4" y="166.4" textLength="24.4" clip-path="url(#terminal-4 [...]
-</text><text class="terminal-4106968381-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-4106968381-line-7)">│</text><text class="terminal-4106968381-r7" x="475.8" y="190.8" textLength="732" clip-path="url(#terminal-4106968381-line-7)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
-</text><text class="terminal-4106968381-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-4106968381-line-8)">│</text><text class="terminal-4106968381-r4" x="475.8" y="215.2" textLength="732" clip-path="url(#terminal-4106968381-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-4106968381-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-4106968381-line-9)">│</text><text class="terminal-4106968381-r5" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-4106968381-line-9)">-</text><text class="terminal-4106968381-r5" x="36.6" y="239.6" textLength="97.6" clip-path="url(#terminal-4106968381-line-9)">-backend</text><text class="terminal-4106968381-r6" x="390.4" y="239.6" textLength="24.4" clip-path="url(#terminal- [...]
-</text><text class="terminal-4106968381-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-4106968381-line-10)">│</text><text class="terminal-4106968381-r4" x="475.8" y="264" textLength="292.8" clip-path="url(#terminal-4106968381-line-10)">[default:&#160;sqlite]&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-4106968381-r4" x="1451.8" y="264" textLength="12.2" clip-path="url(#terminal-4106968381-line-10)">│</text><text class="terminal-4106968381-r2" x="146 [...]
-</text><text class="terminal-4106968381-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-4106968381-line-11)">│</text><text class="terminal-4106968381-r5" x="24.4" y="288.4" textLength="12.2" clip-path="url(#terminal-4106968381-line-11)">-</text><text class="terminal-4106968381-r5" x="36.6" y="288.4" textLength="109.8" clip-path="url(#terminal-4106968381-line-11)">-postgres</text><text class="terminal-4106968381-r5" x="146.4" y="288.4" textLength="97.6" clip-path="url(#term [...]
-</text><text class="terminal-4106968381-r4" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-4106968381-line-12)">│</text><text class="terminal-4106968381-r5" x="24.4" y="312.8" textLength="12.2" clip-path="url(#terminal-4106968381-line-12)">-</text><text class="terminal-4106968381-r5" x="36.6" y="312.8" textLength="73.2" clip-path="url(#terminal-4106968381-line-12)">-mysql</text><text class="terminal-4106968381-r5" x="109.8" y="312.8" textLength="97.6" clip-path="url(#terminal [...]
-</text><text class="terminal-4106968381-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-4106968381-line-13)">│</text><text class="terminal-4106968381-r5" x="24.4" y="337.2" textLength="12.2" clip-path="url(#terminal-4106968381-line-13)">-</text><text class="terminal-4106968381-r5" x="36.6" y="337.2" textLength="73.2" clip-path="url(#terminal-4106968381-line-13)">-mssql</text><text class="terminal-4106968381-r5" x="109.8" y="337.2" textLength="97.6" clip-path="url(#terminal [...]
-</text><text class="terminal-4106968381-r4" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-4106968381-line-14)">│</text><text class="terminal-4106968381-r5" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-4106968381-line-14)">-</text><text class="terminal-4106968381-r5" x="36.6" y="361.6" textLength="134.2" clip-path="url(#terminal-4106968381-line-14)">-cheatsheet</text><text class="terminal-4106968381-r2" x="170.8" y="361.6" textLength="12.2" clip-path="url(#te [...]
-</text><text class="terminal-4106968381-r4" x="0" y="386" textLength="12.2" clip-path="url(#terminal-4106968381-line-15)">│</text><text class="terminal-4106968381-r5" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-4106968381-line-15)">-</text><text class="terminal-4106968381-r5" x="36.6" y="386" textLength="109.8" clip-path="url(#terminal-4106968381-line-15)">-asciiart</text><text class="terminal-4106968381-r2" x="146.4" y="386" textLength="12.2" clip-path="url(#terminal-410 [...]
-</text><text class="terminal-4106968381-r4" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-4106968381-line-16)">│</text><text class="terminal-4106968381-r5" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-4106968381-line-16)">-</text><text class="terminal-4106968381-r5" x="36.6" y="410.4" textLength="85.4" clip-path="url(#terminal-4106968381-line-16)">-colour</text><text class="terminal-4106968381-r2" x="122" y="410.4" textLength="12.2" clip-path="url(#terminal- [...]
-</text><text class="terminal-4106968381-r4" x="0" y="434.8" textLength="1464" clip-path="url(#terminal-4106968381-line-17)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-4106968381-r2" x="1464" y="434.8" textLength="12.2" clip-path="url(#terminal-4106968381-line-17)">
-</text><text class="terminal-4106968381-r4" x="0" y="459.2" textLength="24.4" clip-path="url(#terminal-4106968381-line-18)">╭─</text><text class="terminal-4106968381-r4" x="24.4" y="459.2" textLength="1415.2" clip-path="url(#terminal-4106968381-line-18)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-4106968381-r4" x="1439.6" y="459.2" textLength="24.4" clip-path="url(#termina [...]
-</text><text class="terminal-4106968381-r4" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-4106968381-line-19)">│</text><text class="terminal-4106968381-r5" x="24.4" y="483.6" textLength="12.2" clip-path="url(#terminal-4106968381-line-19)">-</text><text class="terminal-4106968381-r5" x="36.6" y="483.6" textLength="61" clip-path="url(#terminal-4106968381-line-19)">-help</text><text class="terminal-4106968381-r6" x="122" y="483.6" textLength="24.4" clip-path="url(#terminal-4106 [...]
-</text><text class="terminal-4106968381-r4" x="0" y="508" textLength="1464" clip-path="url(#terminal-4106968381-line-20)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-4106968381-r2" x="1464" y="508" textLength="12.2" clip-path="url(#terminal-4106968381-line-20)">
+    <g class="terminal-3123797468-matrix">
+    <text class="terminal-3123797468-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-3123797468-line-0)">
+</text><text class="terminal-3123797468-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-3123797468-line-1)">Usage:&#160;</text><text class="terminal-3123797468-r1" x="97.6" y="44.4" textLength="256.2" clip-path="url(#terminal-3123797468-line-1)">breeze&#160;setup&#160;config&#160;[</text><text class="terminal-3123797468-r4" x="353.8" y="44.4" textLength="85.4" clip-path="url(#terminal-3123797468-line-1)">OPTIONS</text><text class="terminal-3123797468-r1" x="439.2" y="44. [...]
+</text><text class="terminal-3123797468-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-3123797468-line-2)">
+</text><text class="terminal-3123797468-r2" x="12.2" y="93.2" textLength="683.2" clip-path="url(#terminal-3123797468-line-3)">Show/update&#160;configuration&#160;(Python,&#160;Backend,&#160;Cheatsheet,&#160;</text><text class="terminal-3123797468-r4" x="695.4" y="93.2" textLength="97.6" clip-path="url(#terminal-3123797468-line-3)">ASCIIART</text><text class="terminal-3123797468-r2" x="793" y="93.2" textLength="24.4" clip-path="url(#terminal-3123797468-line-3)">).</text><text class="termi [...]
+</text><text class="terminal-3123797468-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-3123797468-line-4)">
+</text><text class="terminal-3123797468-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-3123797468-line-5)">╭─</text><text class="terminal-3123797468-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-3123797468-line-5)">&#160;Config&#160;flags&#160;──────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3123797468-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-312379 [...]
+</text><text class="terminal-3123797468-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-3123797468-line-6)">│</text><text class="terminal-3123797468-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-3123797468-line-6)">-</text><text class="terminal-3123797468-r4" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-3123797468-line-6)">-python</text><text class="terminal-3123797468-r6" x="390.4" y="166.4" textLength="24.4" clip-path="url(#terminal-3 [...]
+</text><text class="terminal-3123797468-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-3123797468-line-7)">│</text><text class="terminal-3123797468-r7" x="475.8" y="190.8" textLength="732" clip-path="url(#terminal-3123797468-line-7)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10&#160;|&#160;3.11)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;< [...]
+</text><text class="terminal-3123797468-r5" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-3123797468-line-8)">│</text><text class="terminal-3123797468-r5" x="475.8" y="215.2" textLength="732" clip-path="url(#terminal-3123797468-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-3123797468-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-3123797468-line-9)">│</text><text class="terminal-3123797468-r4" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-3123797468-line-9)">-</text><text class="terminal-3123797468-r4" x="36.6" y="239.6" textLength="97.6" clip-path="url(#terminal-3123797468-line-9)">-backend</text><text class="terminal-3123797468-r6" x="390.4" y="239.6" textLength="24.4" clip-path="url(#terminal- [...]
+</text><text class="terminal-3123797468-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-3123797468-line-10)">│</text><text class="terminal-3123797468-r5" x="475.8" y="264" textLength="292.8" clip-path="url(#terminal-3123797468-line-10)">[default:&#160;sqlite]&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-3123797468-r5" x="1451.8" y="264" textLength="12.2" clip-path="url(#terminal-3123797468-line-10)">│</text><text class="terminal-3123797468-r2" x="146 [...]
+</text><text class="terminal-3123797468-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-3123797468-line-11)">│</text><text class="terminal-3123797468-r4" x="24.4" y="288.4" textLength="12.2" clip-path="url(#terminal-3123797468-line-11)">-</text><text class="terminal-3123797468-r4" x="36.6" y="288.4" textLength="109.8" clip-path="url(#terminal-3123797468-line-11)">-postgres</text><text class="terminal-3123797468-r4" x="146.4" y="288.4" textLength="97.6" clip-path="url(#term [...]
+</text><text class="terminal-3123797468-r5" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-3123797468-line-12)">│</text><text class="terminal-3123797468-r4" x="24.4" y="312.8" textLength="12.2" clip-path="url(#terminal-3123797468-line-12)">-</text><text class="terminal-3123797468-r4" x="36.6" y="312.8" textLength="73.2" clip-path="url(#terminal-3123797468-line-12)">-mysql</text><text class="terminal-3123797468-r4" x="109.8" y="312.8" textLength="97.6" clip-path="url(#terminal [...]
+</text><text class="terminal-3123797468-r5" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-3123797468-line-13)">│</text><text class="terminal-3123797468-r4" x="24.4" y="337.2" textLength="12.2" clip-path="url(#terminal-3123797468-line-13)">-</text><text class="terminal-3123797468-r4" x="36.6" y="337.2" textLength="73.2" clip-path="url(#terminal-3123797468-line-13)">-mssql</text><text class="terminal-3123797468-r4" x="109.8" y="337.2" textLength="97.6" clip-path="url(#terminal [...]
+</text><text class="terminal-3123797468-r5" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-3123797468-line-14)">│</text><text class="terminal-3123797468-r4" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-3123797468-line-14)">-</text><text class="terminal-3123797468-r4" x="36.6" y="361.6" textLength="134.2" clip-path="url(#terminal-3123797468-line-14)">-cheatsheet</text><text class="terminal-3123797468-r2" x="170.8" y="361.6" textLength="12.2" clip-path="url(#te [...]
+</text><text class="terminal-3123797468-r5" x="0" y="386" textLength="12.2" clip-path="url(#terminal-3123797468-line-15)">│</text><text class="terminal-3123797468-r4" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-3123797468-line-15)">-</text><text class="terminal-3123797468-r4" x="36.6" y="386" textLength="109.8" clip-path="url(#terminal-3123797468-line-15)">-asciiart</text><text class="terminal-3123797468-r2" x="146.4" y="386" textLength="12.2" clip-path="url(#terminal-312 [...]
+</text><text class="terminal-3123797468-r5" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-3123797468-line-16)">│</text><text class="terminal-3123797468-r4" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-3123797468-line-16)">-</text><text class="terminal-3123797468-r4" x="36.6" y="410.4" textLength="85.4" clip-path="url(#terminal-3123797468-line-16)">-colour</text><text class="terminal-3123797468-r2" x="122" y="410.4" textLength="12.2" clip-path="url(#terminal- [...]
+</text><text class="terminal-3123797468-r5" x="0" y="434.8" textLength="1464" clip-path="url(#terminal-3123797468-line-17)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3123797468-r2" x="1464" y="434.8" textLength="12.2" clip-path="url(#terminal-3123797468-line-17)">
+</text><text class="terminal-3123797468-r5" x="0" y="459.2" textLength="24.4" clip-path="url(#terminal-3123797468-line-18)">╭─</text><text class="terminal-3123797468-r5" x="24.4" y="459.2" textLength="1415.2" clip-path="url(#terminal-3123797468-line-18)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3123797468-r5" x="1439.6" y="459.2" textLength="24.4" clip-path="url(#termina [...]
+</text><text class="terminal-3123797468-r5" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-3123797468-line-19)">│</text><text class="terminal-3123797468-r4" x="24.4" y="483.6" textLength="12.2" clip-path="url(#terminal-3123797468-line-19)">-</text><text class="terminal-3123797468-r4" x="36.6" y="483.6" textLength="61" clip-path="url(#terminal-3123797468-line-19)">-help</text><text class="terminal-3123797468-r6" x="122" y="483.6" textLength="24.4" clip-path="url(#terminal-3123 [...]
+</text><text class="terminal-3123797468-r5" x="0" y="508" textLength="1464" clip-path="url(#terminal-3123797468-line-20)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3123797468-r2" x="1464" y="508" textLength="12.2" clip-path="url(#terminal-3123797468-line-20)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_shell.svg b/images/breeze/output_shell.svg
index def029f80b..df6d4814c9 100644
--- a/images/breeze/output_shell.svg
+++ b/images/breeze/output_shell.svg
@@ -1,4 +1,4 @@
-<svg class="rich-terminal" viewBox="0 0 1482 1318.8" xmlns="http://www.w3.org/2000/svg">
+<svg class="rich-terminal" viewBox="0 0 1482 1343.1999999999998" xmlns="http://www.w3.org/2000/svg">
     <!-- Generated with Rich https://www.textualize.io -->
     <style>
 
@@ -19,249 +19,253 @@
         font-weight: 700;
     }
 
-    .terminal-3611482896-matrix {
+    .terminal-1930227305-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-3611482896-title {
+    .terminal-1930227305-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-3611482896-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-3611482896-r2 { fill: #c5c8c6 }
-.terminal-3611482896-r3 { fill: #d0b344;font-weight: bold }
-.terminal-3611482896-r4 { fill: #868887 }
-.terminal-3611482896-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-3611482896-r6 { fill: #98a84b;font-weight: bold }
-.terminal-3611482896-r7 { fill: #8d7b39 }
+    .terminal-1930227305-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-1930227305-r2 { fill: #c5c8c6 }
+.terminal-1930227305-r3 { fill: #d0b344;font-weight: bold }
+.terminal-1930227305-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-1930227305-r5 { fill: #868887 }
+.terminal-1930227305-r6 { fill: #98a84b;font-weight: bold }
+.terminal-1930227305-r7 { fill: #8d7b39 }
     </style>
 
     <defs>
-    <clipPath id="terminal-3611482896-clip-terminal">
-      <rect x="0" y="0" width="1463.0" height="1267.8" />
+    <clipPath id="terminal-1930227305-clip-terminal">
+      <rect x="0" y="0" width="1463.0" height="1292.1999999999998" />
     </clipPath>
-    <clipPath id="terminal-3611482896-line-0">
+    <clipPath id="terminal-1930227305-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-1">
+<clipPath id="terminal-1930227305-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-2">
+<clipPath id="terminal-1930227305-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-3">
+<clipPath id="terminal-1930227305-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-4">
+<clipPath id="terminal-1930227305-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-5">
+<clipPath id="terminal-1930227305-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-6">
+<clipPath id="terminal-1930227305-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-7">
+<clipPath id="terminal-1930227305-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-8">
+<clipPath id="terminal-1930227305-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-9">
+<clipPath id="terminal-1930227305-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-10">
+<clipPath id="terminal-1930227305-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-11">
+<clipPath id="terminal-1930227305-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-12">
+<clipPath id="terminal-1930227305-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-13">
+<clipPath id="terminal-1930227305-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-14">
+<clipPath id="terminal-1930227305-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-15">
+<clipPath id="terminal-1930227305-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-16">
+<clipPath id="terminal-1930227305-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-17">
+<clipPath id="terminal-1930227305-line-17">
     <rect x="0" y="416.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-18">
+<clipPath id="terminal-1930227305-line-18">
     <rect x="0" y="440.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-19">
+<clipPath id="terminal-1930227305-line-19">
     <rect x="0" y="465.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-20">
+<clipPath id="terminal-1930227305-line-20">
     <rect x="0" y="489.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-21">
+<clipPath id="terminal-1930227305-line-21">
     <rect x="0" y="513.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-22">
+<clipPath id="terminal-1930227305-line-22">
     <rect x="0" y="538.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-23">
+<clipPath id="terminal-1930227305-line-23">
     <rect x="0" y="562.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-24">
+<clipPath id="terminal-1930227305-line-24">
     <rect x="0" y="587.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-25">
+<clipPath id="terminal-1930227305-line-25">
     <rect x="0" y="611.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-26">
+<clipPath id="terminal-1930227305-line-26">
     <rect x="0" y="635.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-27">
+<clipPath id="terminal-1930227305-line-27">
     <rect x="0" y="660.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-28">
+<clipPath id="terminal-1930227305-line-28">
     <rect x="0" y="684.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-29">
+<clipPath id="terminal-1930227305-line-29">
     <rect x="0" y="709.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-30">
+<clipPath id="terminal-1930227305-line-30">
     <rect x="0" y="733.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-31">
+<clipPath id="terminal-1930227305-line-31">
     <rect x="0" y="757.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-32">
+<clipPath id="terminal-1930227305-line-32">
     <rect x="0" y="782.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-33">
+<clipPath id="terminal-1930227305-line-33">
     <rect x="0" y="806.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-34">
+<clipPath id="terminal-1930227305-line-34">
     <rect x="0" y="831.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-35">
+<clipPath id="terminal-1930227305-line-35">
     <rect x="0" y="855.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-36">
+<clipPath id="terminal-1930227305-line-36">
     <rect x="0" y="879.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-37">
+<clipPath id="terminal-1930227305-line-37">
     <rect x="0" y="904.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-38">
+<clipPath id="terminal-1930227305-line-38">
     <rect x="0" y="928.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-39">
+<clipPath id="terminal-1930227305-line-39">
     <rect x="0" y="953.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-40">
+<clipPath id="terminal-1930227305-line-40">
     <rect x="0" y="977.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-41">
+<clipPath id="terminal-1930227305-line-41">
     <rect x="0" y="1001.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-42">
+<clipPath id="terminal-1930227305-line-42">
     <rect x="0" y="1026.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-43">
+<clipPath id="terminal-1930227305-line-43">
     <rect x="0" y="1050.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-44">
+<clipPath id="terminal-1930227305-line-44">
     <rect x="0" y="1075.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-45">
+<clipPath id="terminal-1930227305-line-45">
     <rect x="0" y="1099.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-46">
+<clipPath id="terminal-1930227305-line-46">
     <rect x="0" y="1123.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-47">
+<clipPath id="terminal-1930227305-line-47">
     <rect x="0" y="1148.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-48">
+<clipPath id="terminal-1930227305-line-48">
     <rect x="0" y="1172.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-49">
+<clipPath id="terminal-1930227305-line-49">
     <rect x="0" y="1197.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-3611482896-line-50">
+<clipPath id="terminal-1930227305-line-50">
     <rect x="0" y="1221.5" width="1464" height="24.65"/>
             </clipPath>
+<clipPath id="terminal-1930227305-line-51">
+    <rect x="0" y="1245.9" width="1464" height="24.65"/>
+            </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="1316.8" rx="8"/><text class="terminal-3611482896-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;shell</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="1341.2" rx="8"/><text class="terminal-1930227305-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;shell</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-3611482896-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-1930227305-clip-terminal)">
     
-    <g class="terminal-3611482896-matrix">
-    <text class="terminal-3611482896-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-3611482896-line-0)">
-</text><text class="terminal-3611482896-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-3611482896-line-1)">Usage:&#160;</text><text class="terminal-3611482896-r1" x="97.6" y="44.4" textLength="463.6" clip-path="url(#terminal-3611482896-line-1)">breeze&#160;shell&#160;[OPTIONS]&#160;[EXTRA_ARGS]...</text><text class="terminal-3611482896-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-3611482896-line-1)">
-</text><text class="terminal-3611482896-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-3611482896-line-2)">
-</text><text class="terminal-3611482896-r2" x="12.2" y="93.2" textLength="1024.8" clip-path="url(#terminal-3611482896-line-3)">Enter&#160;breeze&#160;environment.&#160;this&#160;is&#160;the&#160;default&#160;command&#160;use&#160;when&#160;no&#160;other&#160;is&#160;selected.</text><text class="terminal-3611482896-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-3611482896-line-3)">
-</text><text class="terminal-3611482896-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-3611482896-line-4)">
-</text><text class="terminal-3611482896-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-3611482896-line-5)">╭─</text><text class="terminal-3611482896-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-3611482896-line-5)">&#160;Basic&#160;flags&#160;───────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3611482896-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-361148 [...]
-</text><text class="terminal-3611482896-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-3611482896-line-6)">│</text><text class="terminal-3611482896-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-3611482896-line-6)">-</text><text class="terminal-3611482896-r5" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-3611482896-line-6)">-python</text><text class="terminal-3611482896-r6" x="305" y="166.4" textLength="24.4" clip-path="url(#terminal-361 [...]
-</text><text class="terminal-3611482896-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-3611482896-line-7)">│</text><text class="terminal-3611482896-r4" x="353.8" y="190.8" textLength="732" clip-path="url(#terminal-3611482896-line-7)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-3611482896-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-3611482896-line-8)">│</text><text class="terminal-3611482896-r5" x="24.4" y="215.2" textLength="12.2" clip-path="url(#terminal-3611482896-line-8)">-</text><text class="terminal-3611482896-r5" x="36.6" y="215.2" textLength="97.6" clip-path="url(#terminal-3611482896-line-8)">-backend</text><text class="terminal-3611482896-r6" x="305" y="215.2" textLength="24.4" clip-path="url(#terminal-36 [...]
-</text><text class="terminal-3611482896-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-3611482896-line-9)">│</text><text class="terminal-3611482896-r5" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-3611482896-line-9)">-</text><text class="terminal-3611482896-r5" x="36.6" y="239.6" textLength="109.8" clip-path="url(#terminal-3611482896-line-9)">-postgres</text><text class="terminal-3611482896-r5" x="146.4" y="239.6" textLength="97.6" clip-path="url(#termina [...]
-</text><text class="terminal-3611482896-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-3611482896-line-10)">│</text><text class="terminal-3611482896-r5" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-3611482896-line-10)">-</text><text class="terminal-3611482896-r5" x="36.6" y="264" textLength="73.2" clip-path="url(#terminal-3611482896-line-10)">-mysql</text><text class="terminal-3611482896-r5" x="109.8" y="264" textLength="97.6" clip-path="url(#terminal-3611482 [...]
-</text><text class="terminal-3611482896-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-3611482896-line-11)">│</text><text class="terminal-3611482896-r5" x="24.4" y="288.4" textLength="12.2" clip-path="url(#terminal-3611482896-line-11)">-</text><text class="terminal-3611482896-r5" x="36.6" y="288.4" textLength="73.2" clip-path="url(#terminal-3611482896-line-11)">-mssql</text><text class="terminal-3611482896-r5" x="109.8" y="288.4" textLength="97.6" clip-path="url(#terminal [...]
-</text><text class="terminal-3611482896-r4" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-3611482896-line-12)">│</text><text class="terminal-3611482896-r5" x="24.4" y="312.8" textLength="12.2" clip-path="url(#terminal-3611482896-line-12)">-</text><text class="terminal-3611482896-r5" x="36.6" y="312.8" textLength="146.4" clip-path="url(#terminal-3611482896-line-12)">-integration</text><text class="terminal-3611482896-r2" x="353.8" y="312.8" textLength="1085.8" clip-path="url( [...]
-</text><text class="terminal-3611482896-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-3611482896-line-13)">│</text><text class="terminal-3611482896-r7" x="353.8" y="337.2" textLength="1085.8" clip-path="url(#terminal-3611482896-line-13)">(cassandra&#160;|&#160;kerberos&#160;|&#160;mongo&#160;|&#160;openldap&#160;|&#160;pinot&#160;|&#160;rabbitmq&#160;|&#160;redis&#160;|&#160;statsd&#160;|&#160;trino&#160;|&#160;&#160;&#160;</text><text class="terminal-3611482896-r4" x="1 [...]
-</text><text class="terminal-3611482896-r4" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-3611482896-line-14)">│</text><text class="terminal-3611482896-r7" x="353.8" y="361.6" textLength="1085.8" clip-path="url(#terminal-3611482896-line-14)">all)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-3611482896-r4" x="0" y="386" textLength="12.2" clip-path="url(#terminal-3611482896-line-15)">│</text><text class="terminal-3611482896-r5" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-3611482896-line-15)">-</text><text class="terminal-3611482896-r5" x="36.6" y="386" textLength="97.6" clip-path="url(#terminal-3611482896-line-15)">-forward</text><text class="terminal-3611482896-r5" x="134.2" y="386" textLength="146.4" clip-path="url(#terminal-3611 [...]
-</text><text class="terminal-3611482896-r4" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-3611482896-line-16)">│</text><text class="terminal-3611482896-r5" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-3611482896-line-16)">-</text><text class="terminal-3611482896-r5" x="36.6" y="410.4" textLength="36.6" clip-path="url(#terminal-3611482896-line-16)">-db</text><text class="terminal-3611482896-r5" x="73.2" y="410.4" textLength="73.2" clip-path="url(#terminal-361 [...]
-</text><text class="terminal-3611482896-r4" x="0" y="434.8" textLength="1464" clip-path="url(#terminal-3611482896-line-17)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3611482896-r2" x="1464" y="434.8" textLength="12.2" clip-path="url(#terminal-3611482896-line-17)">
-</text><text class="terminal-3611482896-r4" x="0" y="459.2" textLength="24.4" clip-path="url(#terminal-3611482896-line-18)">╭─</text><text class="terminal-3611482896-r4" x="24.4" y="459.2" textLength="1415.2" clip-path="url(#terminal-3611482896-line-18)">&#160;Advanced&#160;flag&#160;for&#160;running&#160;─────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3611482896-r4" x="1439.6" y="459.2" textLength="24.4" clip-path="ur [...]
-</text><text class="terminal-3611482896-r4" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-3611482896-line-19)">│</text><text class="terminal-3611482896-r5" x="24.4" y="483.6" textLength="12.2" clip-path="url(#terminal-3611482896-line-19)">-</text><text class="terminal-3611482896-r5" x="36.6" y="483.6" textLength="48.8" clip-path="url(#terminal-3611482896-line-19)">-use</text><text class="terminal-3611482896-r5" x="85.4" y="483.6" textLength="195.2" clip-path="url(#terminal-3 [...]
-</text><text class="terminal-3611482896-r4" x="0" y="508" textLength="12.2" clip-path="url(#terminal-3611482896-line-20)">│</text><text class="terminal-3611482896-r2" x="475.8" y="508" textLength="963.8" clip-path="url(#terminal-3611482896-line-20)">`wheel`,&#160;or&#160;`sdist`&#160;if&#160;Airflow&#160;should&#160;be&#160;removed,&#160;installed&#160;from&#160;wheel&#160;packages</text><text class="terminal-3611482896-r4" x="1451.8" y="508" textLength="12.2" clip-path="url(#terminal-36 [...]
-</text><text class="terminal-3611482896-r4" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-3611482896-line-21)">│</text><text class="terminal-3611482896-r2" x="475.8" y="532.4" textLength="963.8" clip-path="url(#terminal-3611482896-line-21)">or&#160;sdist&#160;packages&#160;available&#160;in&#160;dist&#160;folder&#160;respectively.&#160;Implies&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-3611482896-r4"  [...]
-</text><text class="terminal-3611482896-r4" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-3611482896-line-22)">│</text><text class="terminal-3611482896-r5" x="475.8" y="556.8" textLength="12.2" clip-path="url(#terminal-3611482896-line-22)">-</text><text class="terminal-3611482896-r5" x="488" y="556.8" textLength="73.2" clip-path="url(#terminal-3611482896-line-22)">-mount</text><text class="terminal-3611482896-r5" x="561.2" y="556.8" textLength="97.6" clip-path="url(#terminal [...]
-</text><text class="terminal-3611482896-r4" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-3611482896-line-23)">│</text><text class="terminal-3611482896-r7" x="475.8" y="581.2" textLength="963.8" clip-path="url(#terminal-3611482896-line-23)">(none&#160;|&#160;wheel&#160;|&#160;sdist&#160;|&#160;&lt;airflow_version&gt;)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
-</text><text class="terminal-3611482896-r4" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-3611482896-line-24)">│</text><text class="terminal-3611482896-r5" x="24.4" y="605.6" textLength="12.2" clip-path="url(#terminal-3611482896-line-24)">-</text><text class="terminal-3611482896-r5" x="36.6" y="605.6" textLength="97.6" clip-path="url(#terminal-3611482896-line-24)">-airflow</text><text class="terminal-3611482896-r5" x="134.2" y="605.6" textLength="268.4" clip-path="url(#termi [...]
-</text><text class="terminal-3611482896-r4" x="0" y="630" textLength="12.2" clip-path="url(#terminal-3611482896-line-25)">│</text><text class="terminal-3611482896-r2" x="475.8" y="630" textLength="963.8" clip-path="url(#terminal-3611482896-line-25)">specify&#160;constraints&#160;for&#160;the&#160;installed&#160;version&#160;and&#160;to&#160;find&#160;newer&#160;dependencies&#160;&#160;&#160;</text><text class="terminal-3611482896-r4" x="1451.8" y="630" textLength="12.2" clip-path="url(#t [...]
-</text><text class="terminal-3611482896-r4" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-3611482896-line-26)">│</text><text class="terminal-3611482896-r7" x="475.8" y="654.4" textLength="963.8" clip-path="url(#terminal-3611482896-line-26)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
-</text><text class="terminal-3611482896-r4" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-3611482896-line-27)">│</text><text class="terminal-3611482896-r5" x="24.4" y="678.8" textLength="12.2" clip-path="url(#terminal-3611482896-line-27)">-</text><text class="terminal-3611482896-r5" x="36.6" y="678.8" textLength="109.8" clip-path="url(#terminal-3611482896-line-27)">-platform</text><text class="terminal-3611482896-r2" x="475.8" y="678.8" textLength="329.4" clip-path="url(#ter [...]
-</text><text class="terminal-3611482896-r4" x="0" y="703.2" textLength="12.2" clip-path="url(#terminal-3611482896-line-28)">│</text><text class="terminal-3611482896-r5" x="24.4" y="703.2" textLength="12.2" clip-path="url(#terminal-3611482896-line-28)">-</text><text class="terminal-3611482896-r5" x="36.6" y="703.2" textLength="97.6" clip-path="url(#terminal-3611482896-line-28)">-airflow</text><text class="terminal-3611482896-r5" x="134.2" y="703.2" textLength="85.4" clip-path="url(#termin [...]
-</text><text class="terminal-3611482896-r4" x="0" y="727.6" textLength="12.2" clip-path="url(#terminal-3611482896-line-29)">│</text><text class="terminal-3611482896-r5" x="24.4" y="727.6" textLength="12.2" clip-path="url(#terminal-3611482896-line-29)">-</text><text class="terminal-3611482896-r5" x="36.6" y="727.6" textLength="48.8" clip-path="url(#terminal-3611482896-line-29)">-use</text><text class="terminal-3611482896-r5" x="85.4" y="727.6" textLength="231.8" clip-path="url(#terminal-3 [...]
-</text><text class="terminal-3611482896-r4" x="0" y="752" textLength="12.2" clip-path="url(#terminal-3611482896-line-30)">│</text><text class="terminal-3611482896-r2" x="475.8" y="752" textLength="963.8" clip-path="url(#terminal-3611482896-line-30)">folder&#160;when&#160;entering&#160;breeze.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-3611482896-r4" x="0" y="776.4" textLength="12.2" clip-path="url(#terminal-3611482896-line-31)">│</text><text class="terminal-3611482896-r5" x="24.4" y="776.4" textLength="12.2" clip-path="url(#terminal-3611482896-line-31)">-</text><text class="terminal-3611482896-r5" x="36.6" y="776.4" textLength="97.6" clip-path="url(#terminal-3611482896-line-31)">-package</text><text class="terminal-3611482896-r5" x="134.2" y="776.4" textLength="85.4" clip-path="url(#termin [...]
-</text><text class="terminal-3611482896-r4" x="0" y="800.8" textLength="12.2" clip-path="url(#terminal-3611482896-line-32)">│</text><text class="terminal-3611482896-r4" x="475.8" y="800.8" textLength="658.8" clip-path="url(#terminal-3611482896-line-32)">[default:&#160;wheel]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-3611482896-r4" x="0" y="825.2" textLength="12.2" clip-path="url(#terminal-3611482896-line-33)">│</text><text class="terminal-3611482896-r5" x="24.4" y="825.2" textLength="12.2" clip-path="url(#terminal-3611482896-line-33)">-</text><text class="terminal-3611482896-r5" x="36.6" y="825.2" textLength="73.2" clip-path="url(#terminal-3611482896-line-33)">-force</text><text class="terminal-3611482896-r5" x="109.8" y="825.2" textLength="73.2" clip-path="url(#terminal [...]
-</text><text class="terminal-3611482896-r4" x="0" y="849.6" textLength="12.2" clip-path="url(#terminal-3611482896-line-34)">│</text><text class="terminal-3611482896-r5" x="24.4" y="849.6" textLength="12.2" clip-path="url(#terminal-3611482896-line-34)">-</text><text class="terminal-3611482896-r5" x="36.6" y="849.6" textLength="73.2" clip-path="url(#terminal-3611482896-line-34)">-image</text><text class="terminal-3611482896-r5" x="109.8" y="849.6" textLength="48.8" clip-path="url(#terminal [...]
-</text><text class="terminal-3611482896-r4" x="0" y="874" textLength="12.2" clip-path="url(#terminal-3611482896-line-35)">│</text><text class="terminal-3611482896-r7" x="475.8" y="874" textLength="963.8" clip-path="url(#terminal-3611482896-line-35)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
-</text><text class="terminal-3611482896-r4" x="0" y="898.4" textLength="12.2" clip-path="url(#terminal-3611482896-line-36)">│</text><text class="terminal-3611482896-r4" x="475.8" y="898.4" textLength="963.8" clip-path="url(#terminal-3611482896-line-36)">[default:&#160;latest]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
-</text><text class="terminal-3611482896-r4" x="0" y="922.8" textLength="12.2" clip-path="url(#terminal-3611482896-line-37)">│</text><text class="terminal-3611482896-r5" x="24.4" y="922.8" textLength="12.2" clip-path="url(#terminal-3611482896-line-37)">-</text><text class="terminal-3611482896-r5" x="36.6" y="922.8" textLength="73.2" clip-path="url(#terminal-3611482896-line-37)">-mount</text><text class="terminal-3611482896-r5" x="109.8" y="922.8" textLength="97.6" clip-path="url(#terminal [...]
-</text><text class="terminal-3611482896-r4" x="0" y="947.2" textLength="12.2" clip-path="url(#terminal-3611482896-line-38)">│</text><text class="terminal-3611482896-r2" x="475.8" y="947.2" textLength="963.8" clip-path="url(#terminal-3611482896-line-38)">(default&#160;=&#160;selected).&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
-</text><text class="terminal-3611482896-r4" x="0" y="971.6" textLength="12.2" clip-path="url(#terminal-3611482896-line-39)">│</text><text class="terminal-3611482896-r7" x="475.8" y="971.6" textLength="963.8" clip-path="url(#terminal-3611482896-line-39)">(selected&#160;|&#160;all&#160;|&#160;skip&#160;|&#160;remove)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
-</text><text class="terminal-3611482896-r4" x="0" y="996" textLength="12.2" clip-path="url(#terminal-3611482896-line-40)">│</text><text class="terminal-3611482896-r4" x="475.8" y="996" textLength="963.8" clip-path="url(#terminal-3611482896-line-40)">[default:&#160;selected]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
-</text><text class="terminal-3611482896-r4" x="0" y="1020.4" textLength="12.2" clip-path="url(#terminal-3611482896-line-41)">│</text><text class="terminal-3611482896-r5" x="24.4" y="1020.4" textLength="12.2" clip-path="url(#terminal-3611482896-line-41)">-</text><text class="terminal-3611482896-r5" x="36.6" y="1020.4" textLength="97.6" clip-path="url(#terminal-3611482896-line-41)">-include</text><text class="terminal-3611482896-r5" x="134.2" y="1020.4" textLength="146.4" clip-path="url(#t [...]
-</text><text class="terminal-3611482896-r4" x="0" y="1044.8" textLength="1464" clip-path="url(#terminal-3611482896-line-42)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3611482896-r2" x="1464" y="1044.8" textLength="12.2" clip-path="url(#terminal-3611482896-line-42)">
-</text><text class="terminal-3611482896-r4" x="0" y="1069.2" textLength="24.4" clip-path="url(#terminal-3611482896-line-43)">╭─</text><text class="terminal-3611482896-r4" x="24.4" y="1069.2" textLength="1415.2" clip-path="url(#terminal-3611482896-line-43)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3611482896-r4" x="1439.6" y="1069.2" textLength="24.4" clip-path="url(#term [...]
-</text><text class="terminal-3611482896-r4" x="0" y="1093.6" textLength="12.2" clip-path="url(#terminal-3611482896-line-44)">│</text><text class="terminal-3611482896-r5" x="24.4" y="1093.6" textLength="12.2" clip-path="url(#terminal-3611482896-line-44)">-</text><text class="terminal-3611482896-r5" x="36.6" y="1093.6" textLength="97.6" clip-path="url(#terminal-3611482896-line-44)">-verbose</text><text class="terminal-3611482896-r6" x="280.6" y="1093.6" textLength="24.4" clip-path="url(#te [...]
-</text><text class="terminal-3611482896-r4" x="0" y="1118" textLength="12.2" clip-path="url(#terminal-3611482896-line-45)">│</text><text class="terminal-3611482896-r5" x="24.4" y="1118" textLength="12.2" clip-path="url(#terminal-3611482896-line-45)">-</text><text class="terminal-3611482896-r5" x="36.6" y="1118" textLength="48.8" clip-path="url(#terminal-3611482896-line-45)">-dry</text><text class="terminal-3611482896-r5" x="85.4" y="1118" textLength="48.8" clip-path="url(#terminal-361148 [...]
-</text><text class="terminal-3611482896-r4" x="0" y="1142.4" textLength="12.2" clip-path="url(#terminal-3611482896-line-46)">│</text><text class="terminal-3611482896-r5" x="24.4" y="1142.4" textLength="12.2" clip-path="url(#terminal-3611482896-line-46)">-</text><text class="terminal-3611482896-r5" x="36.6" y="1142.4" textLength="85.4" clip-path="url(#terminal-3611482896-line-46)">-github</text><text class="terminal-3611482896-r5" x="122" y="1142.4" textLength="134.2" clip-path="url(#term [...]
-</text><text class="terminal-3611482896-r4" x="0" y="1166.8" textLength="12.2" clip-path="url(#terminal-3611482896-line-47)">│</text><text class="terminal-3611482896-r5" x="24.4" y="1166.8" textLength="12.2" clip-path="url(#terminal-3611482896-line-47)">-</text><text class="terminal-3611482896-r5" x="36.6" y="1166.8" textLength="85.4" clip-path="url(#terminal-3611482896-line-47)">-answer</text><text class="terminal-3611482896-r6" x="280.6" y="1166.8" textLength="24.4" clip-path="url(#ter [...]
-</text><text class="terminal-3611482896-r4" x="0" y="1191.2" textLength="12.2" clip-path="url(#terminal-3611482896-line-48)">│</text><text class="terminal-3611482896-r5" x="24.4" y="1191.2" textLength="12.2" clip-path="url(#terminal-3611482896-line-48)">-</text><text class="terminal-3611482896-r5" x="36.6" y="1191.2" textLength="48.8" clip-path="url(#terminal-3611482896-line-48)">-max</text><text class="terminal-3611482896-r5" x="85.4" y="1191.2" textLength="61" clip-path="url(#terminal- [...]
-</text><text class="terminal-3611482896-r4" x="0" y="1215.6" textLength="12.2" clip-path="url(#terminal-3611482896-line-49)">│</text><text class="terminal-3611482896-r7" x="329.4" y="1215.6" textLength="1049.2" clip-path="url(#terminal-3611482896-line-49)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-3611482896-r4" x="0" y="1240" textLength="12.2" clip-path="url(#terminal-3611482896-line-50)">│</text><text class="terminal-3611482896-r5" x="24.4" y="1240" textLength="12.2" clip-path="url(#terminal-3611482896-line-50)">-</text><text class="terminal-3611482896-r5" x="36.6" y="1240" textLength="61" clip-path="url(#terminal-3611482896-line-50)">-help</text><text class="terminal-3611482896-r6" x="280.6" y="1240" textLength="24.4" clip-path="url(#terminal-361148 [...]
-</text><text class="terminal-3611482896-r4" x="0" y="1264.4" textLength="1464" clip-path="url(#terminal-3611482896-line-51)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3611482896-r2" x="1464" y="1264.4" textLength="12.2" clip-path="url(#terminal-3611482896-line-51)">
+    <g class="terminal-1930227305-matrix">
+    <text class="terminal-1930227305-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-1930227305-line-0)">
+</text><text class="terminal-1930227305-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-1930227305-line-1)">Usage:&#160;</text><text class="terminal-1930227305-r1" x="97.6" y="44.4" textLength="170.8" clip-path="url(#terminal-1930227305-line-1)">breeze&#160;shell&#160;[</text><text class="terminal-1930227305-r4" x="268.4" y="44.4" textLength="85.4" clip-path="url(#terminal-1930227305-line-1)">OPTIONS</text><text class="terminal-1930227305-r1" x="353.8" y="44.4" textLengt [...]
+</text><text class="terminal-1930227305-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-1930227305-line-2)">
+</text><text class="terminal-1930227305-r2" x="12.2" y="93.2" textLength="1024.8" clip-path="url(#terminal-1930227305-line-3)">Enter&#160;breeze&#160;environment.&#160;this&#160;is&#160;the&#160;default&#160;command&#160;use&#160;when&#160;no&#160;other&#160;is&#160;selected.</text><text class="terminal-1930227305-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-1930227305-line-3)">
+</text><text class="terminal-1930227305-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-1930227305-line-4)">
+</text><text class="terminal-1930227305-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-1930227305-line-5)">╭─</text><text class="terminal-1930227305-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-1930227305-line-5)">&#160;Basic&#160;flags&#160;───────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1930227305-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-193022 [...]
+</text><text class="terminal-1930227305-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-1930227305-line-6)">│</text><text class="terminal-1930227305-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-1930227305-line-6)">-</text><text class="terminal-1930227305-r4" x="36.6" y="166.4" textLength="85.4" clip-path="url(#terminal-1930227305-line-6)">-python</text><text class="terminal-1930227305-r6" x="305" y="166.4" textLength="24.4" clip-path="url(#terminal-193 [...]
+</text><text class="terminal-1930227305-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-1930227305-line-7)">│</text><text class="terminal-1930227305-r7" x="353.8" y="190.8" textLength="732" clip-path="url(#terminal-1930227305-line-7)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10&#160;|&#160;3.11)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;< [...]
+</text><text class="terminal-1930227305-r5" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-1930227305-line-8)">│</text><text class="terminal-1930227305-r5" x="353.8" y="215.2" textLength="732" clip-path="url(#terminal-1930227305-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-1930227305-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-1930227305-line-9)">│</text><text class="terminal-1930227305-r4" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-1930227305-line-9)">-</text><text class="terminal-1930227305-r4" x="36.6" y="239.6" textLength="97.6" clip-path="url(#terminal-1930227305-line-9)">-backend</text><text class="terminal-1930227305-r6" x="305" y="239.6" textLength="24.4" clip-path="url(#terminal-19 [...]
+</text><text class="terminal-1930227305-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-1930227305-line-10)">│</text><text class="terminal-1930227305-r4" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-1930227305-line-10)">-</text><text class="terminal-1930227305-r4" x="36.6" y="264" textLength="109.8" clip-path="url(#terminal-1930227305-line-10)">-postgres</text><text class="terminal-1930227305-r4" x="146.4" y="264" textLength="97.6" clip-path="url(#terminal-193 [...]
+</text><text class="terminal-1930227305-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-1930227305-line-11)">│</text><text class="terminal-1930227305-r4" x="24.4" y="288.4" textLength="12.2" clip-path="url(#terminal-1930227305-line-11)">-</text><text class="terminal-1930227305-r4" x="36.6" y="288.4" textLength="73.2" clip-path="url(#terminal-1930227305-line-11)">-mysql</text><text class="terminal-1930227305-r4" x="109.8" y="288.4" textLength="97.6" clip-path="url(#terminal [...]
+</text><text class="terminal-1930227305-r5" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-1930227305-line-12)">│</text><text class="terminal-1930227305-r4" x="24.4" y="312.8" textLength="12.2" clip-path="url(#terminal-1930227305-line-12)">-</text><text class="terminal-1930227305-r4" x="36.6" y="312.8" textLength="73.2" clip-path="url(#terminal-1930227305-line-12)">-mssql</text><text class="terminal-1930227305-r4" x="109.8" y="312.8" textLength="97.6" clip-path="url(#terminal [...]
+</text><text class="terminal-1930227305-r5" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-1930227305-line-13)">│</text><text class="terminal-1930227305-r4" x="24.4" y="337.2" textLength="12.2" clip-path="url(#terminal-1930227305-line-13)">-</text><text class="terminal-1930227305-r4" x="36.6" y="337.2" textLength="146.4" clip-path="url(#terminal-1930227305-line-13)">-integration</text><text class="terminal-1930227305-r2" x="353.8" y="337.2" textLength="1085.8" clip-path="url( [...]
+</text><text class="terminal-1930227305-r5" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-1930227305-line-14)">│</text><text class="terminal-1930227305-r7" x="353.8" y="361.6" textLength="1085.8" clip-path="url(#terminal-1930227305-line-14)">(cassandra&#160;|&#160;kerberos&#160;|&#160;mongo&#160;|&#160;openldap&#160;|&#160;pinot&#160;|&#160;rabbitmq&#160;|&#160;redis&#160;|&#160;statsd&#160;|&#160;trino&#160;|&#160;&#160;&#160;</text><text class="terminal-1930227305-r5" x="1 [...]
+</text><text class="terminal-1930227305-r5" x="0" y="386" textLength="12.2" clip-path="url(#terminal-1930227305-line-15)">│</text><text class="terminal-1930227305-r7" x="353.8" y="386" textLength="1085.8" clip-path="url(#terminal-1930227305-line-15)">all)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
+</text><text class="terminal-1930227305-r5" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-1930227305-line-16)">│</text><text class="terminal-1930227305-r4" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-1930227305-line-16)">-</text><text class="terminal-1930227305-r4" x="36.6" y="410.4" textLength="97.6" clip-path="url(#terminal-1930227305-line-16)">-forward</text><text class="terminal-1930227305-r4" x="134.2" y="410.4" textLength="146.4" clip-path="url(#termi [...]
+</text><text class="terminal-1930227305-r5" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-1930227305-line-17)">│</text><text class="terminal-1930227305-r4" x="24.4" y="434.8" textLength="12.2" clip-path="url(#terminal-1930227305-line-17)">-</text><text class="terminal-1930227305-r4" x="36.6" y="434.8" textLength="36.6" clip-path="url(#terminal-1930227305-line-17)">-db</text><text class="terminal-1930227305-r4" x="73.2" y="434.8" textLength="73.2" clip-path="url(#terminal-193 [...]
+</text><text class="terminal-1930227305-r5" x="0" y="459.2" textLength="1464" clip-path="url(#terminal-1930227305-line-18)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1930227305-r2" x="1464" y="459.2" textLength="12.2" clip-path="url(#terminal-1930227305-line-18)">
+</text><text class="terminal-1930227305-r5" x="0" y="483.6" textLength="24.4" clip-path="url(#terminal-1930227305-line-19)">╭─</text><text class="terminal-1930227305-r5" x="24.4" y="483.6" textLength="1415.2" clip-path="url(#terminal-1930227305-line-19)">&#160;Advanced&#160;flag&#160;for&#160;running&#160;─────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1930227305-r5" x="1439.6" y="483.6" textLength="24.4" clip-path="ur [...]
+</text><text class="terminal-1930227305-r5" x="0" y="508" textLength="12.2" clip-path="url(#terminal-1930227305-line-20)">│</text><text class="terminal-1930227305-r4" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-1930227305-line-20)">-</text><text class="terminal-1930227305-r4" x="36.6" y="508" textLength="48.8" clip-path="url(#terminal-1930227305-line-20)">-use</text><text class="terminal-1930227305-r4" x="85.4" y="508" textLength="195.2" clip-path="url(#terminal-193022730 [...]
+</text><text class="terminal-1930227305-r5" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-1930227305-line-21)">│</text><text class="terminal-1930227305-r2" x="475.8" y="532.4" textLength="963.8" clip-path="url(#terminal-1930227305-line-21)">`wheel`,&#160;or&#160;`sdist`&#160;if&#160;Airflow&#160;should&#160;be&#160;removed,&#160;installed&#160;from&#160;wheel&#160;packages</text><text class="terminal-1930227305-r5" x="1451.8" y="532.4" textLength="12.2" clip-path="url(#termi [...]
+</text><text class="terminal-1930227305-r5" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-1930227305-line-22)">│</text><text class="terminal-1930227305-r2" x="475.8" y="556.8" textLength="963.8" clip-path="url(#terminal-1930227305-line-22)">or&#160;sdist&#160;packages&#160;available&#160;in&#160;dist&#160;folder&#160;respectively.&#160;Implies&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-1930227305-r5"  [...]
+</text><text class="terminal-1930227305-r5" x="0" y="581.2" textLength="12.2" clip-path="url(#terminal-1930227305-line-23)">│</text><text class="terminal-1930227305-r4" x="475.8" y="581.2" textLength="12.2" clip-path="url(#terminal-1930227305-line-23)">-</text><text class="terminal-1930227305-r4" x="488" y="581.2" textLength="73.2" clip-path="url(#terminal-1930227305-line-23)">-mount</text><text class="terminal-1930227305-r4" x="561.2" y="581.2" textLength="97.6" clip-path="url(#terminal [...]
+</text><text class="terminal-1930227305-r5" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-1930227305-line-24)">│</text><text class="terminal-1930227305-r7" x="475.8" y="605.6" textLength="963.8" clip-path="url(#terminal-1930227305-line-24)">(none&#160;|&#160;wheel&#160;|&#160;sdist&#160;|&#160;&lt;airflow_version&gt;)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
+</text><text class="terminal-1930227305-r5" x="0" y="630" textLength="12.2" clip-path="url(#terminal-1930227305-line-25)">│</text><text class="terminal-1930227305-r4" x="24.4" y="630" textLength="12.2" clip-path="url(#terminal-1930227305-line-25)">-</text><text class="terminal-1930227305-r4" x="36.6" y="630" textLength="97.6" clip-path="url(#terminal-1930227305-line-25)">-airflow</text><text class="terminal-1930227305-r4" x="134.2" y="630" textLength="268.4" clip-path="url(#terminal-1930 [...]
+</text><text class="terminal-1930227305-r5" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-1930227305-line-26)">│</text><text class="terminal-1930227305-r2" x="475.8" y="654.4" textLength="963.8" clip-path="url(#terminal-1930227305-line-26)">specify&#160;constraints&#160;for&#160;the&#160;installed&#160;version&#160;and&#160;to&#160;find&#160;newer&#160;dependencies&#160;&#160;&#160;</text><text class="terminal-1930227305-r5" x="1451.8" y="654.4" textLength="12.2" clip-path=" [...]
+</text><text class="terminal-1930227305-r5" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-1930227305-line-27)">│</text><text class="terminal-1930227305-r7" x="475.8" y="678.8" textLength="963.8" clip-path="url(#terminal-1930227305-line-27)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
+</text><text class="terminal-1930227305-r5" x="0" y="703.2" textLength="12.2" clip-path="url(#terminal-1930227305-line-28)">│</text><text class="terminal-1930227305-r4" x="24.4" y="703.2" textLength="12.2" clip-path="url(#terminal-1930227305-line-28)">-</text><text class="terminal-1930227305-r4" x="36.6" y="703.2" textLength="109.8" clip-path="url(#terminal-1930227305-line-28)">-platform</text><text class="terminal-1930227305-r2" x="475.8" y="703.2" textLength="329.4" clip-path="url(#ter [...]
+</text><text class="terminal-1930227305-r5" x="0" y="727.6" textLength="12.2" clip-path="url(#terminal-1930227305-line-29)">│</text><text class="terminal-1930227305-r4" x="24.4" y="727.6" textLength="12.2" clip-path="url(#terminal-1930227305-line-29)">-</text><text class="terminal-1930227305-r4" x="36.6" y="727.6" textLength="97.6" clip-path="url(#terminal-1930227305-line-29)">-airflow</text><text class="terminal-1930227305-r4" x="134.2" y="727.6" textLength="85.4" clip-path="url(#termin [...]
+</text><text class="terminal-1930227305-r5" x="0" y="752" textLength="12.2" clip-path="url(#terminal-1930227305-line-30)">│</text><text class="terminal-1930227305-r4" x="24.4" y="752" textLength="12.2" clip-path="url(#terminal-1930227305-line-30)">-</text><text class="terminal-1930227305-r4" x="36.6" y="752" textLength="48.8" clip-path="url(#terminal-1930227305-line-30)">-use</text><text class="terminal-1930227305-r4" x="85.4" y="752" textLength="231.8" clip-path="url(#terminal-193022730 [...]
+</text><text class="terminal-1930227305-r5" x="0" y="776.4" textLength="12.2" clip-path="url(#terminal-1930227305-line-31)">│</text><text class="terminal-1930227305-r2" x="475.8" y="776.4" textLength="963.8" clip-path="url(#terminal-1930227305-line-31)">folder&#160;when&#160;entering&#160;breeze.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
+</text><text class="terminal-1930227305-r5" x="0" y="800.8" textLength="12.2" clip-path="url(#terminal-1930227305-line-32)">│</text><text class="terminal-1930227305-r4" x="24.4" y="800.8" textLength="12.2" clip-path="url(#terminal-1930227305-line-32)">-</text><text class="terminal-1930227305-r4" x="36.6" y="800.8" textLength="97.6" clip-path="url(#terminal-1930227305-line-32)">-package</text><text class="terminal-1930227305-r4" x="134.2" y="800.8" textLength="85.4" clip-path="url(#termin [...]
+</text><text class="terminal-1930227305-r5" x="0" y="825.2" textLength="12.2" clip-path="url(#terminal-1930227305-line-33)">│</text><text class="terminal-1930227305-r5" x="475.8" y="825.2" textLength="658.8" clip-path="url(#terminal-1930227305-line-33)">[default:&#160;wheel]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-1930227305-r5" x="0" y="849.6" textLength="12.2" clip-path="url(#terminal-1930227305-line-34)">│</text><text class="terminal-1930227305-r4" x="24.4" y="849.6" textLength="12.2" clip-path="url(#terminal-1930227305-line-34)">-</text><text class="terminal-1930227305-r4" x="36.6" y="849.6" textLength="73.2" clip-path="url(#terminal-1930227305-line-34)">-force</text><text class="terminal-1930227305-r4" x="109.8" y="849.6" textLength="73.2" clip-path="url(#terminal [...]
+</text><text class="terminal-1930227305-r5" x="0" y="874" textLength="12.2" clip-path="url(#terminal-1930227305-line-35)">│</text><text class="terminal-1930227305-r4" x="24.4" y="874" textLength="12.2" clip-path="url(#terminal-1930227305-line-35)">-</text><text class="terminal-1930227305-r4" x="36.6" y="874" textLength="73.2" clip-path="url(#terminal-1930227305-line-35)">-image</text><text class="terminal-1930227305-r4" x="109.8" y="874" textLength="48.8" clip-path="url(#terminal-1930227 [...]
+</text><text class="terminal-1930227305-r5" x="0" y="898.4" textLength="12.2" clip-path="url(#terminal-1930227305-line-36)">│</text><text class="terminal-1930227305-r7" x="475.8" y="898.4" textLength="963.8" clip-path="url(#terminal-1930227305-line-36)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
+</text><text class="terminal-1930227305-r5" x="0" y="922.8" textLength="12.2" clip-path="url(#terminal-1930227305-line-37)">│</text><text class="terminal-1930227305-r5" x="475.8" y="922.8" textLength="963.8" clip-path="url(#terminal-1930227305-line-37)">[default:&#160;latest]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
+</text><text class="terminal-1930227305-r5" x="0" y="947.2" textLength="12.2" clip-path="url(#terminal-1930227305-line-38)">│</text><text class="terminal-1930227305-r4" x="24.4" y="947.2" textLength="12.2" clip-path="url(#terminal-1930227305-line-38)">-</text><text class="terminal-1930227305-r4" x="36.6" y="947.2" textLength="73.2" clip-path="url(#terminal-1930227305-line-38)">-mount</text><text class="terminal-1930227305-r4" x="109.8" y="947.2" textLength="97.6" clip-path="url(#terminal [...]
+</text><text class="terminal-1930227305-r5" x="0" y="971.6" textLength="12.2" clip-path="url(#terminal-1930227305-line-39)">│</text><text class="terminal-1930227305-r2" x="475.8" y="971.6" textLength="963.8" clip-path="url(#terminal-1930227305-line-39)">(default&#160;=&#160;selected).&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
+</text><text class="terminal-1930227305-r5" x="0" y="996" textLength="12.2" clip-path="url(#terminal-1930227305-line-40)">│</text><text class="terminal-1930227305-r7" x="475.8" y="996" textLength="963.8" clip-path="url(#terminal-1930227305-line-40)">(selected&#160;|&#160;all&#160;|&#160;skip&#160;|&#160;remove)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
+</text><text class="terminal-1930227305-r5" x="0" y="1020.4" textLength="12.2" clip-path="url(#terminal-1930227305-line-41)">│</text><text class="terminal-1930227305-r5" x="475.8" y="1020.4" textLength="963.8" clip-path="url(#terminal-1930227305-line-41)">[default:&#160;selected]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
+</text><text class="terminal-1930227305-r5" x="0" y="1044.8" textLength="12.2" clip-path="url(#terminal-1930227305-line-42)">│</text><text class="terminal-1930227305-r4" x="24.4" y="1044.8" textLength="12.2" clip-path="url(#terminal-1930227305-line-42)">-</text><text class="terminal-1930227305-r4" x="36.6" y="1044.8" textLength="97.6" clip-path="url(#terminal-1930227305-line-42)">-include</text><text class="terminal-1930227305-r4" x="134.2" y="1044.8" textLength="146.4" clip-path="url(#t [...]
+</text><text class="terminal-1930227305-r5" x="0" y="1069.2" textLength="1464" clip-path="url(#terminal-1930227305-line-43)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1930227305-r2" x="1464" y="1069.2" textLength="12.2" clip-path="url(#terminal-1930227305-line-43)">
+</text><text class="terminal-1930227305-r5" x="0" y="1093.6" textLength="24.4" clip-path="url(#terminal-1930227305-line-44)">╭─</text><text class="terminal-1930227305-r5" x="24.4" y="1093.6" textLength="1415.2" clip-path="url(#terminal-1930227305-line-44)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-1930227305-r5" x="1439.6" y="1093.6" textLength="24.4" clip-path="url(#term [...]
+</text><text class="terminal-1930227305-r5" x="0" y="1118" textLength="12.2" clip-path="url(#terminal-1930227305-line-45)">│</text><text class="terminal-1930227305-r4" x="24.4" y="1118" textLength="12.2" clip-path="url(#terminal-1930227305-line-45)">-</text><text class="terminal-1930227305-r4" x="36.6" y="1118" textLength="97.6" clip-path="url(#terminal-1930227305-line-45)">-verbose</text><text class="terminal-1930227305-r6" x="280.6" y="1118" textLength="24.4" clip-path="url(#terminal-1 [...]
+</text><text class="terminal-1930227305-r5" x="0" y="1142.4" textLength="12.2" clip-path="url(#terminal-1930227305-line-46)">│</text><text class="terminal-1930227305-r4" x="24.4" y="1142.4" textLength="12.2" clip-path="url(#terminal-1930227305-line-46)">-</text><text class="terminal-1930227305-r4" x="36.6" y="1142.4" textLength="48.8" clip-path="url(#terminal-1930227305-line-46)">-dry</text><text class="terminal-1930227305-r4" x="85.4" y="1142.4" textLength="48.8" clip-path="url(#termina [...]
+</text><text class="terminal-1930227305-r5" x="0" y="1166.8" textLength="12.2" clip-path="url(#terminal-1930227305-line-47)">│</text><text class="terminal-1930227305-r4" x="24.4" y="1166.8" textLength="12.2" clip-path="url(#terminal-1930227305-line-47)">-</text><text class="terminal-1930227305-r4" x="36.6" y="1166.8" textLength="85.4" clip-path="url(#terminal-1930227305-line-47)">-github</text><text class="terminal-1930227305-r4" x="122" y="1166.8" textLength="134.2" clip-path="url(#term [...]
+</text><text class="terminal-1930227305-r5" x="0" y="1191.2" textLength="12.2" clip-path="url(#terminal-1930227305-line-48)">│</text><text class="terminal-1930227305-r4" x="24.4" y="1191.2" textLength="12.2" clip-path="url(#terminal-1930227305-line-48)">-</text><text class="terminal-1930227305-r4" x="36.6" y="1191.2" textLength="85.4" clip-path="url(#terminal-1930227305-line-48)">-answer</text><text class="terminal-1930227305-r6" x="280.6" y="1191.2" textLength="24.4" clip-path="url(#ter [...]
+</text><text class="terminal-1930227305-r5" x="0" y="1215.6" textLength="12.2" clip-path="url(#terminal-1930227305-line-49)">│</text><text class="terminal-1930227305-r4" x="24.4" y="1215.6" textLength="12.2" clip-path="url(#terminal-1930227305-line-49)">-</text><text class="terminal-1930227305-r4" x="36.6" y="1215.6" textLength="48.8" clip-path="url(#terminal-1930227305-line-49)">-max</text><text class="terminal-1930227305-r4" x="85.4" y="1215.6" textLength="61" clip-path="url(#terminal- [...]
+</text><text class="terminal-1930227305-r5" x="0" y="1240" textLength="12.2" clip-path="url(#terminal-1930227305-line-50)">│</text><text class="terminal-1930227305-r7" x="329.4" y="1240" textLength="1049.2" clip-path="url(#terminal-1930227305-line-50)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
+</text><text class="terminal-1930227305-r5" x="0" y="1264.4" textLength="12.2" clip-path="url(#terminal-1930227305-line-51)">│</text><text class="terminal-1930227305-r4" x="24.4" y="1264.4" textLength="12.2" clip-path="url(#terminal-1930227305-line-51)">-</text><text class="terminal-1930227305-r4" x="36.6" y="1264.4" textLength="61" clip-path="url(#terminal-1930227305-line-51)">-help</text><text class="terminal-1930227305-r6" x="280.6" y="1264.4" textLength="24.4" clip-path="url(#termina [...]
+</text><text class="terminal-1930227305-r5" x="0" y="1288.8" textLength="1464" clip-path="url(#terminal-1930227305-line-52)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-1930227305-r2" x="1464" y="1288.8" textLength="12.2" clip-path="url(#terminal-1930227305-line-52)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_start-airflow.svg b/images/breeze/output_start-airflow.svg
index 82317dd6ad..b344ca1f1b 100644
--- a/images/breeze/output_start-airflow.svg
+++ b/images/breeze/output_start-airflow.svg
@@ -19,277 +19,277 @@
         font-weight: 700;
     }
 
-    .terminal-2829072632-matrix {
+    .terminal-2991470999-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-2829072632-title {
+    .terminal-2991470999-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-2829072632-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-2829072632-r2 { fill: #c5c8c6 }
-.terminal-2829072632-r3 { fill: #d0b344;font-weight: bold }
-.terminal-2829072632-r4 { fill: #868887 }
-.terminal-2829072632-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-2829072632-r6 { fill: #98a84b;font-weight: bold }
-.terminal-2829072632-r7 { fill: #8d7b39 }
+    .terminal-2991470999-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-2991470999-r2 { fill: #c5c8c6 }
+.terminal-2991470999-r3 { fill: #d0b344;font-weight: bold }
+.terminal-2991470999-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-2991470999-r5 { fill: #868887 }
+.terminal-2991470999-r6 { fill: #98a84b;font-weight: bold }
+.terminal-2991470999-r7 { fill: #8d7b39 }
     </style>
 
     <defs>
-    <clipPath id="terminal-2829072632-clip-terminal">
+    <clipPath id="terminal-2991470999-clip-terminal">
       <rect x="0" y="0" width="1463.0" height="1438.6" />
     </clipPath>
-    <clipPath id="terminal-2829072632-line-0">
+    <clipPath id="terminal-2991470999-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-1">
+<clipPath id="terminal-2991470999-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-2">
+<clipPath id="terminal-2991470999-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-3">
+<clipPath id="terminal-2991470999-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-4">
+<clipPath id="terminal-2991470999-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-5">
+<clipPath id="terminal-2991470999-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-6">
+<clipPath id="terminal-2991470999-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-7">
+<clipPath id="terminal-2991470999-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-8">
+<clipPath id="terminal-2991470999-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-9">
+<clipPath id="terminal-2991470999-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-10">
+<clipPath id="terminal-2991470999-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-11">
+<clipPath id="terminal-2991470999-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-12">
+<clipPath id="terminal-2991470999-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-13">
+<clipPath id="terminal-2991470999-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-14">
+<clipPath id="terminal-2991470999-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-15">
+<clipPath id="terminal-2991470999-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-16">
+<clipPath id="terminal-2991470999-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-17">
+<clipPath id="terminal-2991470999-line-17">
     <rect x="0" y="416.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-18">
+<clipPath id="terminal-2991470999-line-18">
     <rect x="0" y="440.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-19">
+<clipPath id="terminal-2991470999-line-19">
     <rect x="0" y="465.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-20">
+<clipPath id="terminal-2991470999-line-20">
     <rect x="0" y="489.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-21">
+<clipPath id="terminal-2991470999-line-21">
     <rect x="0" y="513.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-22">
+<clipPath id="terminal-2991470999-line-22">
     <rect x="0" y="538.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-23">
+<clipPath id="terminal-2991470999-line-23">
     <rect x="0" y="562.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-24">
+<clipPath id="terminal-2991470999-line-24">
     <rect x="0" y="587.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-25">
+<clipPath id="terminal-2991470999-line-25">
     <rect x="0" y="611.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-26">
+<clipPath id="terminal-2991470999-line-26">
     <rect x="0" y="635.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-27">
+<clipPath id="terminal-2991470999-line-27">
     <rect x="0" y="660.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-28">
+<clipPath id="terminal-2991470999-line-28">
     <rect x="0" y="684.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-29">
+<clipPath id="terminal-2991470999-line-29">
     <rect x="0" y="709.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-30">
+<clipPath id="terminal-2991470999-line-30">
     <rect x="0" y="733.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-31">
+<clipPath id="terminal-2991470999-line-31">
     <rect x="0" y="757.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-32">
+<clipPath id="terminal-2991470999-line-32">
     <rect x="0" y="782.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-33">
+<clipPath id="terminal-2991470999-line-33">
     <rect x="0" y="806.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-34">
+<clipPath id="terminal-2991470999-line-34">
     <rect x="0" y="831.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-35">
+<clipPath id="terminal-2991470999-line-35">
     <rect x="0" y="855.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-36">
+<clipPath id="terminal-2991470999-line-36">
     <rect x="0" y="879.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-37">
+<clipPath id="terminal-2991470999-line-37">
     <rect x="0" y="904.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-38">
+<clipPath id="terminal-2991470999-line-38">
     <rect x="0" y="928.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-39">
+<clipPath id="terminal-2991470999-line-39">
     <rect x="0" y="953.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-40">
+<clipPath id="terminal-2991470999-line-40">
     <rect x="0" y="977.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-41">
+<clipPath id="terminal-2991470999-line-41">
     <rect x="0" y="1001.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-42">
+<clipPath id="terminal-2991470999-line-42">
     <rect x="0" y="1026.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-43">
+<clipPath id="terminal-2991470999-line-43">
     <rect x="0" y="1050.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-44">
+<clipPath id="terminal-2991470999-line-44">
     <rect x="0" y="1075.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-45">
+<clipPath id="terminal-2991470999-line-45">
     <rect x="0" y="1099.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-46">
+<clipPath id="terminal-2991470999-line-46">
     <rect x="0" y="1123.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-47">
+<clipPath id="terminal-2991470999-line-47">
     <rect x="0" y="1148.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-48">
+<clipPath id="terminal-2991470999-line-48">
     <rect x="0" y="1172.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-49">
+<clipPath id="terminal-2991470999-line-49">
     <rect x="0" y="1197.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-50">
+<clipPath id="terminal-2991470999-line-50">
     <rect x="0" y="1221.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-51">
+<clipPath id="terminal-2991470999-line-51">
     <rect x="0" y="1245.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-52">
+<clipPath id="terminal-2991470999-line-52">
     <rect x="0" y="1270.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-53">
+<clipPath id="terminal-2991470999-line-53">
     <rect x="0" y="1294.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-54">
+<clipPath id="terminal-2991470999-line-54">
     <rect x="0" y="1319.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-55">
+<clipPath id="terminal-2991470999-line-55">
     <rect x="0" y="1343.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-56">
+<clipPath id="terminal-2991470999-line-56">
     <rect x="0" y="1367.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2829072632-line-57">
+<clipPath id="terminal-2991470999-line-57">
     <rect x="0" y="1392.3" width="1464" height="24.65"/>
             </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="1487.6" rx="8"/><text class="terminal-2829072632-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;start-airflow</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="1487.6" rx="8"/><text class="terminal-2991470999-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;start-airflow</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-2829072632-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-2991470999-clip-terminal)">
     
-    <g class="terminal-2829072632-matrix">
-    <text class="terminal-2829072632-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-2829072632-line-0)">
-</text><text class="terminal-2829072632-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-2829072632-line-1)">Usage:&#160;</text><text class="terminal-2829072632-r1" x="97.6" y="44.4" textLength="561.2" clip-path="url(#terminal-2829072632-line-1)">breeze&#160;start-airflow&#160;[OPTIONS]&#160;[EXTRA_ARGS]...</text><text class="terminal-2829072632-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-2829072632-line-1)">
-</text><text class="terminal-2829072632-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-2829072632-line-2)">
-</text><text class="terminal-2829072632-r2" x="12.2" y="93.2" textLength="1390.8" clip-path="url(#terminal-2829072632-line-3)">Enter&#160;breeze&#160;environment&#160;and&#160;starts&#160;all&#160;Airflow&#160;components&#160;in&#160;the&#160;tmux&#160;session.&#160;Compile&#160;assets&#160;if&#160;contents&#160;of&#160;www&#160;</text><text class="terminal-2829072632-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-2829072632-line-3)">
-</text><text class="terminal-2829072632-r2" x="12.2" y="117.6" textLength="219.6" clip-path="url(#terminal-2829072632-line-4)">directory&#160;changed.</text><text class="terminal-2829072632-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-2829072632-line-4)">
-</text><text class="terminal-2829072632-r2" x="1464" y="142" textLength="12.2" clip-path="url(#terminal-2829072632-line-5)">
-</text><text class="terminal-2829072632-r4" x="0" y="166.4" textLength="24.4" clip-path="url(#terminal-2829072632-line-6)">╭─</text><text class="terminal-2829072632-r4" x="24.4" y="166.4" textLength="1415.2" clip-path="url(#terminal-2829072632-line-6)">&#160;Basic&#160;flags&#160;───────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2829072632-r4" x="1439.6" y="166.4" textLength="24.4" clip-path="url(#terminal- [...]
-</text><text class="terminal-2829072632-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-2829072632-line-7)">│</text><text class="terminal-2829072632-r5" x="24.4" y="190.8" textLength="12.2" clip-path="url(#terminal-2829072632-line-7)">-</text><text class="terminal-2829072632-r5" x="36.6" y="190.8" textLength="85.4" clip-path="url(#terminal-2829072632-line-7)">-python</text><text class="terminal-2829072632-r6" x="366" y="190.8" textLength="24.4" clip-path="url(#terminal-282 [...]
-</text><text class="terminal-2829072632-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-2829072632-line-8)">│</text><text class="terminal-2829072632-r7" x="414.8" y="215.2" textLength="732" clip-path="url(#terminal-2829072632-line-8)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
-</text><text class="terminal-2829072632-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-2829072632-line-9)">│</text><text class="terminal-2829072632-r4" x="414.8" y="239.6" textLength="732" clip-path="url(#terminal-2829072632-line-9)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-2829072632-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-2829072632-line-10)">│</text><text class="terminal-2829072632-r5" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-2829072632-line-10)">-</text><text class="terminal-2829072632-r5" x="36.6" y="264" textLength="61" clip-path="url(#terminal-2829072632-line-10)">-load</text><text class="terminal-2829072632-r5" x="97.6" y="264" textLength="158.6" clip-path="url(#terminal-2829072632 [...]
-</text><text class="terminal-2829072632-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-2829072632-line-11)">│</text><text class="terminal-2829072632-r5" x="24.4" y="288.4" textLength="12.2" clip-path="url(#terminal-2829072632-line-11)">-</text><text class="terminal-2829072632-r5" x="36.6" y="288.4" textLength="61" clip-path="url(#terminal-2829072632-line-11)">-load</text><text class="terminal-2829072632-r5" x="97.6" y="288.4" textLength="244" clip-path="url(#terminal-2829 [...]
-</text><text class="terminal-2829072632-r4" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-2829072632-line-12)">│</text><text class="terminal-2829072632-r5" x="24.4" y="312.8" textLength="12.2" clip-path="url(#terminal-2829072632-line-12)">-</text><text class="terminal-2829072632-r5" x="36.6" y="312.8" textLength="97.6" clip-path="url(#terminal-2829072632-line-12)">-backend</text><text class="terminal-2829072632-r6" x="366" y="312.8" textLength="24.4" clip-path="url(#terminal [...]
-</text><text class="terminal-2829072632-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-2829072632-line-13)">│</text><text class="terminal-2829072632-r5" x="24.4" y="337.2" textLength="12.2" clip-path="url(#terminal-2829072632-line-13)">-</text><text class="terminal-2829072632-r5" x="36.6" y="337.2" textLength="109.8" clip-path="url(#terminal-2829072632-line-13)">-platform</text><text class="terminal-2829072632-r2" x="414.8" y="337.2" textLength="329.4" clip-path="url(#ter [...]
-</text><text class="terminal-2829072632-r4" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-2829072632-line-14)">│</text><text class="terminal-2829072632-r5" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-2829072632-line-14)">-</text><text class="terminal-2829072632-r5" x="36.6" y="361.6" textLength="109.8" clip-path="url(#terminal-2829072632-line-14)">-postgres</text><text class="terminal-2829072632-r5" x="146.4" y="361.6" textLength="97.6" clip-path="url(#term [...]
-</text><text class="terminal-2829072632-r4" x="0" y="386" textLength="12.2" clip-path="url(#terminal-2829072632-line-15)">│</text><text class="terminal-2829072632-r5" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-2829072632-line-15)">-</text><text class="terminal-2829072632-r5" x="36.6" y="386" textLength="73.2" clip-path="url(#terminal-2829072632-line-15)">-mysql</text><text class="terminal-2829072632-r5" x="109.8" y="386" textLength="97.6" clip-path="url(#terminal-2829072 [...]
-</text><text class="terminal-2829072632-r4" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-2829072632-line-16)">│</text><text class="terminal-2829072632-r5" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-2829072632-line-16)">-</text><text class="terminal-2829072632-r5" x="36.6" y="410.4" textLength="73.2" clip-path="url(#terminal-2829072632-line-16)">-mssql</text><text class="terminal-2829072632-r5" x="109.8" y="410.4" textLength="97.6" clip-path="url(#terminal [...]
-</text><text class="terminal-2829072632-r4" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-2829072632-line-17)">│</text><text class="terminal-2829072632-r5" x="24.4" y="434.8" textLength="12.2" clip-path="url(#terminal-2829072632-line-17)">-</text><text class="terminal-2829072632-r5" x="36.6" y="434.8" textLength="146.4" clip-path="url(#terminal-2829072632-line-17)">-integration</text><text class="terminal-2829072632-r2" x="414.8" y="434.8" textLength="1024.8" clip-path="url( [...]
-</text><text class="terminal-2829072632-r4" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-2829072632-line-18)">│</text><text class="terminal-2829072632-r7" x="414.8" y="459.2" textLength="1024.8" clip-path="url(#terminal-2829072632-line-18)">(cassandra&#160;|&#160;kerberos&#160;|&#160;mongo&#160;|&#160;openldap&#160;|&#160;pinot&#160;|&#160;rabbitmq&#160;|&#160;redis&#160;|&#160;statsd&#160;|&#160;trino</text><text class="terminal-2829072632-r4" x="1451.8" y="459.2" textLeng [...]
-</text><text class="terminal-2829072632-r4" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-2829072632-line-19)">│</text><text class="terminal-2829072632-r7" x="414.8" y="483.6" textLength="1024.8" clip-path="url(#terminal-2829072632-line-19)">|&#160;all)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
-</text><text class="terminal-2829072632-r4" x="0" y="508" textLength="12.2" clip-path="url(#terminal-2829072632-line-20)">│</text><text class="terminal-2829072632-r5" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-2829072632-line-20)">-</text><text class="terminal-2829072632-r5" x="36.6" y="508" textLength="97.6" clip-path="url(#terminal-2829072632-line-20)">-forward</text><text class="terminal-2829072632-r5" x="134.2" y="508" textLength="146.4" clip-path="url(#terminal-2829 [...]
-</text><text class="terminal-2829072632-r4" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-2829072632-line-21)">│</text><text class="terminal-2829072632-r5" x="24.4" y="532.4" textLength="12.2" clip-path="url(#terminal-2829072632-line-21)">-</text><text class="terminal-2829072632-r5" x="36.6" y="532.4" textLength="36.6" clip-path="url(#terminal-2829072632-line-21)">-db</text><text class="terminal-2829072632-r5" x="73.2" y="532.4" textLength="73.2" clip-path="url(#terminal-282 [...]
-</text><text class="terminal-2829072632-r4" x="0" y="556.8" textLength="1464" clip-path="url(#terminal-2829072632-line-22)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2829072632-r2" x="1464" y="556.8" textLength="12.2" clip-path="url(#terminal-2829072632-line-22)">
-</text><text class="terminal-2829072632-r4" x="0" y="581.2" textLength="24.4" clip-path="url(#terminal-2829072632-line-23)">╭─</text><text class="terminal-2829072632-r4" x="24.4" y="581.2" textLength="1415.2" clip-path="url(#terminal-2829072632-line-23)">&#160;Asset&#160;compilation&#160;options&#160;─────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2829072632-r4" x="1439.6" y="581.2" textLength="24.4" clip-path="url(#te [...]
-</text><text class="terminal-2829072632-r4" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-2829072632-line-24)">│</text><text class="terminal-2829072632-r5" x="24.4" y="605.6" textLength="12.2" clip-path="url(#terminal-2829072632-line-24)">-</text><text class="terminal-2829072632-r5" x="36.6" y="605.6" textLength="61" clip-path="url(#terminal-2829072632-line-24)">-skip</text><text class="terminal-2829072632-r5" x="97.6" y="605.6" textLength="219.6" clip-path="url(#terminal-28 [...]
-</text><text class="terminal-2829072632-r4" x="0" y="630" textLength="12.2" clip-path="url(#terminal-2829072632-line-25)">│</text><text class="terminal-2829072632-r2" x="366" y="630" textLength="305" clip-path="url(#terminal-2829072632-line-25)">(mutually&#160;exclusive&#160;with&#160;</text><text class="terminal-2829072632-r5" x="671" y="630" textLength="12.2" clip-path="url(#terminal-2829072632-line-25)">-</text><text class="terminal-2829072632-r5" x="683.2" y="630" textLength="48.8" c [...]
-</text><text class="terminal-2829072632-r4" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-2829072632-line-26)">│</text><text class="terminal-2829072632-r5" x="24.4" y="654.4" textLength="12.2" clip-path="url(#terminal-2829072632-line-26)">-</text><text class="terminal-2829072632-r5" x="36.6" y="654.4" textLength="48.8" clip-path="url(#terminal-2829072632-line-26)">-dev</text><text class="terminal-2829072632-r5" x="85.4" y="654.4" textLength="61" clip-path="url(#terminal-2829 [...]
-</text><text class="terminal-2829072632-r4" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-2829072632-line-27)">│</text><text class="terminal-2829072632-r2" x="366" y="678.8" textLength="305" clip-path="url(#terminal-2829072632-line-27)">(mutually&#160;exclusive&#160;with&#160;</text><text class="terminal-2829072632-r5" x="671" y="678.8" textLength="12.2" clip-path="url(#terminal-2829072632-line-27)">-</text><text class="terminal-2829072632-r5" x="683.2" y="678.8" textLength= [...]
-</text><text class="terminal-2829072632-r4" x="0" y="703.2" textLength="1464" clip-path="url(#terminal-2829072632-line-28)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2829072632-r2" x="1464" y="703.2" textLength="12.2" clip-path="url(#terminal-2829072632-line-28)">
-</text><text class="terminal-2829072632-r4" x="0" y="727.6" textLength="24.4" clip-path="url(#terminal-2829072632-line-29)">╭─</text><text class="terminal-2829072632-r4" x="24.4" y="727.6" textLength="1415.2" clip-path="url(#terminal-2829072632-line-29)">&#160;Advanced&#160;flag&#160;for&#160;running&#160;─────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2829072632-r4" x="1439.6" y="727.6" textLength="24.4" clip-path="ur [...]
-</text><text class="terminal-2829072632-r4" x="0" y="752" textLength="12.2" clip-path="url(#terminal-2829072632-line-30)">│</text><text class="terminal-2829072632-r5" x="24.4" y="752" textLength="12.2" clip-path="url(#terminal-2829072632-line-30)">-</text><text class="terminal-2829072632-r5" x="36.6" y="752" textLength="48.8" clip-path="url(#terminal-2829072632-line-30)">-use</text><text class="terminal-2829072632-r5" x="85.4" y="752" textLength="195.2" clip-path="url(#terminal-282907263 [...]
-</text><text class="terminal-2829072632-r4" x="0" y="776.4" textLength="12.2" clip-path="url(#terminal-2829072632-line-31)">│</text><text class="terminal-2829072632-r2" x="475.8" y="776.4" textLength="963.8" clip-path="url(#terminal-2829072632-line-31)">`wheel`,&#160;or&#160;`sdist`&#160;if&#160;Airflow&#160;should&#160;be&#160;removed,&#160;installed&#160;from&#160;wheel&#160;packages</text><text class="terminal-2829072632-r4" x="1451.8" y="776.4" textLength="12.2" clip-path="url(#termi [...]
-</text><text class="terminal-2829072632-r4" x="0" y="800.8" textLength="12.2" clip-path="url(#terminal-2829072632-line-32)">│</text><text class="terminal-2829072632-r2" x="475.8" y="800.8" textLength="963.8" clip-path="url(#terminal-2829072632-line-32)">or&#160;sdist&#160;packages&#160;available&#160;in&#160;dist&#160;folder&#160;respectively.&#160;Implies&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-2829072632-r4"  [...]
-</text><text class="terminal-2829072632-r4" x="0" y="825.2" textLength="12.2" clip-path="url(#terminal-2829072632-line-33)">│</text><text class="terminal-2829072632-r5" x="475.8" y="825.2" textLength="12.2" clip-path="url(#terminal-2829072632-line-33)">-</text><text class="terminal-2829072632-r5" x="488" y="825.2" textLength="73.2" clip-path="url(#terminal-2829072632-line-33)">-mount</text><text class="terminal-2829072632-r5" x="561.2" y="825.2" textLength="97.6" clip-path="url(#terminal [...]
-</text><text class="terminal-2829072632-r4" x="0" y="849.6" textLength="12.2" clip-path="url(#terminal-2829072632-line-34)">│</text><text class="terminal-2829072632-r7" x="475.8" y="849.6" textLength="963.8" clip-path="url(#terminal-2829072632-line-34)">(none&#160;|&#160;wheel&#160;|&#160;sdist&#160;|&#160;&lt;airflow_version&gt;)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
-</text><text class="terminal-2829072632-r4" x="0" y="874" textLength="12.2" clip-path="url(#terminal-2829072632-line-35)">│</text><text class="terminal-2829072632-r5" x="24.4" y="874" textLength="12.2" clip-path="url(#terminal-2829072632-line-35)">-</text><text class="terminal-2829072632-r5" x="36.6" y="874" textLength="97.6" clip-path="url(#terminal-2829072632-line-35)">-airflow</text><text class="terminal-2829072632-r5" x="134.2" y="874" textLength="268.4" clip-path="url(#terminal-2829 [...]
-</text><text class="terminal-2829072632-r4" x="0" y="898.4" textLength="12.2" clip-path="url(#terminal-2829072632-line-36)">│</text><text class="terminal-2829072632-r2" x="475.8" y="898.4" textLength="963.8" clip-path="url(#terminal-2829072632-line-36)">specify&#160;constraints&#160;for&#160;the&#160;installed&#160;version&#160;and&#160;to&#160;find&#160;newer&#160;dependencies&#160;&#160;&#160;</text><text class="terminal-2829072632-r4" x="1451.8" y="898.4" textLength="12.2" clip-path=" [...]
-</text><text class="terminal-2829072632-r4" x="0" y="922.8" textLength="12.2" clip-path="url(#terminal-2829072632-line-37)">│</text><text class="terminal-2829072632-r7" x="475.8" y="922.8" textLength="963.8" clip-path="url(#terminal-2829072632-line-37)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
-</text><text class="terminal-2829072632-r4" x="0" y="947.2" textLength="12.2" clip-path="url(#terminal-2829072632-line-38)">│</text><text class="terminal-2829072632-r5" x="24.4" y="947.2" textLength="12.2" clip-path="url(#terminal-2829072632-line-38)">-</text><text class="terminal-2829072632-r5" x="36.6" y="947.2" textLength="97.6" clip-path="url(#terminal-2829072632-line-38)">-airflow</text><text class="terminal-2829072632-r5" x="134.2" y="947.2" textLength="85.4" clip-path="url(#termin [...]
-</text><text class="terminal-2829072632-r4" x="0" y="971.6" textLength="12.2" clip-path="url(#terminal-2829072632-line-39)">│</text><text class="terminal-2829072632-r5" x="24.4" y="971.6" textLength="12.2" clip-path="url(#terminal-2829072632-line-39)">-</text><text class="terminal-2829072632-r5" x="36.6" y="971.6" textLength="48.8" clip-path="url(#terminal-2829072632-line-39)">-use</text><text class="terminal-2829072632-r5" x="85.4" y="971.6" textLength="231.8" clip-path="url(#terminal-2 [...]
-</text><text class="terminal-2829072632-r4" x="0" y="996" textLength="12.2" clip-path="url(#terminal-2829072632-line-40)">│</text><text class="terminal-2829072632-r2" x="475.8" y="996" textLength="963.8" clip-path="url(#terminal-2829072632-line-40)">folder&#160;when&#160;entering&#160;breeze.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-2829072632-r4" x="0" y="1020.4" textLength="12.2" clip-path="url(#terminal-2829072632-line-41)">│</text><text class="terminal-2829072632-r5" x="24.4" y="1020.4" textLength="12.2" clip-path="url(#terminal-2829072632-line-41)">-</text><text class="terminal-2829072632-r5" x="36.6" y="1020.4" textLength="97.6" clip-path="url(#terminal-2829072632-line-41)">-package</text><text class="terminal-2829072632-r5" x="134.2" y="1020.4" textLength="85.4" clip-path="url(#te [...]
-</text><text class="terminal-2829072632-r4" x="0" y="1044.8" textLength="12.2" clip-path="url(#terminal-2829072632-line-42)">│</text><text class="terminal-2829072632-r4" x="475.8" y="1044.8" textLength="658.8" clip-path="url(#terminal-2829072632-line-42)">[default:&#160;wheel]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
-</text><text class="terminal-2829072632-r4" x="0" y="1069.2" textLength="12.2" clip-path="url(#terminal-2829072632-line-43)">│</text><text class="terminal-2829072632-r5" x="24.4" y="1069.2" textLength="12.2" clip-path="url(#terminal-2829072632-line-43)">-</text><text class="terminal-2829072632-r5" x="36.6" y="1069.2" textLength="73.2" clip-path="url(#terminal-2829072632-line-43)">-force</text><text class="terminal-2829072632-r5" x="109.8" y="1069.2" textLength="73.2" clip-path="url(#term [...]
-</text><text class="terminal-2829072632-r4" x="0" y="1093.6" textLength="12.2" clip-path="url(#terminal-2829072632-line-44)">│</text><text class="terminal-2829072632-r5" x="24.4" y="1093.6" textLength="12.2" clip-path="url(#terminal-2829072632-line-44)">-</text><text class="terminal-2829072632-r5" x="36.6" y="1093.6" textLength="73.2" clip-path="url(#terminal-2829072632-line-44)">-image</text><text class="terminal-2829072632-r5" x="109.8" y="1093.6" textLength="48.8" clip-path="url(#term [...]
-</text><text class="terminal-2829072632-r4" x="0" y="1118" textLength="12.2" clip-path="url(#terminal-2829072632-line-45)">│</text><text class="terminal-2829072632-r7" x="475.8" y="1118" textLength="963.8" clip-path="url(#terminal-2829072632-line-45)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
-</text><text class="terminal-2829072632-r4" x="0" y="1142.4" textLength="12.2" clip-path="url(#terminal-2829072632-line-46)">│</text><text class="terminal-2829072632-r4" x="475.8" y="1142.4" textLength="963.8" clip-path="url(#terminal-2829072632-line-46)">[default:&#160;latest]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
-</text><text class="terminal-2829072632-r4" x="0" y="1166.8" textLength="12.2" clip-path="url(#terminal-2829072632-line-47)">│</text><text class="terminal-2829072632-r5" x="24.4" y="1166.8" textLength="12.2" clip-path="url(#terminal-2829072632-line-47)">-</text><text class="terminal-2829072632-r5" x="36.6" y="1166.8" textLength="73.2" clip-path="url(#terminal-2829072632-line-47)">-mount</text><text class="terminal-2829072632-r5" x="109.8" y="1166.8" textLength="97.6" clip-path="url(#term [...]
-</text><text class="terminal-2829072632-r4" x="0" y="1191.2" textLength="12.2" clip-path="url(#terminal-2829072632-line-48)">│</text><text class="terminal-2829072632-r2" x="475.8" y="1191.2" textLength="963.8" clip-path="url(#terminal-2829072632-line-48)">(default&#160;=&#160;selected).&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-2829072632-r4" x="0" y="1215.6" textLength="12.2" clip-path="url(#terminal-2829072632-line-49)">│</text><text class="terminal-2829072632-r7" x="475.8" y="1215.6" textLength="963.8" clip-path="url(#terminal-2829072632-line-49)">(selected&#160;|&#160;all&#160;|&#160;skip&#160;|&#160;remove)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
-</text><text class="terminal-2829072632-r4" x="0" y="1240" textLength="12.2" clip-path="url(#terminal-2829072632-line-50)">│</text><text class="terminal-2829072632-r4" x="475.8" y="1240" textLength="963.8" clip-path="url(#terminal-2829072632-line-50)">[default:&#160;selected]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
-</text><text class="terminal-2829072632-r4" x="0" y="1264.4" textLength="1464" clip-path="url(#terminal-2829072632-line-51)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2829072632-r2" x="1464" y="1264.4" textLength="12.2" clip-path="url(#terminal-2829072632-line-51)">
-</text><text class="terminal-2829072632-r4" x="0" y="1288.8" textLength="24.4" clip-path="url(#terminal-2829072632-line-52)">╭─</text><text class="terminal-2829072632-r4" x="24.4" y="1288.8" textLength="1415.2" clip-path="url(#terminal-2829072632-line-52)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2829072632-r4" x="1439.6" y="1288.8" textLength="24.4" clip-path="url(#term [...]
-</text><text class="terminal-2829072632-r4" x="0" y="1313.2" textLength="12.2" clip-path="url(#terminal-2829072632-line-53)">│</text><text class="terminal-2829072632-r5" x="24.4" y="1313.2" textLength="12.2" clip-path="url(#terminal-2829072632-line-53)">-</text><text class="terminal-2829072632-r5" x="36.6" y="1313.2" textLength="48.8" clip-path="url(#terminal-2829072632-line-53)">-dry</text><text class="terminal-2829072632-r5" x="85.4" y="1313.2" textLength="48.8" clip-path="url(#termina [...]
-</text><text class="terminal-2829072632-r4" x="0" y="1337.6" textLength="12.2" clip-path="url(#terminal-2829072632-line-54)">│</text><text class="terminal-2829072632-r5" x="24.4" y="1337.6" textLength="12.2" clip-path="url(#terminal-2829072632-line-54)">-</text><text class="terminal-2829072632-r5" x="36.6" y="1337.6" textLength="85.4" clip-path="url(#terminal-2829072632-line-54)">-github</text><text class="terminal-2829072632-r5" x="122" y="1337.6" textLength="134.2" clip-path="url(#term [...]
-</text><text class="terminal-2829072632-r4" x="0" y="1362" textLength="12.2" clip-path="url(#terminal-2829072632-line-55)">│</text><text class="terminal-2829072632-r5" x="24.4" y="1362" textLength="12.2" clip-path="url(#terminal-2829072632-line-55)">-</text><text class="terminal-2829072632-r5" x="36.6" y="1362" textLength="85.4" clip-path="url(#terminal-2829072632-line-55)">-answer</text><text class="terminal-2829072632-r6" x="280.6" y="1362" textLength="24.4" clip-path="url(#terminal-28 [...]
-</text><text class="terminal-2829072632-r4" x="0" y="1386.4" textLength="12.2" clip-path="url(#terminal-2829072632-line-56)">│</text><text class="terminal-2829072632-r5" x="24.4" y="1386.4" textLength="12.2" clip-path="url(#terminal-2829072632-line-56)">-</text><text class="terminal-2829072632-r5" x="36.6" y="1386.4" textLength="97.6" clip-path="url(#terminal-2829072632-line-56)">-verbose</text><text class="terminal-2829072632-r6" x="280.6" y="1386.4" textLength="24.4" clip-path="url(#te [...]
-</text><text class="terminal-2829072632-r4" x="0" y="1410.8" textLength="12.2" clip-path="url(#terminal-2829072632-line-57)">│</text><text class="terminal-2829072632-r5" x="24.4" y="1410.8" textLength="12.2" clip-path="url(#terminal-2829072632-line-57)">-</text><text class="terminal-2829072632-r5" x="36.6" y="1410.8" textLength="61" clip-path="url(#terminal-2829072632-line-57)">-help</text><text class="terminal-2829072632-r6" x="280.6" y="1410.8" textLength="24.4" clip-path="url(#termina [...]
-</text><text class="terminal-2829072632-r4" x="0" y="1435.2" textLength="1464" clip-path="url(#terminal-2829072632-line-58)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2829072632-r2" x="1464" y="1435.2" textLength="12.2" clip-path="url(#terminal-2829072632-line-58)">
+    <g class="terminal-2991470999-matrix">
+    <text class="terminal-2991470999-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-2991470999-line-0)">
+</text><text class="terminal-2991470999-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-2991470999-line-1)">Usage:&#160;</text><text class="terminal-2991470999-r1" x="97.6" y="44.4" textLength="268.4" clip-path="url(#terminal-2991470999-line-1)">breeze&#160;start-airflow&#160;[</text><text class="terminal-2991470999-r4" x="366" y="44.4" textLength="85.4" clip-path="url(#terminal-2991470999-line-1)">OPTIONS</text><text class="terminal-2991470999-r1" x="451.4" y="44.4" tex [...]
+</text><text class="terminal-2991470999-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-2991470999-line-2)">
+</text><text class="terminal-2991470999-r2" x="12.2" y="93.2" textLength="1390.8" clip-path="url(#terminal-2991470999-line-3)">Enter&#160;breeze&#160;environment&#160;and&#160;starts&#160;all&#160;Airflow&#160;components&#160;in&#160;the&#160;tmux&#160;session.&#160;Compile&#160;assets&#160;if&#160;contents&#160;of&#160;www&#160;</text><text class="terminal-2991470999-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-2991470999-line-3)">
+</text><text class="terminal-2991470999-r2" x="12.2" y="117.6" textLength="219.6" clip-path="url(#terminal-2991470999-line-4)">directory&#160;changed.</text><text class="terminal-2991470999-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-2991470999-line-4)">
+</text><text class="terminal-2991470999-r2" x="1464" y="142" textLength="12.2" clip-path="url(#terminal-2991470999-line-5)">
+</text><text class="terminal-2991470999-r5" x="0" y="166.4" textLength="24.4" clip-path="url(#terminal-2991470999-line-6)">╭─</text><text class="terminal-2991470999-r5" x="24.4" y="166.4" textLength="1415.2" clip-path="url(#terminal-2991470999-line-6)">&#160;Basic&#160;flags&#160;───────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2991470999-r5" x="1439.6" y="166.4" textLength="24.4" clip-path="url(#terminal- [...]
+</text><text class="terminal-2991470999-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-2991470999-line-7)">│</text><text class="terminal-2991470999-r4" x="24.4" y="190.8" textLength="12.2" clip-path="url(#terminal-2991470999-line-7)">-</text><text class="terminal-2991470999-r4" x="36.6" y="190.8" textLength="85.4" clip-path="url(#terminal-2991470999-line-7)">-python</text><text class="terminal-2991470999-r6" x="366" y="190.8" textLength="24.4" clip-path="url(#terminal-299 [...]
+</text><text class="terminal-2991470999-r5" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-2991470999-line-8)">│</text><text class="terminal-2991470999-r7" x="414.8" y="215.2" textLength="732" clip-path="url(#terminal-2991470999-line-8)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10&#160;|&#160;3.11)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;< [...]
+</text><text class="terminal-2991470999-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-2991470999-line-9)">│</text><text class="terminal-2991470999-r5" x="414.8" y="239.6" textLength="732" clip-path="url(#terminal-2991470999-line-9)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-2991470999-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-2991470999-line-10)">│</text><text class="terminal-2991470999-r4" x="24.4" y="264" textLength="12.2" clip-path="url(#terminal-2991470999-line-10)">-</text><text class="terminal-2991470999-r4" x="36.6" y="264" textLength="61" clip-path="url(#terminal-2991470999-line-10)">-load</text><text class="terminal-2991470999-r4" x="97.6" y="264" textLength="158.6" clip-path="url(#terminal-2991470999 [...]
+</text><text class="terminal-2991470999-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-2991470999-line-11)">│</text><text class="terminal-2991470999-r4" x="24.4" y="288.4" textLength="12.2" clip-path="url(#terminal-2991470999-line-11)">-</text><text class="terminal-2991470999-r4" x="36.6" y="288.4" textLength="61" clip-path="url(#terminal-2991470999-line-11)">-load</text><text class="terminal-2991470999-r4" x="97.6" y="288.4" textLength="244" clip-path="url(#terminal-2991 [...]
+</text><text class="terminal-2991470999-r5" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-2991470999-line-12)">│</text><text class="terminal-2991470999-r4" x="24.4" y="312.8" textLength="12.2" clip-path="url(#terminal-2991470999-line-12)">-</text><text class="terminal-2991470999-r4" x="36.6" y="312.8" textLength="97.6" clip-path="url(#terminal-2991470999-line-12)">-backend</text><text class="terminal-2991470999-r6" x="366" y="312.8" textLength="24.4" clip-path="url(#terminal [...]
+</text><text class="terminal-2991470999-r5" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-2991470999-line-13)">│</text><text class="terminal-2991470999-r4" x="24.4" y="337.2" textLength="12.2" clip-path="url(#terminal-2991470999-line-13)">-</text><text class="terminal-2991470999-r4" x="36.6" y="337.2" textLength="109.8" clip-path="url(#terminal-2991470999-line-13)">-platform</text><text class="terminal-2991470999-r2" x="414.8" y="337.2" textLength="329.4" clip-path="url(#ter [...]
+</text><text class="terminal-2991470999-r5" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-2991470999-line-14)">│</text><text class="terminal-2991470999-r4" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-2991470999-line-14)">-</text><text class="terminal-2991470999-r4" x="36.6" y="361.6" textLength="109.8" clip-path="url(#terminal-2991470999-line-14)">-postgres</text><text class="terminal-2991470999-r4" x="146.4" y="361.6" textLength="97.6" clip-path="url(#term [...]
+</text><text class="terminal-2991470999-r5" x="0" y="386" textLength="12.2" clip-path="url(#terminal-2991470999-line-15)">│</text><text class="terminal-2991470999-r4" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-2991470999-line-15)">-</text><text class="terminal-2991470999-r4" x="36.6" y="386" textLength="73.2" clip-path="url(#terminal-2991470999-line-15)">-mysql</text><text class="terminal-2991470999-r4" x="109.8" y="386" textLength="97.6" clip-path="url(#terminal-2991470 [...]
+</text><text class="terminal-2991470999-r5" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-2991470999-line-16)">│</text><text class="terminal-2991470999-r4" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-2991470999-line-16)">-</text><text class="terminal-2991470999-r4" x="36.6" y="410.4" textLength="73.2" clip-path="url(#terminal-2991470999-line-16)">-mssql</text><text class="terminal-2991470999-r4" x="109.8" y="410.4" textLength="97.6" clip-path="url(#terminal [...]
+</text><text class="terminal-2991470999-r5" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-2991470999-line-17)">│</text><text class="terminal-2991470999-r4" x="24.4" y="434.8" textLength="12.2" clip-path="url(#terminal-2991470999-line-17)">-</text><text class="terminal-2991470999-r4" x="36.6" y="434.8" textLength="146.4" clip-path="url(#terminal-2991470999-line-17)">-integration</text><text class="terminal-2991470999-r2" x="414.8" y="434.8" textLength="1024.8" clip-path="url( [...]
+</text><text class="terminal-2991470999-r5" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-2991470999-line-18)">│</text><text class="terminal-2991470999-r7" x="414.8" y="459.2" textLength="1024.8" clip-path="url(#terminal-2991470999-line-18)">(cassandra&#160;|&#160;kerberos&#160;|&#160;mongo&#160;|&#160;openldap&#160;|&#160;pinot&#160;|&#160;rabbitmq&#160;|&#160;redis&#160;|&#160;statsd&#160;|&#160;trino</text><text class="terminal-2991470999-r5" x="1451.8" y="459.2" textLeng [...]
+</text><text class="terminal-2991470999-r5" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-2991470999-line-19)">│</text><text class="terminal-2991470999-r7" x="414.8" y="483.6" textLength="1024.8" clip-path="url(#terminal-2991470999-line-19)">|&#160;all)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
+</text><text class="terminal-2991470999-r5" x="0" y="508" textLength="12.2" clip-path="url(#terminal-2991470999-line-20)">│</text><text class="terminal-2991470999-r4" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-2991470999-line-20)">-</text><text class="terminal-2991470999-r4" x="36.6" y="508" textLength="97.6" clip-path="url(#terminal-2991470999-line-20)">-forward</text><text class="terminal-2991470999-r4" x="134.2" y="508" textLength="146.4" clip-path="url(#terminal-2991 [...]
+</text><text class="terminal-2991470999-r5" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-2991470999-line-21)">│</text><text class="terminal-2991470999-r4" x="24.4" y="532.4" textLength="12.2" clip-path="url(#terminal-2991470999-line-21)">-</text><text class="terminal-2991470999-r4" x="36.6" y="532.4" textLength="36.6" clip-path="url(#terminal-2991470999-line-21)">-db</text><text class="terminal-2991470999-r4" x="73.2" y="532.4" textLength="73.2" clip-path="url(#terminal-299 [...]
+</text><text class="terminal-2991470999-r5" x="0" y="556.8" textLength="1464" clip-path="url(#terminal-2991470999-line-22)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2991470999-r2" x="1464" y="556.8" textLength="12.2" clip-path="url(#terminal-2991470999-line-22)">
+</text><text class="terminal-2991470999-r5" x="0" y="581.2" textLength="24.4" clip-path="url(#terminal-2991470999-line-23)">╭─</text><text class="terminal-2991470999-r5" x="24.4" y="581.2" textLength="1415.2" clip-path="url(#terminal-2991470999-line-23)">&#160;Asset&#160;compilation&#160;options&#160;─────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2991470999-r5" x="1439.6" y="581.2" textLength="24.4" clip-path="url(#te [...]
+</text><text class="terminal-2991470999-r5" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-2991470999-line-24)">│</text><text class="terminal-2991470999-r4" x="24.4" y="605.6" textLength="12.2" clip-path="url(#terminal-2991470999-line-24)">-</text><text class="terminal-2991470999-r4" x="36.6" y="605.6" textLength="61" clip-path="url(#terminal-2991470999-line-24)">-skip</text><text class="terminal-2991470999-r4" x="97.6" y="605.6" textLength="219.6" clip-path="url(#terminal-29 [...]
+</text><text class="terminal-2991470999-r5" x="0" y="630" textLength="12.2" clip-path="url(#terminal-2991470999-line-25)">│</text><text class="terminal-2991470999-r2" x="366" y="630" textLength="305" clip-path="url(#terminal-2991470999-line-25)">(mutually&#160;exclusive&#160;with&#160;</text><text class="terminal-2991470999-r4" x="671" y="630" textLength="12.2" clip-path="url(#terminal-2991470999-line-25)">-</text><text class="terminal-2991470999-r4" x="683.2" y="630" textLength="48.8" c [...]
+</text><text class="terminal-2991470999-r5" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-2991470999-line-26)">│</text><text class="terminal-2991470999-r4" x="24.4" y="654.4" textLength="12.2" clip-path="url(#terminal-2991470999-line-26)">-</text><text class="terminal-2991470999-r4" x="36.6" y="654.4" textLength="48.8" clip-path="url(#terminal-2991470999-line-26)">-dev</text><text class="terminal-2991470999-r4" x="85.4" y="654.4" textLength="61" clip-path="url(#terminal-2991 [...]
+</text><text class="terminal-2991470999-r5" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-2991470999-line-27)">│</text><text class="terminal-2991470999-r2" x="366" y="678.8" textLength="305" clip-path="url(#terminal-2991470999-line-27)">(mutually&#160;exclusive&#160;with&#160;</text><text class="terminal-2991470999-r4" x="671" y="678.8" textLength="12.2" clip-path="url(#terminal-2991470999-line-27)">-</text><text class="terminal-2991470999-r4" x="683.2" y="678.8" textLength= [...]
+</text><text class="terminal-2991470999-r5" x="0" y="703.2" textLength="1464" clip-path="url(#terminal-2991470999-line-28)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2991470999-r2" x="1464" y="703.2" textLength="12.2" clip-path="url(#terminal-2991470999-line-28)">
+</text><text class="terminal-2991470999-r5" x="0" y="727.6" textLength="24.4" clip-path="url(#terminal-2991470999-line-29)">╭─</text><text class="terminal-2991470999-r5" x="24.4" y="727.6" textLength="1415.2" clip-path="url(#terminal-2991470999-line-29)">&#160;Advanced&#160;flag&#160;for&#160;running&#160;─────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2991470999-r5" x="1439.6" y="727.6" textLength="24.4" clip-path="ur [...]
+</text><text class="terminal-2991470999-r5" x="0" y="752" textLength="12.2" clip-path="url(#terminal-2991470999-line-30)">│</text><text class="terminal-2991470999-r4" x="24.4" y="752" textLength="12.2" clip-path="url(#terminal-2991470999-line-30)">-</text><text class="terminal-2991470999-r4" x="36.6" y="752" textLength="48.8" clip-path="url(#terminal-2991470999-line-30)">-use</text><text class="terminal-2991470999-r4" x="85.4" y="752" textLength="195.2" clip-path="url(#terminal-299147099 [...]
+</text><text class="terminal-2991470999-r5" x="0" y="776.4" textLength="12.2" clip-path="url(#terminal-2991470999-line-31)">│</text><text class="terminal-2991470999-r2" x="475.8" y="776.4" textLength="963.8" clip-path="url(#terminal-2991470999-line-31)">`wheel`,&#160;or&#160;`sdist`&#160;if&#160;Airflow&#160;should&#160;be&#160;removed,&#160;installed&#160;from&#160;wheel&#160;packages</text><text class="terminal-2991470999-r5" x="1451.8" y="776.4" textLength="12.2" clip-path="url(#termi [...]
+</text><text class="terminal-2991470999-r5" x="0" y="800.8" textLength="12.2" clip-path="url(#terminal-2991470999-line-32)">│</text><text class="terminal-2991470999-r2" x="475.8" y="800.8" textLength="963.8" clip-path="url(#terminal-2991470999-line-32)">or&#160;sdist&#160;packages&#160;available&#160;in&#160;dist&#160;folder&#160;respectively.&#160;Implies&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-2991470999-r5"  [...]
+</text><text class="terminal-2991470999-r5" x="0" y="825.2" textLength="12.2" clip-path="url(#terminal-2991470999-line-33)">│</text><text class="terminal-2991470999-r4" x="475.8" y="825.2" textLength="12.2" clip-path="url(#terminal-2991470999-line-33)">-</text><text class="terminal-2991470999-r4" x="488" y="825.2" textLength="73.2" clip-path="url(#terminal-2991470999-line-33)">-mount</text><text class="terminal-2991470999-r4" x="561.2" y="825.2" textLength="97.6" clip-path="url(#terminal [...]
+</text><text class="terminal-2991470999-r5" x="0" y="849.6" textLength="12.2" clip-path="url(#terminal-2991470999-line-34)">│</text><text class="terminal-2991470999-r7" x="475.8" y="849.6" textLength="963.8" clip-path="url(#terminal-2991470999-line-34)">(none&#160;|&#160;wheel&#160;|&#160;sdist&#160;|&#160;&lt;airflow_version&gt;)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
+</text><text class="terminal-2991470999-r5" x="0" y="874" textLength="12.2" clip-path="url(#terminal-2991470999-line-35)">│</text><text class="terminal-2991470999-r4" x="24.4" y="874" textLength="12.2" clip-path="url(#terminal-2991470999-line-35)">-</text><text class="terminal-2991470999-r4" x="36.6" y="874" textLength="97.6" clip-path="url(#terminal-2991470999-line-35)">-airflow</text><text class="terminal-2991470999-r4" x="134.2" y="874" textLength="268.4" clip-path="url(#terminal-2991 [...]
+</text><text class="terminal-2991470999-r5" x="0" y="898.4" textLength="12.2" clip-path="url(#terminal-2991470999-line-36)">│</text><text class="terminal-2991470999-r2" x="475.8" y="898.4" textLength="963.8" clip-path="url(#terminal-2991470999-line-36)">specify&#160;constraints&#160;for&#160;the&#160;installed&#160;version&#160;and&#160;to&#160;find&#160;newer&#160;dependencies&#160;&#160;&#160;</text><text class="terminal-2991470999-r5" x="1451.8" y="898.4" textLength="12.2" clip-path=" [...]
+</text><text class="terminal-2991470999-r5" x="0" y="922.8" textLength="12.2" clip-path="url(#terminal-2991470999-line-37)">│</text><text class="terminal-2991470999-r7" x="475.8" y="922.8" textLength="963.8" clip-path="url(#terminal-2991470999-line-37)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
+</text><text class="terminal-2991470999-r5" x="0" y="947.2" textLength="12.2" clip-path="url(#terminal-2991470999-line-38)">│</text><text class="terminal-2991470999-r4" x="24.4" y="947.2" textLength="12.2" clip-path="url(#terminal-2991470999-line-38)">-</text><text class="terminal-2991470999-r4" x="36.6" y="947.2" textLength="97.6" clip-path="url(#terminal-2991470999-line-38)">-airflow</text><text class="terminal-2991470999-r4" x="134.2" y="947.2" textLength="85.4" clip-path="url(#termin [...]
+</text><text class="terminal-2991470999-r5" x="0" y="971.6" textLength="12.2" clip-path="url(#terminal-2991470999-line-39)">│</text><text class="terminal-2991470999-r4" x="24.4" y="971.6" textLength="12.2" clip-path="url(#terminal-2991470999-line-39)">-</text><text class="terminal-2991470999-r4" x="36.6" y="971.6" textLength="48.8" clip-path="url(#terminal-2991470999-line-39)">-use</text><text class="terminal-2991470999-r4" x="85.4" y="971.6" textLength="231.8" clip-path="url(#terminal-2 [...]
+</text><text class="terminal-2991470999-r5" x="0" y="996" textLength="12.2" clip-path="url(#terminal-2991470999-line-40)">│</text><text class="terminal-2991470999-r2" x="475.8" y="996" textLength="963.8" clip-path="url(#terminal-2991470999-line-40)">folder&#160;when&#160;entering&#160;breeze.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-2991470999-r5" x="0" y="1020.4" textLength="12.2" clip-path="url(#terminal-2991470999-line-41)">│</text><text class="terminal-2991470999-r4" x="24.4" y="1020.4" textLength="12.2" clip-path="url(#terminal-2991470999-line-41)">-</text><text class="terminal-2991470999-r4" x="36.6" y="1020.4" textLength="97.6" clip-path="url(#terminal-2991470999-line-41)">-package</text><text class="terminal-2991470999-r4" x="134.2" y="1020.4" textLength="85.4" clip-path="url(#te [...]
+</text><text class="terminal-2991470999-r5" x="0" y="1044.8" textLength="12.2" clip-path="url(#terminal-2991470999-line-42)">│</text><text class="terminal-2991470999-r5" x="475.8" y="1044.8" textLength="658.8" clip-path="url(#terminal-2991470999-line-42)">[default:&#160;wheel]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-2991470999-r5" x="0" y="1069.2" textLength="12.2" clip-path="url(#terminal-2991470999-line-43)">│</text><text class="terminal-2991470999-r4" x="24.4" y="1069.2" textLength="12.2" clip-path="url(#terminal-2991470999-line-43)">-</text><text class="terminal-2991470999-r4" x="36.6" y="1069.2" textLength="73.2" clip-path="url(#terminal-2991470999-line-43)">-force</text><text class="terminal-2991470999-r4" x="109.8" y="1069.2" textLength="73.2" clip-path="url(#term [...]
+</text><text class="terminal-2991470999-r5" x="0" y="1093.6" textLength="12.2" clip-path="url(#terminal-2991470999-line-44)">│</text><text class="terminal-2991470999-r4" x="24.4" y="1093.6" textLength="12.2" clip-path="url(#terminal-2991470999-line-44)">-</text><text class="terminal-2991470999-r4" x="36.6" y="1093.6" textLength="73.2" clip-path="url(#terminal-2991470999-line-44)">-image</text><text class="terminal-2991470999-r4" x="109.8" y="1093.6" textLength="48.8" clip-path="url(#term [...]
+</text><text class="terminal-2991470999-r5" x="0" y="1118" textLength="12.2" clip-path="url(#terminal-2991470999-line-45)">│</text><text class="terminal-2991470999-r7" x="475.8" y="1118" textLength="963.8" clip-path="url(#terminal-2991470999-line-45)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
+</text><text class="terminal-2991470999-r5" x="0" y="1142.4" textLength="12.2" clip-path="url(#terminal-2991470999-line-46)">│</text><text class="terminal-2991470999-r5" x="475.8" y="1142.4" textLength="963.8" clip-path="url(#terminal-2991470999-line-46)">[default:&#160;latest]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
+</text><text class="terminal-2991470999-r5" x="0" y="1166.8" textLength="12.2" clip-path="url(#terminal-2991470999-line-47)">│</text><text class="terminal-2991470999-r4" x="24.4" y="1166.8" textLength="12.2" clip-path="url(#terminal-2991470999-line-47)">-</text><text class="terminal-2991470999-r4" x="36.6" y="1166.8" textLength="73.2" clip-path="url(#terminal-2991470999-line-47)">-mount</text><text class="terminal-2991470999-r4" x="109.8" y="1166.8" textLength="97.6" clip-path="url(#term [...]
+</text><text class="terminal-2991470999-r5" x="0" y="1191.2" textLength="12.2" clip-path="url(#terminal-2991470999-line-48)">│</text><text class="terminal-2991470999-r2" x="475.8" y="1191.2" textLength="963.8" clip-path="url(#terminal-2991470999-line-48)">(default&#160;=&#160;selected).&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
+</text><text class="terminal-2991470999-r5" x="0" y="1215.6" textLength="12.2" clip-path="url(#terminal-2991470999-line-49)">│</text><text class="terminal-2991470999-r7" x="475.8" y="1215.6" textLength="963.8" clip-path="url(#terminal-2991470999-line-49)">(selected&#160;|&#160;all&#160;|&#160;skip&#160;|&#160;remove)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
+</text><text class="terminal-2991470999-r5" x="0" y="1240" textLength="12.2" clip-path="url(#terminal-2991470999-line-50)">│</text><text class="terminal-2991470999-r5" x="475.8" y="1240" textLength="963.8" clip-path="url(#terminal-2991470999-line-50)">[default:&#160;selected]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
+</text><text class="terminal-2991470999-r5" x="0" y="1264.4" textLength="1464" clip-path="url(#terminal-2991470999-line-51)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2991470999-r2" x="1464" y="1264.4" textLength="12.2" clip-path="url(#terminal-2991470999-line-51)">
+</text><text class="terminal-2991470999-r5" x="0" y="1288.8" textLength="24.4" clip-path="url(#terminal-2991470999-line-52)">╭─</text><text class="terminal-2991470999-r5" x="24.4" y="1288.8" textLength="1415.2" clip-path="url(#terminal-2991470999-line-52)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2991470999-r5" x="1439.6" y="1288.8" textLength="24.4" clip-path="url(#term [...]
+</text><text class="terminal-2991470999-r5" x="0" y="1313.2" textLength="12.2" clip-path="url(#terminal-2991470999-line-53)">│</text><text class="terminal-2991470999-r4" x="24.4" y="1313.2" textLength="12.2" clip-path="url(#terminal-2991470999-line-53)">-</text><text class="terminal-2991470999-r4" x="36.6" y="1313.2" textLength="48.8" clip-path="url(#terminal-2991470999-line-53)">-dry</text><text class="terminal-2991470999-r4" x="85.4" y="1313.2" textLength="48.8" clip-path="url(#termina [...]
+</text><text class="terminal-2991470999-r5" x="0" y="1337.6" textLength="12.2" clip-path="url(#terminal-2991470999-line-54)">│</text><text class="terminal-2991470999-r4" x="24.4" y="1337.6" textLength="12.2" clip-path="url(#terminal-2991470999-line-54)">-</text><text class="terminal-2991470999-r4" x="36.6" y="1337.6" textLength="85.4" clip-path="url(#terminal-2991470999-line-54)">-github</text><text class="terminal-2991470999-r4" x="122" y="1337.6" textLength="134.2" clip-path="url(#term [...]
+</text><text class="terminal-2991470999-r5" x="0" y="1362" textLength="12.2" clip-path="url(#terminal-2991470999-line-55)">│</text><text class="terminal-2991470999-r4" x="24.4" y="1362" textLength="12.2" clip-path="url(#terminal-2991470999-line-55)">-</text><text class="terminal-2991470999-r4" x="36.6" y="1362" textLength="85.4" clip-path="url(#terminal-2991470999-line-55)">-answer</text><text class="terminal-2991470999-r6" x="280.6" y="1362" textLength="24.4" clip-path="url(#terminal-29 [...]
+</text><text class="terminal-2991470999-r5" x="0" y="1386.4" textLength="12.2" clip-path="url(#terminal-2991470999-line-56)">│</text><text class="terminal-2991470999-r4" x="24.4" y="1386.4" textLength="12.2" clip-path="url(#terminal-2991470999-line-56)">-</text><text class="terminal-2991470999-r4" x="36.6" y="1386.4" textLength="97.6" clip-path="url(#terminal-2991470999-line-56)">-verbose</text><text class="terminal-2991470999-r6" x="280.6" y="1386.4" textLength="24.4" clip-path="url(#te [...]
+</text><text class="terminal-2991470999-r5" x="0" y="1410.8" textLength="12.2" clip-path="url(#terminal-2991470999-line-57)">│</text><text class="terminal-2991470999-r4" x="24.4" y="1410.8" textLength="12.2" clip-path="url(#terminal-2991470999-line-57)">-</text><text class="terminal-2991470999-r4" x="36.6" y="1410.8" textLength="61" clip-path="url(#terminal-2991470999-line-57)">-help</text><text class="terminal-2991470999-r6" x="280.6" y="1410.8" textLength="24.4" clip-path="url(#termina [...]
+</text><text class="terminal-2991470999-r5" x="0" y="1435.2" textLength="1464" clip-path="url(#terminal-2991470999-line-58)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2991470999-r2" x="1464" y="1435.2" textLength="12.2" clip-path="url(#terminal-2991470999-line-58)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_testing.svg b/images/breeze/output_testing.svg
index a22633da5f..ed5d5d1ccb 100644
--- a/images/breeze/output_testing.svg
+++ b/images/breeze/output_testing.svg
@@ -35,8 +35,8 @@
     .terminal-3208273230-r1 { fill: #c5c8c6;font-weight: bold }
 .terminal-3208273230-r2 { fill: #c5c8c6 }
 .terminal-3208273230-r3 { fill: #d0b344;font-weight: bold }
-.terminal-3208273230-r4 { fill: #868887 }
-.terminal-3208273230-r5 { fill: #68a0b3;font-weight: bold }
+.terminal-3208273230-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-3208273230-r5 { fill: #868887 }
 .terminal-3208273230-r6 { fill: #98a84b;font-weight: bold }
     </style>
 
@@ -93,18 +93,18 @@
     
     <g class="terminal-3208273230-matrix">
     <text class="terminal-3208273230-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-3208273230-line-0)">
-</text><text class="terminal-3208273230-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-3208273230-line-1)">Usage:&#160;</text><text class="terminal-3208273230-r1" x="97.6" y="44.4" textLength="512.4" clip-path="url(#terminal-3208273230-line-1)">breeze&#160;testing&#160;[OPTIONS]&#160;COMMAND&#160;[ARGS]...</text><text class="terminal-3208273230-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-3208273230-line-1)">
+</text><text class="terminal-3208273230-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-3208273230-line-1)">Usage:&#160;</text><text class="terminal-3208273230-r1" x="97.6" y="44.4" textLength="195.2" clip-path="url(#terminal-3208273230-line-1)">breeze&#160;testing&#160;[</text><text class="terminal-3208273230-r4" x="292.8" y="44.4" textLength="85.4" clip-path="url(#terminal-3208273230-line-1)">OPTIONS</text><text class="terminal-3208273230-r1" x="378.2" y="44.4" textLen [...]
 </text><text class="terminal-3208273230-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-3208273230-line-2)">
 </text><text class="terminal-3208273230-r2" x="12.2" y="93.2" textLength="512.4" clip-path="url(#terminal-3208273230-line-3)">Tools&#160;that&#160;developers&#160;can&#160;use&#160;to&#160;run&#160;tests</text><text class="terminal-3208273230-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-3208273230-line-3)">
 </text><text class="terminal-3208273230-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-3208273230-line-4)">
-</text><text class="terminal-3208273230-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-3208273230-line-5)">╭─</text><text class="terminal-3208273230-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-3208273230-line-5)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3208273230-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-320827 [...]
-</text><text class="terminal-3208273230-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-3208273230-line-6)">│</text><text class="terminal-3208273230-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-3208273230-line-6)">-</text><text class="terminal-3208273230-r5" x="36.6" y="166.4" textLength="61" clip-path="url(#terminal-3208273230-line-6)">-help</text><text class="terminal-3208273230-r6" x="122" y="166.4" textLength="24.4" clip-path="url(#terminal-3208273 [...]
-</text><text class="terminal-3208273230-r4" x="0" y="190.8" textLength="1464" clip-path="url(#terminal-3208273230-line-7)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3208273230-r2" x="1464" y="190.8" textLength="12.2" clip-path="url(#terminal-3208273230-line-7)">
-</text><text class="terminal-3208273230-r4" x="0" y="215.2" textLength="24.4" clip-path="url(#terminal-3208273230-line-8)">╭─</text><text class="terminal-3208273230-r4" x="24.4" y="215.2" textLength="1415.2" clip-path="url(#terminal-3208273230-line-8)">&#160;Testing&#160;───────────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3208273230-r4" x="1439.6" y="215.2" textLength="24.4" clip-path="url(#terminal-32082 [...]
-</text><text class="terminal-3208273230-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-3208273230-line-9)">│</text><text class="terminal-3208273230-r5" x="24.4" y="239.6" textLength="500.2" clip-path="url(#terminal-3208273230-line-9)">tests&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class=" [...]
-</text><text class="terminal-3208273230-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-3208273230-line-10)">│</text><text class="terminal-3208273230-r5" x="24.4" y="264" textLength="500.2" clip-path="url(#terminal-3208273230-line-10)">helm-tests&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-3208273230-r2" x=" [...]
-</text><text class="terminal-3208273230-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-3208273230-line-11)">│</text><text class="terminal-3208273230-r5" x="24.4" y="288.4" textLength="500.2" clip-path="url(#terminal-3208273230-line-11)">docker-compose-tests&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-3208273230-r2" x="549" y="288.4" textLength="890.6" clip-path="u [...]
-</text><text class="terminal-3208273230-r4" x="0" y="312.8" textLength="1464" clip-path="url(#terminal-3208273230-line-12)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3208273230-r2" x="1464" y="312.8" textLength="12.2" clip-path="url(#terminal-3208273230-line-12)">
+</text><text class="terminal-3208273230-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-3208273230-line-5)">╭─</text><text class="terminal-3208273230-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-3208273230-line-5)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3208273230-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-320827 [...]
+</text><text class="terminal-3208273230-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-3208273230-line-6)">│</text><text class="terminal-3208273230-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-3208273230-line-6)">-</text><text class="terminal-3208273230-r4" x="36.6" y="166.4" textLength="61" clip-path="url(#terminal-3208273230-line-6)">-help</text><text class="terminal-3208273230-r6" x="122" y="166.4" textLength="24.4" clip-path="url(#terminal-3208273 [...]
+</text><text class="terminal-3208273230-r5" x="0" y="190.8" textLength="1464" clip-path="url(#terminal-3208273230-line-7)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3208273230-r2" x="1464" y="190.8" textLength="12.2" clip-path="url(#terminal-3208273230-line-7)">
+</text><text class="terminal-3208273230-r5" x="0" y="215.2" textLength="24.4" clip-path="url(#terminal-3208273230-line-8)">╭─</text><text class="terminal-3208273230-r5" x="24.4" y="215.2" textLength="1415.2" clip-path="url(#terminal-3208273230-line-8)">&#160;Testing&#160;───────────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-3208273230-r5" x="1439.6" y="215.2" textLength="24.4" clip-path="url(#terminal-32082 [...]
+</text><text class="terminal-3208273230-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-3208273230-line-9)">│</text><text class="terminal-3208273230-r4" x="24.4" y="239.6" textLength="500.2" clip-path="url(#terminal-3208273230-line-9)">tests&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class=" [...]
+</text><text class="terminal-3208273230-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-3208273230-line-10)">│</text><text class="terminal-3208273230-r4" x="24.4" y="264" textLength="500.2" clip-path="url(#terminal-3208273230-line-10)">helm-tests&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-3208273230-r2" x=" [...]
+</text><text class="terminal-3208273230-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-3208273230-line-11)">│</text><text class="terminal-3208273230-r4" x="24.4" y="288.4" textLength="500.2" clip-path="url(#terminal-3208273230-line-11)">docker-compose-tests&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text class="terminal-3208273230-r2" x="549" y="288.4" textLength="890.6" clip-path="u [...]
+</text><text class="terminal-3208273230-r5" x="0" y="312.8" textLength="1464" clip-path="url(#terminal-3208273230-line-12)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-3208273230-r2" x="1464" y="312.8" textLength="12.2" clip-path="url(#terminal-3208273230-line-12)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_testing_docker-compose-tests.svg b/images/breeze/output_testing_docker-compose-tests.svg
index c521157a63..93b43a5ed9 100644
--- a/images/breeze/output_testing_docker-compose-tests.svg
+++ b/images/breeze/output_testing_docker-compose-tests.svg
@@ -19,113 +19,113 @@
         font-weight: 700;
     }
 
-    .terminal-128845089-matrix {
+    .terminal-950076864-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-128845089-title {
+    .terminal-950076864-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-128845089-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-128845089-r2 { fill: #c5c8c6 }
-.terminal-128845089-r3 { fill: #d0b344;font-weight: bold }
-.terminal-128845089-r4 { fill: #868887 }
-.terminal-128845089-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-128845089-r6 { fill: #98a84b;font-weight: bold }
-.terminal-128845089-r7 { fill: #8d7b39 }
+    .terminal-950076864-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-950076864-r2 { fill: #c5c8c6 }
+.terminal-950076864-r3 { fill: #d0b344;font-weight: bold }
+.terminal-950076864-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-950076864-r5 { fill: #868887 }
+.terminal-950076864-r6 { fill: #98a84b;font-weight: bold }
+.terminal-950076864-r7 { fill: #8d7b39 }
     </style>
 
     <defs>
-    <clipPath id="terminal-128845089-clip-terminal">
+    <clipPath id="terminal-950076864-clip-terminal">
       <rect x="0" y="0" width="1463.0" height="438.2" />
     </clipPath>
-    <clipPath id="terminal-128845089-line-0">
+    <clipPath id="terminal-950076864-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-128845089-line-1">
+<clipPath id="terminal-950076864-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-128845089-line-2">
+<clipPath id="terminal-950076864-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-128845089-line-3">
+<clipPath id="terminal-950076864-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-128845089-line-4">
+<clipPath id="terminal-950076864-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-128845089-line-5">
+<clipPath id="terminal-950076864-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-128845089-line-6">
+<clipPath id="terminal-950076864-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-128845089-line-7">
+<clipPath id="terminal-950076864-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-128845089-line-8">
+<clipPath id="terminal-950076864-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-128845089-line-9">
+<clipPath id="terminal-950076864-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-128845089-line-10">
+<clipPath id="terminal-950076864-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-128845089-line-11">
+<clipPath id="terminal-950076864-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-128845089-line-12">
+<clipPath id="terminal-950076864-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-128845089-line-13">
+<clipPath id="terminal-950076864-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-128845089-line-14">
+<clipPath id="terminal-950076864-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-128845089-line-15">
+<clipPath id="terminal-950076864-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-128845089-line-16">
+<clipPath id="terminal-950076864-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="487.2" rx="8"/><text class="terminal-128845089-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;testing&#160;docker-compose-tests</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="487.2" rx="8"/><text class="terminal-950076864-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;testing&#160;docker-compose-tests</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-128845089-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-950076864-clip-terminal)">
     
-    <g class="terminal-128845089-matrix">
-    <text class="terminal-128845089-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-128845089-line-0)">
-</text><text class="terminal-128845089-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-128845089-line-1)">Usage:&#160;</text><text class="terminal-128845089-r1" x="97.6" y="44.4" textLength="829.6" clip-path="url(#terminal-128845089-line-1)">breeze&#160;testing&#160;docker-compose-tests&#160;[OPTIONS]&#160;[EXTRA_PYTEST_ARGS]...</text><text class="terminal-128845089-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-128845089-line-1)">
-</text><text class="terminal-128845089-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-128845089-line-2)">
-</text><text class="terminal-128845089-r2" x="12.2" y="93.2" textLength="305" clip-path="url(#terminal-128845089-line-3)">Run&#160;docker-compose&#160;tests.</text><text class="terminal-128845089-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-128845089-line-3)">
-</text><text class="terminal-128845089-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-128845089-line-4)">
-</text><text class="terminal-128845089-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-128845089-line-5)">╭─</text><text class="terminal-128845089-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-128845089-line-5)">&#160;Docker-compose&#160;tests&#160;flag&#160;─────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-128845089-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-128845 [...]
-</text><text class="terminal-128845089-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-128845089-line-6)">│</text><text class="terminal-128845089-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-128845089-line-6)">-</text><text class="terminal-128845089-r5" x="36.6" y="166.4" textLength="73.2" clip-path="url(#terminal-128845089-line-6)">-image</text><text class="terminal-128845089-r5" x="109.8" y="166.4" textLength="61" clip-path="url(#terminal-128845089-l [...]
-</text><text class="terminal-128845089-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-128845089-line-7)">│</text><text class="terminal-128845089-r5" x="24.4" y="190.8" textLength="12.2" clip-path="url(#terminal-128845089-line-7)">-</text><text class="terminal-128845089-r5" x="36.6" y="190.8" textLength="73.2" clip-path="url(#terminal-128845089-line-7)">-image</text><text class="terminal-128845089-r5" x="109.8" y="190.8" textLength="48.8" clip-path="url(#terminal-128845089 [...]
-</text><text class="terminal-128845089-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-128845089-line-8)">│</text><text class="terminal-128845089-r4" x="244" y="215.2" textLength="963.8" clip-path="url(#terminal-128845089-line-8)">[default:&#160;latest]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
-</text><text class="terminal-128845089-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-128845089-line-9)">│</text><text class="terminal-128845089-r5" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-128845089-line-9)">-</text><text class="terminal-128845089-r5" x="36.6" y="239.6" textLength="85.4" clip-path="url(#terminal-128845089-line-9)">-python</text><text class="terminal-128845089-r6" x="195.2" y="239.6" textLength="24.4" clip-path="url(#terminal-12884508 [...]
-</text><text class="terminal-128845089-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-128845089-line-10)">│</text><text class="terminal-128845089-r4" x="244" y="264" textLength="732" clip-path="url(#terminal-128845089-line-10)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
-</text><text class="terminal-128845089-r4" x="0" y="288.4" textLength="1464" clip-path="url(#terminal-128845089-line-11)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-128845089-r2" x="1464" y="288.4" textLength="12.2" clip-path="url(#terminal-128845089-line-11)">
-</text><text class="terminal-128845089-r4" x="0" y="312.8" textLength="24.4" clip-path="url(#terminal-128845089-line-12)">╭─</text><text class="terminal-128845089-r4" x="24.4" y="312.8" textLength="1415.2" clip-path="url(#terminal-128845089-line-12)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-128845089-r4" x="1439.6" y="312.8" textLength="24.4" clip-path="url(#terminal-128 [...]
-</text><text class="terminal-128845089-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-128845089-line-13)">│</text><text class="terminal-128845089-r5" x="24.4" y="337.2" textLength="12.2" clip-path="url(#terminal-128845089-line-13)">-</text><text class="terminal-128845089-r5" x="36.6" y="337.2" textLength="97.6" clip-path="url(#terminal-128845089-line-13)">-verbose</text><text class="terminal-128845089-r6" x="280.6" y="337.2" textLength="24.4" clip-path="url(#terminal-1288 [...]
-</text><text class="terminal-128845089-r4" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-128845089-line-14)">│</text><text class="terminal-128845089-r5" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-128845089-line-14)">-</text><text class="terminal-128845089-r5" x="36.6" y="361.6" textLength="48.8" clip-path="url(#terminal-128845089-line-14)">-dry</text><text class="terminal-128845089-r5" x="85.4" y="361.6" textLength="48.8" clip-path="url(#terminal-128845089 [...]
-</text><text class="terminal-128845089-r4" x="0" y="386" textLength="12.2" clip-path="url(#terminal-128845089-line-15)">│</text><text class="terminal-128845089-r5" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-128845089-line-15)">-</text><text class="terminal-128845089-r5" x="36.6" y="386" textLength="85.4" clip-path="url(#terminal-128845089-line-15)">-github</text><text class="terminal-128845089-r5" x="122" y="386" textLength="134.2" clip-path="url(#terminal-128845089-line [...]
-</text><text class="terminal-128845089-r4" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-128845089-line-16)">│</text><text class="terminal-128845089-r5" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-128845089-line-16)">-</text><text class="terminal-128845089-r5" x="36.6" y="410.4" textLength="61" clip-path="url(#terminal-128845089-line-16)">-help</text><text class="terminal-128845089-r6" x="280.6" y="410.4" textLength="24.4" clip-path="url(#terminal-128845089 [...]
-</text><text class="terminal-128845089-r4" x="0" y="434.8" textLength="1464" clip-path="url(#terminal-128845089-line-17)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-128845089-r2" x="1464" y="434.8" textLength="12.2" clip-path="url(#terminal-128845089-line-17)">
+    <g class="terminal-950076864-matrix">
+    <text class="terminal-950076864-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-950076864-line-0)">
+</text><text class="terminal-950076864-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-950076864-line-1)">Usage:&#160;</text><text class="terminal-950076864-r1" x="97.6" y="44.4" textLength="451.4" clip-path="url(#terminal-950076864-line-1)">breeze&#160;testing&#160;docker-compose-tests&#160;[</text><text class="terminal-950076864-r4" x="549" y="44.4" textLength="85.4" clip-path="url(#terminal-950076864-line-1)">OPTIONS</text><text class="terminal-950076864-r1" x="634.4" [...]
+</text><text class="terminal-950076864-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-950076864-line-2)">
+</text><text class="terminal-950076864-r2" x="12.2" y="93.2" textLength="305" clip-path="url(#terminal-950076864-line-3)">Run&#160;docker-compose&#160;tests.</text><text class="terminal-950076864-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-950076864-line-3)">
+</text><text class="terminal-950076864-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-950076864-line-4)">
+</text><text class="terminal-950076864-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-950076864-line-5)">╭─</text><text class="terminal-950076864-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-950076864-line-5)">&#160;Docker-compose&#160;tests&#160;flag&#160;─────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-950076864-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(#terminal-950076 [...]
+</text><text class="terminal-950076864-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-950076864-line-6)">│</text><text class="terminal-950076864-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-950076864-line-6)">-</text><text class="terminal-950076864-r4" x="36.6" y="166.4" textLength="73.2" clip-path="url(#terminal-950076864-line-6)">-image</text><text class="terminal-950076864-r4" x="109.8" y="166.4" textLength="61" clip-path="url(#terminal-950076864-l [...]
+</text><text class="terminal-950076864-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-950076864-line-7)">│</text><text class="terminal-950076864-r4" x="24.4" y="190.8" textLength="12.2" clip-path="url(#terminal-950076864-line-7)">-</text><text class="terminal-950076864-r4" x="36.6" y="190.8" textLength="73.2" clip-path="url(#terminal-950076864-line-7)">-image</text><text class="terminal-950076864-r4" x="109.8" y="190.8" textLength="48.8" clip-path="url(#terminal-950076864 [...]
+</text><text class="terminal-950076864-r5" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-950076864-line-8)">│</text><text class="terminal-950076864-r5" x="244" y="215.2" textLength="963.8" clip-path="url(#terminal-950076864-line-8)">[default:&#160;latest]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
+</text><text class="terminal-950076864-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-950076864-line-9)">│</text><text class="terminal-950076864-r4" x="24.4" y="239.6" textLength="12.2" clip-path="url(#terminal-950076864-line-9)">-</text><text class="terminal-950076864-r4" x="36.6" y="239.6" textLength="85.4" clip-path="url(#terminal-950076864-line-9)">-python</text><text class="terminal-950076864-r6" x="195.2" y="239.6" textLength="24.4" clip-path="url(#terminal-95007686 [...]
+</text><text class="terminal-950076864-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-950076864-line-10)">│</text><text class="terminal-950076864-r5" x="244" y="264" textLength="732" clip-path="url(#terminal-950076864-line-10)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
+</text><text class="terminal-950076864-r5" x="0" y="288.4" textLength="1464" clip-path="url(#terminal-950076864-line-11)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-950076864-r2" x="1464" y="288.4" textLength="12.2" clip-path="url(#terminal-950076864-line-11)">
+</text><text class="terminal-950076864-r5" x="0" y="312.8" textLength="24.4" clip-path="url(#terminal-950076864-line-12)">╭─</text><text class="terminal-950076864-r5" x="24.4" y="312.8" textLength="1415.2" clip-path="url(#terminal-950076864-line-12)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-950076864-r5" x="1439.6" y="312.8" textLength="24.4" clip-path="url(#terminal-950 [...]
+</text><text class="terminal-950076864-r5" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-950076864-line-13)">│</text><text class="terminal-950076864-r4" x="24.4" y="337.2" textLength="12.2" clip-path="url(#terminal-950076864-line-13)">-</text><text class="terminal-950076864-r4" x="36.6" y="337.2" textLength="97.6" clip-path="url(#terminal-950076864-line-13)">-verbose</text><text class="terminal-950076864-r6" x="280.6" y="337.2" textLength="24.4" clip-path="url(#terminal-9500 [...]
+</text><text class="terminal-950076864-r5" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-950076864-line-14)">│</text><text class="terminal-950076864-r4" x="24.4" y="361.6" textLength="12.2" clip-path="url(#terminal-950076864-line-14)">-</text><text class="terminal-950076864-r4" x="36.6" y="361.6" textLength="48.8" clip-path="url(#terminal-950076864-line-14)">-dry</text><text class="terminal-950076864-r4" x="85.4" y="361.6" textLength="48.8" clip-path="url(#terminal-950076864 [...]
+</text><text class="terminal-950076864-r5" x="0" y="386" textLength="12.2" clip-path="url(#terminal-950076864-line-15)">│</text><text class="terminal-950076864-r4" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-950076864-line-15)">-</text><text class="terminal-950076864-r4" x="36.6" y="386" textLength="85.4" clip-path="url(#terminal-950076864-line-15)">-github</text><text class="terminal-950076864-r4" x="122" y="386" textLength="134.2" clip-path="url(#terminal-950076864-line [...]
+</text><text class="terminal-950076864-r5" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-950076864-line-16)">│</text><text class="terminal-950076864-r4" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-950076864-line-16)">-</text><text class="terminal-950076864-r4" x="36.6" y="410.4" textLength="61" clip-path="url(#terminal-950076864-line-16)">-help</text><text class="terminal-950076864-r6" x="280.6" y="410.4" textLength="24.4" clip-path="url(#terminal-950076864 [...]
+</text><text class="terminal-950076864-r5" x="0" y="434.8" textLength="1464" clip-path="url(#terminal-950076864-line-17)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-950076864-r2" x="1464" y="434.8" textLength="12.2" clip-path="url(#terminal-950076864-line-17)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output_testing_tests.svg b/images/breeze/output_testing_tests.svg
index 1b25d4efa6..f7d4506f60 100644
--- a/images/breeze/output_testing_tests.svg
+++ b/images/breeze/output_testing_tests.svg
@@ -1,4 +1,4 @@
-<svg class="rich-terminal" viewBox="0 0 1482 1172.3999999999999" xmlns="http://www.w3.org/2000/svg">
+<svg class="rich-terminal" viewBox="0 0 1482 1196.8" xmlns="http://www.w3.org/2000/svg">
     <!-- Generated with Rich https://www.textualize.io -->
     <style>
 
@@ -19,225 +19,229 @@
         font-weight: 700;
     }
 
-    .terminal-367222518-matrix {
+    .terminal-2393207375-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-367222518-title {
+    .terminal-2393207375-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-367222518-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-367222518-r2 { fill: #c5c8c6 }
-.terminal-367222518-r3 { fill: #d0b344;font-weight: bold }
-.terminal-367222518-r4 { fill: #868887 }
-.terminal-367222518-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-367222518-r6 { fill: #8d7b39 }
-.terminal-367222518-r7 { fill: #98a84b;font-weight: bold }
+    .terminal-2393207375-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-2393207375-r2 { fill: #c5c8c6 }
+.terminal-2393207375-r3 { fill: #d0b344;font-weight: bold }
+.terminal-2393207375-r4 { fill: #68a0b3;font-weight: bold }
+.terminal-2393207375-r5 { fill: #868887 }
+.terminal-2393207375-r6 { fill: #8d7b39 }
+.terminal-2393207375-r7 { fill: #98a84b;font-weight: bold }
     </style>
 
     <defs>
-    <clipPath id="terminal-367222518-clip-terminal">
-      <rect x="0" y="0" width="1463.0" height="1121.3999999999999" />
+    <clipPath id="terminal-2393207375-clip-terminal">
+      <rect x="0" y="0" width="1463.0" height="1145.8" />
     </clipPath>
-    <clipPath id="terminal-367222518-line-0">
+    <clipPath id="terminal-2393207375-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-1">
+<clipPath id="terminal-2393207375-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-2">
+<clipPath id="terminal-2393207375-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-3">
+<clipPath id="terminal-2393207375-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-4">
+<clipPath id="terminal-2393207375-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-5">
+<clipPath id="terminal-2393207375-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-6">
+<clipPath id="terminal-2393207375-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-7">
+<clipPath id="terminal-2393207375-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-8">
+<clipPath id="terminal-2393207375-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-9">
+<clipPath id="terminal-2393207375-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-10">
+<clipPath id="terminal-2393207375-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-11">
+<clipPath id="terminal-2393207375-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-12">
+<clipPath id="terminal-2393207375-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-13">
+<clipPath id="terminal-2393207375-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-14">
+<clipPath id="terminal-2393207375-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-15">
+<clipPath id="terminal-2393207375-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-16">
+<clipPath id="terminal-2393207375-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-17">
+<clipPath id="terminal-2393207375-line-17">
     <rect x="0" y="416.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-18">
+<clipPath id="terminal-2393207375-line-18">
     <rect x="0" y="440.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-19">
+<clipPath id="terminal-2393207375-line-19">
     <rect x="0" y="465.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-20">
+<clipPath id="terminal-2393207375-line-20">
     <rect x="0" y="489.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-21">
+<clipPath id="terminal-2393207375-line-21">
     <rect x="0" y="513.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-22">
+<clipPath id="terminal-2393207375-line-22">
     <rect x="0" y="538.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-23">
+<clipPath id="terminal-2393207375-line-23">
     <rect x="0" y="562.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-24">
+<clipPath id="terminal-2393207375-line-24">
     <rect x="0" y="587.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-25">
+<clipPath id="terminal-2393207375-line-25">
     <rect x="0" y="611.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-26">
+<clipPath id="terminal-2393207375-line-26">
     <rect x="0" y="635.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-27">
+<clipPath id="terminal-2393207375-line-27">
     <rect x="0" y="660.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-28">
+<clipPath id="terminal-2393207375-line-28">
     <rect x="0" y="684.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-29">
+<clipPath id="terminal-2393207375-line-29">
     <rect x="0" y="709.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-30">
+<clipPath id="terminal-2393207375-line-30">
     <rect x="0" y="733.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-31">
+<clipPath id="terminal-2393207375-line-31">
     <rect x="0" y="757.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-32">
+<clipPath id="terminal-2393207375-line-32">
     <rect x="0" y="782.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-33">
+<clipPath id="terminal-2393207375-line-33">
     <rect x="0" y="806.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-34">
+<clipPath id="terminal-2393207375-line-34">
     <rect x="0" y="831.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-35">
+<clipPath id="terminal-2393207375-line-35">
     <rect x="0" y="855.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-36">
+<clipPath id="terminal-2393207375-line-36">
     <rect x="0" y="879.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-37">
+<clipPath id="terminal-2393207375-line-37">
     <rect x="0" y="904.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-38">
+<clipPath id="terminal-2393207375-line-38">
     <rect x="0" y="928.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-39">
+<clipPath id="terminal-2393207375-line-39">
     <rect x="0" y="953.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-40">
+<clipPath id="terminal-2393207375-line-40">
     <rect x="0" y="977.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-41">
+<clipPath id="terminal-2393207375-line-41">
     <rect x="0" y="1001.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-42">
+<clipPath id="terminal-2393207375-line-42">
     <rect x="0" y="1026.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-43">
+<clipPath id="terminal-2393207375-line-43">
     <rect x="0" y="1050.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-367222518-line-44">
+<clipPath id="terminal-2393207375-line-44">
     <rect x="0" y="1075.1" width="1464" height="24.65"/>
             </clipPath>
+<clipPath id="terminal-2393207375-line-45">
+    <rect x="0" y="1099.5" width="1464" height="24.65"/>
+            </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="1170.4" rx="8"/><text class="terminal-367222518-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;testing&#160;tests</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1480" height="1194.8" rx="8"/><text class="terminal-2393207375-title" fill="#c5c8c6" text-anchor="middle" x="740" y="27">Command:&#160;testing&#160;tests</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" clip-path="url(#terminal-367222518-clip-terminal)">
+    <g transform="translate(9, 41)" clip-path="url(#terminal-2393207375-clip-terminal)">
     
-    <g class="terminal-367222518-matrix">
-    <text class="terminal-367222518-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-367222518-line-0)">
-</text><text class="terminal-367222518-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-367222518-line-1)">Usage:&#160;</text><text class="terminal-367222518-r1" x="97.6" y="44.4" textLength="646.6" clip-path="url(#terminal-367222518-line-1)">breeze&#160;testing&#160;tests&#160;[OPTIONS]&#160;[EXTRA_PYTEST_ARGS]...</text><text class="terminal-367222518-r2" x="1464" y="44.4" textLength="12.2" clip-path="url(#terminal-367222518-line-1)">
-</text><text class="terminal-367222518-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-367222518-line-2)">
-</text><text class="terminal-367222518-r2" x="12.2" y="93.2" textLength="439.2" clip-path="url(#terminal-367222518-line-3)">Run&#160;the&#160;specified&#160;unit&#160;test&#160;targets.</text><text class="terminal-367222518-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-367222518-line-3)">
-</text><text class="terminal-367222518-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-367222518-line-4)">
-</text><text class="terminal-367222518-r4" x="0" y="142" textLength="24.4" clip-path="url(#terminal-367222518-line-5)">╭─</text><text class="terminal-367222518-r4" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-367222518-line-5)">&#160;Basic&#160;flag&#160;for&#160;tests&#160;command&#160;──────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-367222518-r4" x="1439.6" y="142" textLength="24.4" clip-path="url(#termi [...]
-</text><text class="terminal-367222518-r4" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-367222518-line-6)">│</text><text class="terminal-367222518-r5" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-367222518-line-6)">-</text><text class="terminal-367222518-r5" x="36.6" y="166.4" textLength="146.4" clip-path="url(#terminal-367222518-line-6)">-integration</text><text class="terminal-367222518-r2" x="317.2" y="166.4" textLength="1110.2" clip-path="url(#terminal- [...]
-</text><text class="terminal-367222518-r4" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-367222518-line-7)">│</text><text class="terminal-367222518-r6" x="317.2" y="190.8" textLength="1110.2" clip-path="url(#terminal-367222518-line-7)">(cassandra&#160;|&#160;kerberos&#160;|&#160;mongo&#160;|&#160;openldap&#160;|&#160;pinot&#160;|&#160;rabbitmq&#160;|&#160;redis&#160;|&#160;statsd&#160;|&#160;trino&#160;|&#160;all)</text><text class="terminal-367222518-r4" x="1451.8" y="190.8 [...]
-</text><text class="terminal-367222518-r4" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-367222518-line-8)">│</text><text class="terminal-367222518-r5" x="24.4" y="215.2" textLength="12.2" clip-path="url(#terminal-367222518-line-8)">-</text><text class="terminal-367222518-r5" x="36.6" y="215.2" textLength="61" clip-path="url(#terminal-367222518-line-8)">-test</text><text class="terminal-367222518-r5" x="97.6" y="215.2" textLength="61" clip-path="url(#terminal-367222518-line- [...]
-</text><text class="terminal-367222518-r4" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-367222518-line-9)">│</text><text class="terminal-367222518-r2" x="317.2" y="239.6" textLength="341.6" clip-path="url(#terminal-367222518-line-9)">should&#160;be&#160;run&#160;-&#160;for&#160;example&#160;</text><text class="terminal-367222518-r5" x="658.8" y="239.6" textLength="12.2" clip-path="url(#terminal-367222518-line-9)">-</text><text class="terminal-367222518-r5" x="671" y="239.6" [...]
-</text><text class="terminal-367222518-r4" x="0" y="264" textLength="12.2" clip-path="url(#terminal-367222518-line-10)">│</text><text class="terminal-367222518-r6" x="317.2" y="264" textLength="1122.4" clip-path="url(#terminal-367222518-line-10)">(All&#160;|&#160;API&#160;|&#160;Always&#160;|&#160;CLI&#160;|&#160;Core&#160;|&#160;Integration&#160;|&#160;Other&#160;|&#160;Providers&#160;|&#160;WWW&#160;|&#160;Helm&#160;|&#160;Postgres&#160;|</text><text class="terminal-367222518-r4" x="14 [...]
-</text><text class="terminal-367222518-r4" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-367222518-line-11)">│</text><text class="terminal-367222518-r6" x="317.2" y="288.4" textLength="1122.4" clip-path="url(#terminal-367222518-line-11)">MySQL&#160;|&#160;Quarantine)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
-</text><text class="terminal-367222518-r4" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-367222518-line-12)">│</text><text class="terminal-367222518-r5" x="24.4" y="312.8" textLength="12.2" clip-path="url(#terminal-367222518-line-12)">-</text><text class="terminal-367222518-r5" x="36.6" y="312.8" textLength="61" clip-path="url(#terminal-367222518-line-12)">-test</text><text class="terminal-367222518-r5" x="97.6" y="312.8" textLength="97.6" clip-path="url(#terminal-367222518- [...]
-</text><text class="terminal-367222518-r4" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-367222518-line-13)">│</text><text class="terminal-367222518-r6" x="317.2" y="337.2" textLength="988.2" clip-path="url(#terminal-367222518-line-13)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
-</text><text class="terminal-367222518-r4" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-367222518-line-14)">│</text><text class="terminal-367222518-r4" x="317.2" y="361.6" textLength="988.2" clip-path="url(#terminal-367222518-line-14)">[default:&#160;60;&#160;x&gt;=0]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
-</text><text class="terminal-367222518-r4" x="0" y="386" textLength="12.2" clip-path="url(#terminal-367222518-line-15)">│</text><text class="terminal-367222518-r5" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-367222518-line-15)">-</text><text class="terminal-367222518-r5" x="36.6" y="386" textLength="36.6" clip-path="url(#terminal-367222518-line-15)">-db</text><text class="terminal-367222518-r5" x="73.2" y="386" textLength="73.2" clip-path="url(#terminal-367222518-line-15) [...]
-</text><text class="terminal-367222518-r4" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-367222518-line-16)">│</text><text class="terminal-367222518-r5" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-367222518-line-16)">-</text><text class="terminal-367222518-r5" x="36.6" y="410.4" textLength="97.6" clip-path="url(#terminal-367222518-line-16)">-backend</text><text class="terminal-367222518-r7" x="268.4" y="410.4" textLength="24.4" clip-path="url(#terminal-3672 [...]
-</text><text class="terminal-367222518-r4" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-367222518-line-17)">│</text><text class="terminal-367222518-r5" x="24.4" y="434.8" textLength="12.2" clip-path="url(#terminal-367222518-line-17)">-</text><text class="terminal-367222518-r5" x="36.6" y="434.8" textLength="85.4" clip-path="url(#terminal-367222518-line-17)">-python</text><text class="terminal-367222518-r7" x="268.4" y="434.8" textLength="24.4" clip-path="url(#terminal-36722 [...]
-</text><text class="terminal-367222518-r4" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-367222518-line-18)">│</text><text class="terminal-367222518-r4" x="317.2" y="459.2" textLength="732" clip-path="url(#terminal-367222518-line-18)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
-</text><text class="terminal-367222518-r4" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-367222518-line-19)">│</text><text class="terminal-367222518-r5" x="24.4" y="483.6" textLength="12.2" clip-path="url(#terminal-367222518-line-19)">-</text><text class="terminal-367222518-r5" x="36.6" y="483.6" textLength="109.8" clip-path="url(#terminal-367222518-line-19)">-postgres</text><text class="terminal-367222518-r5" x="146.4" y="483.6" textLength="97.6" clip-path="url(#terminal-36 [...]
-</text><text class="terminal-367222518-r4" x="0" y="508" textLength="12.2" clip-path="url(#terminal-367222518-line-20)">│</text><text class="terminal-367222518-r5" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-367222518-line-20)">-</text><text class="terminal-367222518-r5" x="36.6" y="508" textLength="73.2" clip-path="url(#terminal-367222518-line-20)">-mysql</text><text class="terminal-367222518-r5" x="109.8" y="508" textLength="97.6" clip-path="url(#terminal-367222518-line [...]
-</text><text class="terminal-367222518-r4" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-367222518-line-21)">│</text><text class="terminal-367222518-r5" x="24.4" y="532.4" textLength="12.2" clip-path="url(#terminal-367222518-line-21)">-</text><text class="terminal-367222518-r5" x="36.6" y="532.4" textLength="73.2" clip-path="url(#terminal-367222518-line-21)">-mssql</text><text class="terminal-367222518-r5" x="109.8" y="532.4" textLength="97.6" clip-path="url(#terminal-367222 [...]
-</text><text class="terminal-367222518-r4" x="0" y="556.8" textLength="1464" clip-path="url(#terminal-367222518-line-22)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-367222518-r2" x="1464" y="556.8" textLength="12.2" clip-path="url(#terminal-367222518-line-22)">
-</text><text class="terminal-367222518-r4" x="0" y="581.2" textLength="24.4" clip-path="url(#terminal-367222518-line-23)">╭─</text><text class="terminal-367222518-r4" x="24.4" y="581.2" textLength="1415.2" clip-path="url(#terminal-367222518-line-23)">&#160;Options&#160;for&#160;parallel&#160;test&#160;commands&#160;────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-367222518-r4" x="1439.6" y="581.2" textLength="24.4" clip-path="ur [...]
-</text><text class="terminal-367222518-r4" x="0" y="605.6" textLength="12.2" clip-path="url(#terminal-367222518-line-24)">│</text><text class="terminal-367222518-r5" x="24.4" y="605.6" textLength="12.2" clip-path="url(#terminal-367222518-line-24)">-</text><text class="terminal-367222518-r5" x="36.6" y="605.6" textLength="48.8" clip-path="url(#terminal-367222518-line-24)">-run</text><text class="terminal-367222518-r5" x="85.4" y="605.6" textLength="146.4" clip-path="url(#terminal-36722251 [...]
-</text><text class="terminal-367222518-r4" x="0" y="630" textLength="12.2" clip-path="url(#terminal-367222518-line-25)">│</text><text class="terminal-367222518-r5" x="24.4" y="630" textLength="12.2" clip-path="url(#terminal-367222518-line-25)">-</text><text class="terminal-367222518-r5" x="36.6" y="630" textLength="146.4" clip-path="url(#terminal-367222518-line-25)">-parallelism</text><text class="terminal-367222518-r2" x="378.2" y="630" textLength="915" clip-path="url(#terminal-36722251 [...]
-</text><text class="terminal-367222518-r4" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-367222518-line-26)">│</text><text class="terminal-367222518-r6" x="378.2" y="654.4" textLength="915" clip-path="url(#terminal-367222518-line-26)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
-</text><text class="terminal-367222518-r4" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-367222518-line-27)">│</text><text class="terminal-367222518-r4" x="378.2" y="678.8" textLength="915" clip-path="url(#terminal-367222518-line-27)">[default:&#160;4;&#160;1&lt;=x&lt;=8]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
-</text><text class="terminal-367222518-r4" x="0" y="703.2" textLength="12.2" clip-path="url(#terminal-367222518-line-28)">│</text><text class="terminal-367222518-r5" x="24.4" y="703.2" textLength="12.2" clip-path="url(#terminal-367222518-line-28)">-</text><text class="terminal-367222518-r5" x="36.6" y="703.2" textLength="61" clip-path="url(#terminal-367222518-line-28)">-test</text><text class="terminal-367222518-r5" x="97.6" y="703.2" textLength="73.2" clip-path="url(#terminal-367222518- [...]
-</text><text class="terminal-367222518-r4" x="0" y="727.6" textLength="12.2" clip-path="url(#terminal-367222518-line-29)">│</text><text class="terminal-367222518-r4" x="378.2" y="727.6" textLength="780.8" clip-path="url(#terminal-367222518-line-29)">[default:&#160;API&#160;Always&#160;CLI&#160;Core&#160;Integration&#160;Other&#160;Providers&#160;WWW]&#160;&#160;</text><text class="terminal-367222518-r4" x="1451.8" y="727.6" textLength="12.2" clip-path="url(#terminal-367222518-line-29)">│ [...]
-</text><text class="terminal-367222518-r4" x="0" y="752" textLength="12.2" clip-path="url(#terminal-367222518-line-30)">│</text><text class="terminal-367222518-r5" x="24.4" y="752" textLength="12.2" clip-path="url(#terminal-367222518-line-30)">-</text><text class="terminal-367222518-r5" x="36.6" y="752" textLength="61" clip-path="url(#terminal-367222518-line-30)">-skip</text><text class="terminal-367222518-r5" x="97.6" y="752" textLength="97.6" clip-path="url(#terminal-367222518-line-30) [...]
-</text><text class="terminal-367222518-r4" x="0" y="776.4" textLength="12.2" clip-path="url(#terminal-367222518-line-31)">│</text><text class="terminal-367222518-r5" x="24.4" y="776.4" textLength="12.2" clip-path="url(#terminal-367222518-line-31)">-</text><text class="terminal-367222518-r5" x="36.6" y="776.4" textLength="73.2" clip-path="url(#terminal-367222518-line-31)">-debug</text><text class="terminal-367222518-r5" x="109.8" y="776.4" textLength="122" clip-path="url(#terminal-3672225 [...]
-</text><text class="terminal-367222518-r4" x="0" y="800.8" textLength="12.2" clip-path="url(#terminal-367222518-line-32)">│</text><text class="terminal-367222518-r5" x="24.4" y="800.8" textLength="12.2" clip-path="url(#terminal-367222518-line-32)">-</text><text class="terminal-367222518-r5" x="36.6" y="800.8" textLength="97.6" clip-path="url(#terminal-367222518-line-32)">-include</text><text class="terminal-367222518-r5" x="134.2" y="800.8" textLength="195.2" clip-path="url(#terminal-367 [...]
-</text><text class="terminal-367222518-r4" x="0" y="825.2" textLength="1464" clip-path="url(#terminal-367222518-line-33)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-367222518-r2" x="1464" y="825.2" textLength="12.2" clip-path="url(#terminal-367222518-line-33)">
-</text><text class="terminal-367222518-r4" x="0" y="849.6" textLength="24.4" clip-path="url(#terminal-367222518-line-34)">╭─</text><text class="terminal-367222518-r4" x="24.4" y="849.6" textLength="1415.2" clip-path="url(#terminal-367222518-line-34)">&#160;Advanced&#160;flag&#160;for&#160;tests&#160;command&#160;───────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-367222518-r4" x="1439.6" y="849.6" textLength="24.4" clip-path="ur [...]
-</text><text class="terminal-367222518-r4" x="0" y="874" textLength="12.2" clip-path="url(#terminal-367222518-line-35)">│</text><text class="terminal-367222518-r5" x="24.4" y="874" textLength="12.2" clip-path="url(#terminal-367222518-line-35)">-</text><text class="terminal-367222518-r5" x="36.6" y="874" textLength="73.2" clip-path="url(#terminal-367222518-line-35)">-image</text><text class="terminal-367222518-r5" x="109.8" y="874" textLength="48.8" clip-path="url(#terminal-367222518-line [...]
-</text><text class="terminal-367222518-r4" x="0" y="898.4" textLength="12.2" clip-path="url(#terminal-367222518-line-36)">│</text><text class="terminal-367222518-r4" x="280.6" y="898.4" textLength="963.8" clip-path="url(#terminal-367222518-line-36)">[default:&#160;latest]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
-</text><text class="terminal-367222518-r4" x="0" y="922.8" textLength="12.2" clip-path="url(#terminal-367222518-line-37)">│</text><text class="terminal-367222518-r5" x="24.4" y="922.8" textLength="12.2" clip-path="url(#terminal-367222518-line-37)">-</text><text class="terminal-367222518-r5" x="36.6" y="922.8" textLength="73.2" clip-path="url(#terminal-367222518-line-37)">-mount</text><text class="terminal-367222518-r5" x="109.8" y="922.8" textLength="97.6" clip-path="url(#terminal-367222 [...]
-</text><text class="terminal-367222518-r4" x="0" y="947.2" textLength="12.2" clip-path="url(#terminal-367222518-line-38)">│</text><text class="terminal-367222518-r6" x="280.6" y="947.2" textLength="1159" clip-path="url(#terminal-367222518-line-38)">(selected&#160;|&#160;all&#160;|&#160;skip&#160;|&#160;remove)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;& [...]
-</text><text class="terminal-367222518-r4" x="0" y="971.6" textLength="12.2" clip-path="url(#terminal-367222518-line-39)">│</text><text class="terminal-367222518-r4" x="280.6" y="971.6" textLength="1159" clip-path="url(#terminal-367222518-line-39)">[default:&#160;selected]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
-</text><text class="terminal-367222518-r4" x="0" y="996" textLength="1464" clip-path="url(#terminal-367222518-line-40)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-367222518-r2" x="1464" y="996" textLength="12.2" clip-path="url(#terminal-367222518-line-40)">
-</text><text class="terminal-367222518-r4" x="0" y="1020.4" textLength="24.4" clip-path="url(#terminal-367222518-line-41)">╭─</text><text class="terminal-367222518-r4" x="24.4" y="1020.4" textLength="1415.2" clip-path="url(#terminal-367222518-line-41)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-367222518-r4" x="1439.6" y="1020.4" textLength="24.4" clip-path="url(#terminal- [...]
-</text><text class="terminal-367222518-r4" x="0" y="1044.8" textLength="12.2" clip-path="url(#terminal-367222518-line-42)">│</text><text class="terminal-367222518-r5" x="24.4" y="1044.8" textLength="12.2" clip-path="url(#terminal-367222518-line-42)">-</text><text class="terminal-367222518-r5" x="36.6" y="1044.8" textLength="48.8" clip-path="url(#terminal-367222518-line-42)">-dry</text><text class="terminal-367222518-r5" x="85.4" y="1044.8" textLength="48.8" clip-path="url(#terminal-36722 [...]
-</text><text class="terminal-367222518-r4" x="0" y="1069.2" textLength="12.2" clip-path="url(#terminal-367222518-line-43)">│</text><text class="terminal-367222518-r5" x="24.4" y="1069.2" textLength="12.2" clip-path="url(#terminal-367222518-line-43)">-</text><text class="terminal-367222518-r5" x="36.6" y="1069.2" textLength="97.6" clip-path="url(#terminal-367222518-line-43)">-verbose</text><text class="terminal-367222518-r7" x="158.6" y="1069.2" textLength="24.4" clip-path="url(#terminal- [...]
-</text><text class="terminal-367222518-r4" x="0" y="1093.6" textLength="12.2" clip-path="url(#terminal-367222518-line-44)">│</text><text class="terminal-367222518-r5" x="24.4" y="1093.6" textLength="12.2" clip-path="url(#terminal-367222518-line-44)">-</text><text class="terminal-367222518-r5" x="36.6" y="1093.6" textLength="61" clip-path="url(#terminal-367222518-line-44)">-help</text><text class="terminal-367222518-r7" x="158.6" y="1093.6" textLength="24.4" clip-path="url(#terminal-36722 [...]
-</text><text class="terminal-367222518-r4" x="0" y="1118" textLength="1464" clip-path="url(#terminal-367222518-line-45)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-367222518-r2" x="1464" y="1118" textLength="12.2" clip-path="url(#terminal-367222518-line-45)">
+    <g class="terminal-2393207375-matrix">
+    <text class="terminal-2393207375-r2" x="1464" y="20" textLength="12.2" clip-path="url(#terminal-2393207375-line-0)">
+</text><text class="terminal-2393207375-r3" x="12.2" y="44.4" textLength="85.4" clip-path="url(#terminal-2393207375-line-1)">Usage:&#160;</text><text class="terminal-2393207375-r1" x="97.6" y="44.4" textLength="268.4" clip-path="url(#terminal-2393207375-line-1)">breeze&#160;testing&#160;tests&#160;[</text><text class="terminal-2393207375-r4" x="366" y="44.4" textLength="85.4" clip-path="url(#terminal-2393207375-line-1)">OPTIONS</text><text class="terminal-2393207375-r1" x="451.4" y="44.4 [...]
+</text><text class="terminal-2393207375-r2" x="1464" y="68.8" textLength="12.2" clip-path="url(#terminal-2393207375-line-2)">
+</text><text class="terminal-2393207375-r2" x="12.2" y="93.2" textLength="439.2" clip-path="url(#terminal-2393207375-line-3)">Run&#160;the&#160;specified&#160;unit&#160;test&#160;targets.</text><text class="terminal-2393207375-r2" x="1464" y="93.2" textLength="12.2" clip-path="url(#terminal-2393207375-line-3)">
+</text><text class="terminal-2393207375-r2" x="1464" y="117.6" textLength="12.2" clip-path="url(#terminal-2393207375-line-4)">
+</text><text class="terminal-2393207375-r5" x="0" y="142" textLength="24.4" clip-path="url(#terminal-2393207375-line-5)">╭─</text><text class="terminal-2393207375-r5" x="24.4" y="142" textLength="1415.2" clip-path="url(#terminal-2393207375-line-5)">&#160;Basic&#160;flag&#160;for&#160;tests&#160;command&#160;──────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2393207375-r5" x="1439.6" y="142" textLength="24.4" clip-path="url(# [...]
+</text><text class="terminal-2393207375-r5" x="0" y="166.4" textLength="12.2" clip-path="url(#terminal-2393207375-line-6)">│</text><text class="terminal-2393207375-r4" x="24.4" y="166.4" textLength="12.2" clip-path="url(#terminal-2393207375-line-6)">-</text><text class="terminal-2393207375-r4" x="36.6" y="166.4" textLength="146.4" clip-path="url(#terminal-2393207375-line-6)">-integration</text><text class="terminal-2393207375-r2" x="317.2" y="166.4" textLength="1110.2" clip-path="url(#te [...]
+</text><text class="terminal-2393207375-r5" x="0" y="190.8" textLength="12.2" clip-path="url(#terminal-2393207375-line-7)">│</text><text class="terminal-2393207375-r6" x="317.2" y="190.8" textLength="1110.2" clip-path="url(#terminal-2393207375-line-7)">(cassandra&#160;|&#160;kerberos&#160;|&#160;mongo&#160;|&#160;openldap&#160;|&#160;pinot&#160;|&#160;rabbitmq&#160;|&#160;redis&#160;|&#160;statsd&#160;|&#160;trino&#160;|&#160;all)</text><text class="terminal-2393207375-r5" x="1451.8" y=" [...]
+</text><text class="terminal-2393207375-r5" x="0" y="215.2" textLength="12.2" clip-path="url(#terminal-2393207375-line-8)">│</text><text class="terminal-2393207375-r4" x="24.4" y="215.2" textLength="12.2" clip-path="url(#terminal-2393207375-line-8)">-</text><text class="terminal-2393207375-r4" x="36.6" y="215.2" textLength="61" clip-path="url(#terminal-2393207375-line-8)">-test</text><text class="terminal-2393207375-r4" x="97.6" y="215.2" textLength="61" clip-path="url(#terminal-23932073 [...]
+</text><text class="terminal-2393207375-r5" x="0" y="239.6" textLength="12.2" clip-path="url(#terminal-2393207375-line-9)">│</text><text class="terminal-2393207375-r2" x="317.2" y="239.6" textLength="341.6" clip-path="url(#terminal-2393207375-line-9)">should&#160;be&#160;run&#160;-&#160;for&#160;example&#160;</text><text class="terminal-2393207375-r4" x="658.8" y="239.6" textLength="12.2" clip-path="url(#terminal-2393207375-line-9)">-</text><text class="terminal-2393207375-r4" x="671" y= [...]
+</text><text class="terminal-2393207375-r5" x="0" y="264" textLength="12.2" clip-path="url(#terminal-2393207375-line-10)">│</text><text class="terminal-2393207375-r6" x="317.2" y="264" textLength="1122.4" clip-path="url(#terminal-2393207375-line-10)">(All&#160;|&#160;API&#160;|&#160;Always&#160;|&#160;CLI&#160;|&#160;Core&#160;|&#160;Integration&#160;|&#160;Other&#160;|&#160;Providers&#160;|&#160;WWW&#160;|&#160;Helm&#160;|&#160;Postgres&#160;|</text><text class="terminal-2393207375-r5"  [...]
+</text><text class="terminal-2393207375-r5" x="0" y="288.4" textLength="12.2" clip-path="url(#terminal-2393207375-line-11)">│</text><text class="terminal-2393207375-r6" x="317.2" y="288.4" textLength="1122.4" clip-path="url(#terminal-2393207375-line-11)">MySQL&#160;|&#160;Quarantine)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
+</text><text class="terminal-2393207375-r5" x="0" y="312.8" textLength="12.2" clip-path="url(#terminal-2393207375-line-12)">│</text><text class="terminal-2393207375-r4" x="24.4" y="312.8" textLength="12.2" clip-path="url(#terminal-2393207375-line-12)">-</text><text class="terminal-2393207375-r4" x="36.6" y="312.8" textLength="61" clip-path="url(#terminal-2393207375-line-12)">-test</text><text class="terminal-2393207375-r4" x="97.6" y="312.8" textLength="97.6" clip-path="url(#terminal-239 [...]
+</text><text class="terminal-2393207375-r5" x="0" y="337.2" textLength="12.2" clip-path="url(#terminal-2393207375-line-13)">│</text><text class="terminal-2393207375-r6" x="317.2" y="337.2" textLength="988.2" clip-path="url(#terminal-2393207375-line-13)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
+</text><text class="terminal-2393207375-r5" x="0" y="361.6" textLength="12.2" clip-path="url(#terminal-2393207375-line-14)">│</text><text class="terminal-2393207375-r5" x="317.2" y="361.6" textLength="988.2" clip-path="url(#terminal-2393207375-line-14)">[default:&#160;60;&#160;x&gt;=0]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# [...]
+</text><text class="terminal-2393207375-r5" x="0" y="386" textLength="12.2" clip-path="url(#terminal-2393207375-line-15)">│</text><text class="terminal-2393207375-r4" x="24.4" y="386" textLength="12.2" clip-path="url(#terminal-2393207375-line-15)">-</text><text class="terminal-2393207375-r4" x="36.6" y="386" textLength="36.6" clip-path="url(#terminal-2393207375-line-15)">-db</text><text class="terminal-2393207375-r4" x="73.2" y="386" textLength="73.2" clip-path="url(#terminal-2393207375- [...]
+</text><text class="terminal-2393207375-r5" x="0" y="410.4" textLength="12.2" clip-path="url(#terminal-2393207375-line-16)">│</text><text class="terminal-2393207375-r4" x="24.4" y="410.4" textLength="12.2" clip-path="url(#terminal-2393207375-line-16)">-</text><text class="terminal-2393207375-r4" x="36.6" y="410.4" textLength="97.6" clip-path="url(#terminal-2393207375-line-16)">-backend</text><text class="terminal-2393207375-r7" x="268.4" y="410.4" textLength="24.4" clip-path="url(#termin [...]
+</text><text class="terminal-2393207375-r5" x="0" y="434.8" textLength="12.2" clip-path="url(#terminal-2393207375-line-17)">│</text><text class="terminal-2393207375-r4" x="24.4" y="434.8" textLength="12.2" clip-path="url(#terminal-2393207375-line-17)">-</text><text class="terminal-2393207375-r4" x="36.6" y="434.8" textLength="85.4" clip-path="url(#terminal-2393207375-line-17)">-python</text><text class="terminal-2393207375-r7" x="268.4" y="434.8" textLength="24.4" clip-path="url(#termina [...]
+</text><text class="terminal-2393207375-r5" x="0" y="459.2" textLength="12.2" clip-path="url(#terminal-2393207375-line-18)">│</text><text class="terminal-2393207375-r6" x="317.2" y="459.2" textLength="732" clip-path="url(#terminal-2393207375-line-18)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10&#160;|&#160;3.11)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-2393207375-r5" x="0" y="483.6" textLength="12.2" clip-path="url(#terminal-2393207375-line-19)">│</text><text class="terminal-2393207375-r5" x="317.2" y="483.6" textLength="732" clip-path="url(#terminal-2393207375-line-19)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-2393207375-r5" x="0" y="508" textLength="12.2" clip-path="url(#terminal-2393207375-line-20)">│</text><text class="terminal-2393207375-r4" x="24.4" y="508" textLength="12.2" clip-path="url(#terminal-2393207375-line-20)">-</text><text class="terminal-2393207375-r4" x="36.6" y="508" textLength="109.8" clip-path="url(#terminal-2393207375-line-20)">-postgres</text><text class="terminal-2393207375-r4" x="146.4" y="508" textLength="97.6" clip-path="url(#terminal-239 [...]
+</text><text class="terminal-2393207375-r5" x="0" y="532.4" textLength="12.2" clip-path="url(#terminal-2393207375-line-21)">│</text><text class="terminal-2393207375-r4" x="24.4" y="532.4" textLength="12.2" clip-path="url(#terminal-2393207375-line-21)">-</text><text class="terminal-2393207375-r4" x="36.6" y="532.4" textLength="73.2" clip-path="url(#terminal-2393207375-line-21)">-mysql</text><text class="terminal-2393207375-r4" x="109.8" y="532.4" textLength="97.6" clip-path="url(#terminal [...]
+</text><text class="terminal-2393207375-r5" x="0" y="556.8" textLength="12.2" clip-path="url(#terminal-2393207375-line-22)">│</text><text class="terminal-2393207375-r4" x="24.4" y="556.8" textLength="12.2" clip-path="url(#terminal-2393207375-line-22)">-</text><text class="terminal-2393207375-r4" x="36.6" y="556.8" textLength="73.2" clip-path="url(#terminal-2393207375-line-22)">-mssql</text><text class="terminal-2393207375-r4" x="109.8" y="556.8" textLength="97.6" clip-path="url(#terminal [...]
+</text><text class="terminal-2393207375-r5" x="0" y="581.2" textLength="1464" clip-path="url(#terminal-2393207375-line-23)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2393207375-r2" x="1464" y="581.2" textLength="12.2" clip-path="url(#terminal-2393207375-line-23)">
+</text><text class="terminal-2393207375-r5" x="0" y="605.6" textLength="24.4" clip-path="url(#terminal-2393207375-line-24)">╭─</text><text class="terminal-2393207375-r5" x="24.4" y="605.6" textLength="1415.2" clip-path="url(#terminal-2393207375-line-24)">&#160;Options&#160;for&#160;parallel&#160;test&#160;commands&#160;────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2393207375-r5" x="1439.6" y="605.6" textLength="24.4" clip-pat [...]
+</text><text class="terminal-2393207375-r5" x="0" y="630" textLength="12.2" clip-path="url(#terminal-2393207375-line-25)">│</text><text class="terminal-2393207375-r4" x="24.4" y="630" textLength="12.2" clip-path="url(#terminal-2393207375-line-25)">-</text><text class="terminal-2393207375-r4" x="36.6" y="630" textLength="48.8" clip-path="url(#terminal-2393207375-line-25)">-run</text><text class="terminal-2393207375-r4" x="85.4" y="630" textLength="146.4" clip-path="url(#terminal-239320737 [...]
+</text><text class="terminal-2393207375-r5" x="0" y="654.4" textLength="12.2" clip-path="url(#terminal-2393207375-line-26)">│</text><text class="terminal-2393207375-r4" x="24.4" y="654.4" textLength="12.2" clip-path="url(#terminal-2393207375-line-26)">-</text><text class="terminal-2393207375-r4" x="36.6" y="654.4" textLength="146.4" clip-path="url(#terminal-2393207375-line-26)">-parallelism</text><text class="terminal-2393207375-r2" x="378.2" y="654.4" textLength="915" clip-path="url(#te [...]
+</text><text class="terminal-2393207375-r5" x="0" y="678.8" textLength="12.2" clip-path="url(#terminal-2393207375-line-27)">│</text><text class="terminal-2393207375-r6" x="378.2" y="678.8" textLength="915" clip-path="url(#terminal-2393207375-line-27)">(INTEGER&#160;RANGE)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16 [...]
+</text><text class="terminal-2393207375-r5" x="0" y="703.2" textLength="12.2" clip-path="url(#terminal-2393207375-line-28)">│</text><text class="terminal-2393207375-r5" x="378.2" y="703.2" textLength="915" clip-path="url(#terminal-2393207375-line-28)">[default:&#160;4;&#160;1&lt;=x&lt;=8]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160 [...]
+</text><text class="terminal-2393207375-r5" x="0" y="727.6" textLength="12.2" clip-path="url(#terminal-2393207375-line-29)">│</text><text class="terminal-2393207375-r4" x="24.4" y="727.6" textLength="12.2" clip-path="url(#terminal-2393207375-line-29)">-</text><text class="terminal-2393207375-r4" x="36.6" y="727.6" textLength="61" clip-path="url(#terminal-2393207375-line-29)">-test</text><text class="terminal-2393207375-r4" x="97.6" y="727.6" textLength="73.2" clip-path="url(#terminal-239 [...]
+</text><text class="terminal-2393207375-r5" x="0" y="752" textLength="12.2" clip-path="url(#terminal-2393207375-line-30)">│</text><text class="terminal-2393207375-r5" x="378.2" y="752" textLength="780.8" clip-path="url(#terminal-2393207375-line-30)">[default:&#160;API&#160;Always&#160;CLI&#160;Core&#160;Integration&#160;Other&#160;Providers&#160;WWW]&#160;&#160;</text><text class="terminal-2393207375-r5" x="1451.8" y="752" textLength="12.2" clip-path="url(#terminal-2393207375-line-30)">│ [...]
+</text><text class="terminal-2393207375-r5" x="0" y="776.4" textLength="12.2" clip-path="url(#terminal-2393207375-line-31)">│</text><text class="terminal-2393207375-r4" x="24.4" y="776.4" textLength="12.2" clip-path="url(#terminal-2393207375-line-31)">-</text><text class="terminal-2393207375-r4" x="36.6" y="776.4" textLength="61" clip-path="url(#terminal-2393207375-line-31)">-skip</text><text class="terminal-2393207375-r4" x="97.6" y="776.4" textLength="97.6" clip-path="url(#terminal-239 [...]
+</text><text class="terminal-2393207375-r5" x="0" y="800.8" textLength="12.2" clip-path="url(#terminal-2393207375-line-32)">│</text><text class="terminal-2393207375-r4" x="24.4" y="800.8" textLength="12.2" clip-path="url(#terminal-2393207375-line-32)">-</text><text class="terminal-2393207375-r4" x="36.6" y="800.8" textLength="73.2" clip-path="url(#terminal-2393207375-line-32)">-debug</text><text class="terminal-2393207375-r4" x="109.8" y="800.8" textLength="122" clip-path="url(#terminal- [...]
+</text><text class="terminal-2393207375-r5" x="0" y="825.2" textLength="12.2" clip-path="url(#terminal-2393207375-line-33)">│</text><text class="terminal-2393207375-r4" x="24.4" y="825.2" textLength="12.2" clip-path="url(#terminal-2393207375-line-33)">-</text><text class="terminal-2393207375-r4" x="36.6" y="825.2" textLength="97.6" clip-path="url(#terminal-2393207375-line-33)">-include</text><text class="terminal-2393207375-r4" x="134.2" y="825.2" textLength="195.2" clip-path="url(#termi [...]
+</text><text class="terminal-2393207375-r5" x="0" y="849.6" textLength="1464" clip-path="url(#terminal-2393207375-line-34)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2393207375-r2" x="1464" y="849.6" textLength="12.2" clip-path="url(#terminal-2393207375-line-34)">
+</text><text class="terminal-2393207375-r5" x="0" y="874" textLength="24.4" clip-path="url(#terminal-2393207375-line-35)">╭─</text><text class="terminal-2393207375-r5" x="24.4" y="874" textLength="1415.2" clip-path="url(#terminal-2393207375-line-35)">&#160;Advanced&#160;flag&#160;for&#160;tests&#160;command&#160;───────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2393207375-r5" x="1439.6" y="874" textLength="24.4" clip-path="url [...]
+</text><text class="terminal-2393207375-r5" x="0" y="898.4" textLength="12.2" clip-path="url(#terminal-2393207375-line-36)">│</text><text class="terminal-2393207375-r4" x="24.4" y="898.4" textLength="12.2" clip-path="url(#terminal-2393207375-line-36)">-</text><text class="terminal-2393207375-r4" x="36.6" y="898.4" textLength="73.2" clip-path="url(#terminal-2393207375-line-36)">-image</text><text class="terminal-2393207375-r4" x="109.8" y="898.4" textLength="48.8" clip-path="url(#terminal [...]
+</text><text class="terminal-2393207375-r5" x="0" y="922.8" textLength="12.2" clip-path="url(#terminal-2393207375-line-37)">│</text><text class="terminal-2393207375-r5" x="280.6" y="922.8" textLength="963.8" clip-path="url(#terminal-2393207375-line-37)">[default:&#160;latest]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]
+</text><text class="terminal-2393207375-r5" x="0" y="947.2" textLength="12.2" clip-path="url(#terminal-2393207375-line-38)">│</text><text class="terminal-2393207375-r4" x="24.4" y="947.2" textLength="12.2" clip-path="url(#terminal-2393207375-line-38)">-</text><text class="terminal-2393207375-r4" x="36.6" y="947.2" textLength="73.2" clip-path="url(#terminal-2393207375-line-38)">-mount</text><text class="terminal-2393207375-r4" x="109.8" y="947.2" textLength="97.6" clip-path="url(#terminal [...]
+</text><text class="terminal-2393207375-r5" x="0" y="971.6" textLength="12.2" clip-path="url(#terminal-2393207375-line-39)">│</text><text class="terminal-2393207375-r6" x="280.6" y="971.6" textLength="1159" clip-path="url(#terminal-2393207375-line-39)">(selected&#160;|&#160;all&#160;|&#160;skip&#160;|&#160;remove)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
+</text><text class="terminal-2393207375-r5" x="0" y="996" textLength="12.2" clip-path="url(#terminal-2393207375-line-40)">│</text><text class="terminal-2393207375-r5" x="280.6" y="996" textLength="1159" clip-path="url(#terminal-2393207375-line-40)">[default:&#160;selected]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1 [...]
+</text><text class="terminal-2393207375-r5" x="0" y="1020.4" textLength="1464" clip-path="url(#terminal-2393207375-line-41)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2393207375-r2" x="1464" y="1020.4" textLength="12.2" clip-path="url(#terminal-2393207375-line-41)">
+</text><text class="terminal-2393207375-r5" x="0" y="1044.8" textLength="24.4" clip-path="url(#terminal-2393207375-line-42)">╭─</text><text class="terminal-2393207375-r5" x="24.4" y="1044.8" textLength="1415.2" clip-path="url(#terminal-2393207375-line-42)">&#160;Common&#160;options&#160;────────────────────────────────────────────────────────────────────────────────────────────────────</text><text class="terminal-2393207375-r5" x="1439.6" y="1044.8" textLength="24.4" clip-path="url(#term [...]
+</text><text class="terminal-2393207375-r5" x="0" y="1069.2" textLength="12.2" clip-path="url(#terminal-2393207375-line-43)">│</text><text class="terminal-2393207375-r4" x="24.4" y="1069.2" textLength="12.2" clip-path="url(#terminal-2393207375-line-43)">-</text><text class="terminal-2393207375-r4" x="36.6" y="1069.2" textLength="48.8" clip-path="url(#terminal-2393207375-line-43)">-dry</text><text class="terminal-2393207375-r4" x="85.4" y="1069.2" textLength="48.8" clip-path="url(#termina [...]
+</text><text class="terminal-2393207375-r5" x="0" y="1093.6" textLength="12.2" clip-path="url(#terminal-2393207375-line-44)">│</text><text class="terminal-2393207375-r4" x="24.4" y="1093.6" textLength="12.2" clip-path="url(#terminal-2393207375-line-44)">-</text><text class="terminal-2393207375-r4" x="36.6" y="1093.6" textLength="97.6" clip-path="url(#terminal-2393207375-line-44)">-verbose</text><text class="terminal-2393207375-r7" x="158.6" y="1093.6" textLength="24.4" clip-path="url(#te [...]
+</text><text class="terminal-2393207375-r5" x="0" y="1118" textLength="12.2" clip-path="url(#terminal-2393207375-line-45)">│</text><text class="terminal-2393207375-r4" x="24.4" y="1118" textLength="12.2" clip-path="url(#terminal-2393207375-line-45)">-</text><text class="terminal-2393207375-r4" x="36.6" y="1118" textLength="61" clip-path="url(#terminal-2393207375-line-45)">-help</text><text class="terminal-2393207375-r7" x="158.6" y="1118" textLength="24.4" clip-path="url(#terminal-239320 [...]
+</text><text class="terminal-2393207375-r5" x="0" y="1142.4" textLength="1464" clip-path="url(#terminal-2393207375-line-46)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text class="terminal-2393207375-r2" x="1464" y="1142.4" textLength="12.2" clip-path="url(#terminal-2393207375-line-46)">
 </text>
     </g>
     </g>
diff --git a/setup.cfg b/setup.cfg
index f6ba7e946e..1dd0f3b88d 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -39,6 +39,7 @@ classifiers =
     Programming Language :: Python :: 3.8
     Programming Language :: Python :: 3.9
     Programming Language :: Python :: 3.10
+    Programming Language :: Python :: 3.11
     Topic :: System :: Monitoring
     Framework :: Apache Airflow
 project_urls =