diff --git a/cluster/cluster.sh b/cluster/cluster.sh index 608d8a4..d1151c8 100755 --- a/cluster/cluster.sh +++ b/cluster/cluster.sh @@ -15,22 +15,16 @@ export KUBEVIRT_PROVIDER=${KUBEVIRT_PROVIDER:-'k8s-1.34'} export KUBEVIRTCI_TAG=${KUBEVIRTCI_TAG:-2509181951-8264c60a} -KUBEVIRTCI_REPO='https://github.com/kubevirt/kubevirtci.git' # The CLUSTER_PATH var is used in cluster folder and points to the _kubevirtci where the cluster is deployed from. CLUSTER_PATH=${CLUSTER_PATH:-"${PWD}/_kubevirtci/"} -function cluster::_get_repo() { - git --git-dir ${CLUSTER_PATH}/.git remote get-url origin -} - function cluster::_get_tag() { git --git-dir ${CLUSTER_PATH}/.git describe --tags } function cluster::install() { - # Remove cloned kubevirtci repository if it does not match the requested one if [ -d ${CLUSTER_PATH} ]; then - if [ $(cluster::_get_repo) != ${KUBEVIRTCI_REPO} -o $(cluster::_get_tag) != ${KUBEVIRTCI_TAG} ]; then + if [[ $(cluster::_get_tag) != ${KUBEVIRTCI_TAG} ]]; then rm -rf ${CLUSTER_PATH} fi fi