Remove the NODE_NAME judgement in compass scripts
[ci-management.git] / jjb / iec / iec-seba_on_arm.sh
1 #!/bin/bash
2 # SPDX-license-identifier: Apache-2.0
3 ##############################################################################
4 # Copyright (c) 2019 Enea Software AB and others.
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10
11 export TERM="vt220"
12
13 echo "JOB_NAME=${JOB_NAME}"
14
15 case "${JOB_NAME}" in
16   *fuel*)
17     K8S_MASTER_IP=$(docker exec fuel cat /etc/hosts | grep iec01 \
18                     | awk '{print $1}')
19     # On Fuel deployements the K8s ssh key is the one used by the deploy job
20     K8S_SSH_KEY=${SSH_KEY}
21     IEC_DIR="/home/${K8S_SSH_USER}/iec"
22     ;;
23   *)
24     echo "Cannot determine installer from ${JOB_NAME}"
25     exit 1
26     ;;
27 esac
28
29 if [ -z "$K8S_SSH_USER" ]
30 then
31   echo "K8S_SSH_USER not set, cannot ssh to install SEBA"
32   exit 1
33 fi
34
35 INSTALL_CMD="cd ${IEC_DIR}/src/use_cases/seba_on_arm/install; ./install.sh"
36
37 if [ -n "${K8S_SSH_PASSWORD}" ]
38 then
39   sshpass -o StrictHostKeyChecking=no -p "${K8S_SSH_PASSWORD}" \
40     "${K8S_SSH_USER}"@"${K8S_MASTER_IP}" "${INSTALL_CMD}"
41 elif [ -n "${K8S_SSH_KEY}" ]
42 then
43   ssh -o StrictHostKeyChecking=no -i "${K8S_SSH_KEY}" \
44     "${K8S_SSH_USER}"@"${K8S_MASTER_IP}" "${INSTALL_CMD}"
45 else
46   echo "Neither K8S_SSH_USER or K8S_SSH_KEY set. Cannot ssh to K8S Master"
47   exit 1
48 fi
49
50 exit 0