aboutsummaryrefslogtreecommitdiffstats
path: root/test-apis-ci/sdc-api-tests/startup.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test-apis-ci/sdc-api-tests/startup.sh')
-rw-r--r--test-apis-ci/sdc-api-tests/startup.sh36
1 files changed, 0 insertions, 36 deletions
diff --git a/test-apis-ci/sdc-api-tests/startup.sh b/test-apis-ci/sdc-api-tests/startup.sh
deleted file mode 100644
index 7b102cadfd..0000000000
--- a/test-apis-ci/sdc-api-tests/startup.sh
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/bash
-
-# prepare env for HTTPS if used
-
-is_https=$(cat /root/chef-solo/environments/${ENVNAME}.json | \
- jq -cr '.default_attributes.disableHttp' | \
- tr '[:upper:]' '[:lower:]')
-
-if [ "$is_https" = true ] ; then
- # setup /etc/hosts
- SDC_FE_IP=$(cat /root/chef-solo/environments/${ENVNAME}.json | \
- jq -cr '.default_attributes.Nodes.FE')
- SDC_FE_HOSTNAME=$(cat /root/chef-solo/environments/${ENVNAME}.json | \
- jq -cr '.override_attributes.FE.domain_name')
- if ! grep -q "^[[:space:]]*${SDC_FE_IP}[[:space:]]" ; then
- echo "${SDC_FE_IP}" "${SDC_FE_HOSTNAME}" >> /etc/hosts
- fi
-fi
-
-# run tests
-
-cd /root/chef-solo
-chef-solo -c solo.rb -E ${ENVNAME}
-
-rc=$?
-
-if [[ $rc != 0 ]]; then
- echo "Startup failed !!!"
- exit $rc
-else
-# Note that the output below is monitored in CSIT by
-# sdc/sdc-os-chef/scripts/docker_run.sh
-# If this text is changed, docker_run.sh check for sdc-api-tests docker
-# startup must be adjusted accordingly!
- echo "Startup completed successfully"
-fi