Rally scenarios file placement updates
Related-PROD: PROD-36856
Change-Id: If121bfd18adb6b43d69f68bf2268a88e13db2c3d
diff --git a/k8s/docker-mos-rally b/k8s/docker-mos-rally
index 67a0f8f..7d1b5d6 100644
--- a/k8s/docker-mos-rally
+++ b/k8s/docker-mos-rally
@@ -3,12 +3,16 @@
MAINTAINER Alex Savatieiev (a.savex@gmail.com)
WORKDIR /rally
-RUN sudo apt-get update && \
+RUN mkdir /rally/rally-files && \
+ sudo apt-get update && \
sudo apt-get install -y wget curl git
RUN git clone https://github.com/Mirantis/rally-plugins.git && \
cd rally-plugins/ && \
- pip3 install .
+ pip3 install . && \
+ cd /rally
+
+COPY ./rally-files/* /rally/rally-files/
ENTRYPOINT ["bash"]