diff --git a/CI/master_test.sh b/CI/master_test.sh index 55cc5185..125d7ddb 100755 --- a/CI/master_test.sh +++ b/CI/master_test.sh @@ -3,7 +3,7 @@ mkdir master_gold_dir mkdir tmp cd master_gold_dir -git clone https://github.com/cloud-bulldozer/cerberus.git +git clone https://github.com/redhat-chaos/cerberus.git echo $PWD cd cerberus ./CI/tests/test_daemon_disabled.sh diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..99c89510 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,11 @@ +recursive-include ./CI * +recursive-include ./cerberus * +recursive-include ./config * +recursive-include ./containers * +recursive-include ./custom_checks * +recursive-include ./docs * +recursive-include ./history * +recursive-include ./media * +include start_cerberus.py +include kind-config.yml +include requirements.txt diff --git a/containers/Dockerfile b/containers/Dockerfile index 9786612f..c1053b8c 100644 --- a/containers/Dockerfile +++ b/containers/Dockerfile @@ -14,7 +14,7 @@ COPY --from=origintests /usr/bin/kubectl /usr/bin/kubectl # Install dependencies RUN yum install -y git python36 python3-pip gcc python3-devel zlib-devel libjpeg-devel && \ -git clone https://github.com/redhat-chaos/cerberus.git --branch v1.0.0 /root/cerberus && \ +git clone https://github.com/redhat-chaos/cerberus.git --branch v1.0.1 /root/cerberus && \ mkdir -p /root/.kube && cd /root/cerberus && \ pip3 install -r requirements.txt diff --git a/containers/Dockerfile-ppc64le b/containers/Dockerfile-ppc64le index 674575f8..243dbafe 100644 --- a/containers/Dockerfile-ppc64le +++ b/containers/Dockerfile-ppc64le @@ -18,7 +18,7 @@ RUN curl -L -o openshift-client-linux.tar.gz https://mirror.openshift.com/pub/op RUN yum install -y git python36 python3-pip gcc libffi-devel python36-devel openssl-devel gcc-c++ make && \ pip3 install cython && \ pip3 install numpy && \ -git clone https://github.com/redhat-chaos/cerberus.git --branch v1.0.0 /root/cerberus && \ +git clone https://github.com/redhat-chaos/cerberus.git --branch v1.0.1 /root/cerberus && \ mkdir -p /root/.kube && cd /root/cerberus && \ pip3 install -r requirements.txt && \ pip3 install setuptools==40.3.0 && \ diff --git a/setup.cfg b/setup.cfg index 8788ba65..6592ea38 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,6 @@ [metadata] name = cerberus +version = 1.0.1 description = TO guard cluster author = chaitanyaenr author-email = nelluri@redhat.com