summaryrefslogtreecommitdiffstats
path: root/deployment/scripts/install_openshift_ansible.sh
diff options
context:
space:
mode:
authorValerii Ponomarov <vponomar@redhat.com>2019-12-21 00:09:11 +0530
committerValerii Ponomarov <vponomar@redhat.com>2019-12-21 00:15:18 +0530
commitd28b637d972aa600ed15ef437e4cb59c53e0ca5e (patch)
tree5cefd011a1d3b6d2ebc395227494ed64dc1da286 /deployment/scripts/install_openshift_ansible.sh
parent678dd026c8961a713dec15a153ef9da64c6b171b (diff)
Delete 'deployment' dir as obsolete and not supported
'deployment' directory contains obsolete and unsupported approach for deploying OpenShift and GlusterFS storage. Separate deployment approach has already been used for significant amount of time. So, delete local 'directory' as it makes no sense to keep it. Moreover, it may be confusing for people who may try it out and see unpredictable errors. Change-Id: Ibf353500bab59853f597304cb9c1990102c000ef
Diffstat (limited to 'deployment/scripts/install_openshift_ansible.sh')
-rwxr-xr-xdeployment/scripts/install_openshift_ansible.sh35
1 files changed, 0 insertions, 35 deletions
diff --git a/deployment/scripts/install_openshift_ansible.sh b/deployment/scripts/install_openshift_ansible.sh
deleted file mode 100755
index c258587a..00000000
--- a/deployment/scripts/install_openshift_ansible.sh
+++ /dev/null
@@ -1,35 +0,0 @@
-#! /bin/bash
-#
-# List of expected input args:
-# - $1 is an env dir, i.e '/home/username/.../.tox/ocp3.6'
-# - $2 is a tag or PR to checkout from,
-# 1) TAG -> i.e. 'openshift-ansible-3.6.173.0.96-1' for OCP v3.6
-# See list of tags here: https://github.com/openshift/openshift-ansible/tags
-# 2) PR -> 'pull/12345/head'. Where '12345' is ID of a PR.
-# See list of PRs here: https://github.com/openshift/openshift-ansible/pulls
-# Note that PR is checked out, not cherry-picked.
-
-OPENSHIFT_ANSIBLE_GIT_URL='git://github.com/openshift/openshift-ansible.git'
-TARGET_DIR=$1/usr/share/ansible/openshift-ansible
-TAG=$2
-
-if [ -z "$TAG" ]; then
- # NOTE(vponomar): get latest tag by 3.X branch
- TAG=$(git ls-remote --tags $OPENSHIFT_ANSIBLE_GIT_URL \
- "refs/tags/openshift-ansible-$(echo $1 | grep -oE '[^tox\/ocp]+$').*" \
- | grep -v "\{\}" | sort -t / -k 3 -V | tail -n 1 | awk '{print $2}' )
- echo "Custom Git tag hasn't been specified, using latest Git tag '$TAG'"
-else
- echo "Using custom Git tag '$TAG'"
-fi
-
-TAG=${TAG/refs\/tags\//}
-
-if [[ ! -d $TARGET_DIR ]]; then
- mkdir -p $TARGET_DIR
- git clone --single-branch $OPENSHIFT_ANSIBLE_GIT_URL $TARGET_DIR
-fi
-
-cd $TARGET_DIR
-git fetch origin $TAG
-git reset --hard FETCH_HEAD