Add temporary test playbook and job

Change-Id: I17b1f33a845c38c820c7273515f6ee2842b2df42
diff --git a/playbooks/test-playbook.yaml b/playbooks/test-playbook.yaml
new file mode 100644
index 0000000..ed465a7
--- /dev/null
+++ b/playbooks/test-playbook.yaml
@@ -0,0 +1,5 @@
+---
+- hosts: all
+  tasks:
+    - name: Debug sleep
+      shell: sleep 3600
diff --git a/zuul.d/sp-cinder.yaml b/zuul.d/sp-cinder.yaml
index 829370b..1756579 100644
--- a/zuul.d/sp-cinder.yaml
+++ b/zuul.d/sp-cinder.yaml
@@ -271,6 +271,28 @@
       kolla_cinder_volume_image_full: "cts.storpool.com/kolla/ubuntu-binary-cinder-volume:zed-ubuntu-jammy-pre-release"
       tempest_test_regex: volume
 
+- job:
+    name: test-job
+    pre-run:
+      - playbooks/setup-openstack-client/pre.yaml
+    run: playbooks/test-playbook.yaml
+    cleanup-run:
+      - playbooks/setup-openstack-client/post.yaml
+    timeout: 10800
+    nodeset: ubuntu2204-openstack-multi-node-mixed
+    attempts: 1
+    secrets:
+      # openstack-client
+      - name: OPENSTACK_DATA
+        secret: OPENSTACK_DATA
+      - name: RESOLVED_DATA
+        secret: RESOLVED_DATA
+    vars:
+      os_venv: "~/sp-venv-openstack"
+      zuul_copy_output:
+        /etc/multipath.conf: logs_txt
+        /etc/iscsi/iscsid.conf: logs_txt
+
 - project:
     name: openstack/cinder
     check:
@@ -299,3 +321,10 @@
 #      jobs:
 #        - kolla-cinder-storpool-tempest-iscsi-multipath:
 #            branches: master
+
+- project:
+    name: kolla-experiments
+    check:
+      jobs:
+        - test-job:
+            branches: master
\ No newline at end of file