Separate pods for Ubuntu Rally due to dependency mess

  Related-PROD: PROD-36128

Change-Id: I5020af4ba036cab9a59403610a4a2ce40678abc9
diff --git a/k8s/rally-files/init-rally.sh b/k8s/rally-files/init-rally.sh
new file mode 100644
index 0000000..797cf0b
--- /dev/null
+++ b/k8s/rally-files/init-rally.sh
@@ -0,0 +1,25 @@
+#!/bin/bash
+cd /artifacts
+# Installing prerequisites
+#apt -y update
+#apt -y install python3-pip vim git iperf3 mtr htop iputils-ping traceroute tcpdump wget iproute2 curl
+#pip3 install rally-openstack python-neutronclient pyghmi
+
+# Prepare Rally
+rally db create
+
+# Create openstack env
+rally env create --from-sysenv --name openstack
+rally env check
+
+# Prepare rally for kubernetes
+bash res-files/k8s/gen_kubespec.sh ./mos-kubeconf.yaml
+git clone https://github.com/Mirantis/rally-plugins.git
+cd rally-plugins/
+pip3 install .
+rally plugin list | grep kubernetes
+
+# Configure kubernetes
+rally env create --name kubernetes --spec /artifacts/kubespec_generated.yaml
+rally env check
+cd /artifacts