From 11f469cb8e137fb7ba83b085a433635be6cbc797 Mon Sep 17 00:00:00 2001 From: Naga Ravi Chaitanya Elluri Date: Wed, 24 Aug 2022 12:55:23 -0400 Subject: [PATCH] Update install sources to use the latest release --- containers/Dockerfile | 2 +- containers/Dockerfile-ppc64le | 2 +- docs/installation.md | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/containers/Dockerfile b/containers/Dockerfile index 7fdbfb12..467c1f05 100644 --- a/containers/Dockerfile +++ b/containers/Dockerfile @@ -21,7 +21,7 @@ COPY --from=azure-cli /usr/local/bin/az /usr/bin/az RUN yum install epel-release -y && \ yum install -y git python39 python3-pip jq gettext && \ python3.9 -m pip install -U pip && \ - git clone https://github.com/openshift-scale/kraken /root/kraken && \ + git clone https://github.com/redhat-chaos/krkn.git --branch v1.0.0 /root/kraken && \ mkdir -p /root/.kube && cd /root/kraken && \ pip3.9 install -r requirements.txt diff --git a/containers/Dockerfile-ppc64le b/containers/Dockerfile-ppc64le index 8a768828..724900c3 100644 --- a/containers/Dockerfile-ppc64le +++ b/containers/Dockerfile-ppc64le @@ -15,7 +15,7 @@ RUN curl -L -o openshift-client-linux.tar.gz https://mirror.openshift.com/pub/op # Install dependencies 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 && \ +git clone https://github.com/redhat-chaos/krkn.git --branch v1.0.0 /root/kraken && \ mkdir -p /root/.kube && cd /root/kraken && \ pip3 install cryptography==3.3.2 && \ pip3 install -r requirements.txt setuptools==40.3.0 urllib3==1.25.4 diff --git a/docs/installation.md b/docs/installation.md index fa496285..c03272b9 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -14,8 +14,9 @@ The following ways are supported to run Kraken: ### Git #### Clone the repository +Pick the latest stable release to install [here](https://github.com/redhat-chaos/krkn/releases). ``` -$ git clone https://github.com/chaos-kubox/krkn.git +$ git clone https://github.com/redhat-chaos/krkn.git --branch $ cd kraken ```