Merge "Create mininet image with OVS 2.6.1"
[releng/builder.git] / jjb / opendaylight-infra-copy-ssh-keys.sh
1 #!/bin/bash
2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2017 The Linux Foundation and others.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Eclipse Public License v1.0
8 # which accompanies this distribution, and is available at
9 # http://www.eclipse.org/legal/epl-v10.html
10 ##############################################################################
11
12 echo "----------> Copy ssh public keys to csit lab"
13
14 # shellcheck source=/tmp/v/openstack/bin/activate disable=SC1091
15 source "/tmp/v/openstack/bin/activate"
16
17 function copy-ssh-keys-to-slave() {
18     RETRIES=60
19     for j in $(seq 1 $RETRIES); do
20         # shellcheck disable=SC2092
21         if `ssh-copy-id -i /home/jenkins/.ssh/id_rsa.pub "jenkins@${i}" > /dev/null 2>&1`; then
22             ssh "jenkins@${i}" 'echo "$(facter ipaddress_eth0) $(/bin/hostname)" | sudo tee -a /etc/hosts'
23             echo "Successfully copied public keys to slave ${i}"
24             break
25         elif [ "$j" -eq $RETRIES ]; then
26             echo "SSH not responding on ${i} after $RETIRES tries. Giving up."
27             exit 1
28         else
29             echo "SSH not responding on ${i}. Retrying in 10 seconds..."
30             sleep 10
31         fi
32
33         # ping test to see if connectivity is available
34         if ping -c1 "${i}" &> /dev/null; then
35             echo "Ping to ${i} successful."
36         else
37             echo "Ping to ${i} failed."
38         fi
39     done
40 }
41
42 # Print the Stack outputs parameters so that we can identify which IPs belong
43 # to which VM types.
44 openstack stack show -c outputs "$STACK_NAME"
45
46 # shellcheck disable=SC2006
47 ADDR=(`openstack stack show -f json -c outputs "$STACK_NAME" | \
48        jq -r '.outputs[] | \
49               select(.output_key | match("^vm_[0-9]+_ips\$")) | \
50               .output_value | .[]'`)
51 pids=""
52 for i in "${ADDR[@]}"; do
53     ( copy-ssh-keys-to-slave ) &
54     # Store PID of process
55     pids+=" $!"
56 done
57
58 # Detect when a process failed to copy ssh keys and fail build
59 for p in $pids; do
60     if wait "$p"; then
61         echo "Process $p successfully copied ssh keys."
62     else
63         echo "Process $p failed to copy ssh keys."
64         exit 1
65     fi
66 done
67 echo "Copying ssh keys complete."