Add dependencies needed for performance monitoring

This commit is contained in:
Naga Ravi Chaitanya Elluri
2021-05-06 17:26:09 -04:00
parent 190cf5d462
commit e671754e66
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -13,7 +13,8 @@ COPY --from=origintests /usr/bin/oc /usr/bin/oc
COPY --from=origintests /usr/bin/kubectl /usr/bin/kubectl
# Install dependencies
RUN yum install -y git python36 python3-pip && \
RUN yum install epel-release -y && \
yum install -y git python36 python3-pip jq gettext && \
python3 -m pip install -U pip && \
git clone https://github.com/openshift-scale/kraken /root/kraken && \
mkdir -p /root/.kube && cd /root/kraken && \
+2 -1
View File
@@ -13,7 +13,8 @@ RUN curl -L -o openshift-client-linux.tar.gz https://mirror.openshift.com/pub/op
&& tar xf openshift-client-linux.tar.gz -C /usr/bin && rm -rf openshift-client-linux.tar.gz
# Install dependencies
RUN yum install -y git python36 python3-pip gcc libffi-devel python36-devel openssl-devel gcc-c++ make && \
RUN yum install epel-release -y && \
yum install -y git python36 python3-pip gcc libffi-devel python36-devel openssl-devel gcc-c++ make jq gettext && \
git clone https://github.com/cloud-bulldozer/kraken /root/kraken && \
mkdir -p /root/.kube && cd /root/kraken && \
pip3 install cryptography==3.3.2 && \