Create phoronix job for mosk-bm environment
Related-Prod: PROD-37294
Change-Id: Id9abf2499f985ca81e6571cf649b500f09ccd0be
diff --git a/bm_mcc_mosk/utils/openstack_client_activate.sh b/bm_mcc_mosk/utils/openstack_client_activate.sh
new file mode 100644
index 0000000..779beec
--- /dev/null
+++ b/bm_mcc_mosk/utils/openstack_client_activate.sh
@@ -0,0 +1,9 @@
+#!/bin/bash
+if [ ! -d $PWD/openstack_venv ]; then
+ virtualenv openstack_venv
+ . $PWD/openstack_venv/bin/activate
+ pip install python-openstackclient python-heatclient keystoneauth1 python-glanceclient
+else
+ . $PWD/openstack_venv/bin/activate
+fi
+export OS_CLOUD=admin
\ No newline at end of file