Tobiko can be run through the `Test-operator `_. This can be done manually, following the Test-operator documentation but it may require some additional preparation tasks, like e.g. prepare ssh keys which are required by the Tobiko tests. To avoid extra manual steps, Tobiko can be run using `ci-framework `_. Clone ci-framework on the host with access to the OpenShift API:: $ git clone https://github.com/openstack-k8s-operators/ci-framework Install required ansible-galaxy dependencies:: $ cd ci-framework $ ansible-galaxy install -r requirements.yml Additionally create directory where ci-framework and Test-operator will store some data. In the example below it is `/tmp/ci-fmw`:: $ mkdir /tmp/ci-fmw Create Tobiko custom variables file. It will be placed in `ci-framework/custom/tobiko_vars.yaml` and its content should be something like:: $ cat custom/tobiko_vars.yaml --- ansible_user_dir: '/tmp/ci-fmw' cifmw_openshift_kubeconfig: '/home/zuul/.crc/machines/crc/kubeconfig' cifmw_run_tests: true cifmw_run_test_role: test_operator cifmw_test_operator_stages:  - name: tobiko-stage-1    type: tobiko    test_vars:      cifmw_test_operator_tobiko_image: 'quay.io/podified-antelope-centos9/openstack-tobiko'      cifmw_test_operator_tobiko_image_tag: 'current-podified'      cifmw_test_operator_tobiko_testenv: 'scenario -- tobiko/tests/scenario/neutron/test_network.py::BackgroundProcessTest'      cifmw_test_operator_tobiko_debug: true cifmw_test_operator_cleanup: false Most important lines in this file are ``cifmw_test_operator_tobiko_testenv`` where Tobiko test environment and even specific test(s) which should be run can be specified. There is also ``cifmw_test_operator_tobiko_debug`` which if set to `True` will prevent Tobiko POD to be deleted. After tests will finish, POD will still be there and it will be possible to connect to it and run or even modify Tobiko tests as needed. Now you can run tobiko tests using the `08-run-tests.yml` playbook:: $ ansible-playbook -i -vv \ -e @custom/tobiko_vars.yaml playbooks/08-run-tests.yml --flush-cache $@ And watch tobiko test pod being created:: $ watch 'oc get pods -A | grep "tobiko\|test-operator"' Test results should be found under:: {{ ansible_user_dir }}/ci-framework-data/tests/test-operator/ directory Cleanup: If ``cifmw_test_operator_cleanup`` was set to ``false``, you may want to clean up all the resources created by the test operator, before you run tobiko tests again:: $ oc -n openstack delete tempest/tempest-tests-tempest $ oc -n openstack delete tobiko/tobiko-tests-tobiko # Continue for other test resources (e. g. horizon), if deployed. $ oc -n openstack get pods -o name | grep test-operator-logs-pod | xargs -r oc -n openstack delete