From 7287f6fae3dc0613e62f15669b4c46daace69d61 Mon Sep 17 00:00:00 2001 From: Rasheed Amir Date: Sun, 25 Sep 2022 15:15:17 +0200 Subject: [PATCH 1/3] add roxctl client --- Dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 271283f..e00d138 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,7 @@ ENV GLIBC_VERSION=2.30-r0 \ ARGOCD_VERSION=v2.1.5 \ HELM_VERSION=3.6.1 \ KUBECONFORM=v0.4.14 \ + ROX_VERSION=3.63.0 \ HOME="/opt/root"\ JAVA_TOOL_OPTIONS="-Djava.net.preferIPv4Stack=true" @@ -89,7 +90,7 @@ RUN for f in "/etc/passwd" "/projects"; do \ chmod -R g+rwX ${f}; \ done -# Install sonarqube scanner +# install sonarqube scanner RUN wget https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-4.2.0.1873-linux.zip && \ unzip sonar-scanner-cli-4.2.0.1873-linux.zip && \ mv sonar-scanner-4.2.0.1873-linux /var/opt @@ -116,6 +117,11 @@ RUN pip3 install locust && \ locust --help && \ echo "Installed locust" +# roxctl client +RUN curl -sL -o /usr/local/bin/roxctl https://mirror.openshift.com/pub/rhacs/assets/${ROX_VERSION}/bin/Linux/roxctl && \ + chmod +x /usr/local/bin/roxctl && \ + echo "🦜🦜🦜🦜🦜" + # install yarn RUN npm install -g yarn From 908d2e2c573dfc2ee90c263ccf12c1cb0da15f7d Mon Sep 17 00:00:00 2001 From: AsfaMumtaz Date: Thu, 7 Sep 2023 14:18:44 +0500 Subject: [PATCH 2/3] Update rox cli version --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e00d138..2e73ab8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ ENV GLIBC_VERSION=2.30-r0 \ ARGOCD_VERSION=v2.1.5 \ HELM_VERSION=3.6.1 \ KUBECONFORM=v0.4.14 \ - ROX_VERSION=3.63.0 \ + ROX_VERSION=3.70.2 \ HOME="/opt/root"\ JAVA_TOOL_OPTIONS="-Djava.net.preferIPv4Stack=true" From 2bc4374b832c2f55233558c7320258591e802e02 Mon Sep 17 00:00:00 2001 From: AsfaMumtaz Date: Thu, 7 Sep 2023 15:17:27 +0500 Subject: [PATCH 3/3] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2e73ab8..34cd5b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -114,7 +114,7 @@ RUN wget https://github.com/yannh/kubeconform/releases/download/$KUBECONFORM/kub # install locust ( https://docs.locust.io/en/stable ) RUN pip3 install locust && \ - locust --help && \ + locust -V && \ echo "Installed locust" # roxctl client