Chore: Update common-packer to latest v0.16.5
[releng/builder.git] / jjb / opendaylight-infra-copy-ssh-keys.sh
1 #!/bin/bash -l
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 function copy-ssh-keys-to-slave() {
15     RETRIES=60
16     for j in $(seq 1 $RETRIES); do
17         # shellcheck disable=SC2006,SC2092
18         if `ssh-copy-id -i /home/jenkins/.ssh/id_rsa.pub "jenkins@${i}" > /dev/null 2>&1`; then
19             ssh "jenkins@${i}" 'echo "$(facter ipaddress_eth0) $(/bin/hostname)" | sudo tee -a /etc/hosts'
20             echo "Successfully copied public keys to slave ${i}"
21             break
22         elif [ "$j" -eq $RETRIES ]; then
23             echo "SSH not responding on ${i} after $RETIRES tries. Giving up."
24
25             server=$(openstack port list -f value -c device_id --fixed-ip ip-address="${i}")
26             echo "Dumping console logs for $server ${i}"
27             openstack console log show "$server"
28
29             exit 1
30         else
31             echo "SSH not responding on ${i}. Retrying in 10 seconds..."
32             sleep 10
33         fi
34
35         # ping test to see if connectivity is available
36         if ping -c1 "${i}" &> /dev/null; then
37             echo "Ping to ${i} successful."
38         else
39             echo "Ping to ${i} failed."
40         fi
41     done
42 }
43
44 # Print the Stack outputs parameters so that we can identify which IPs belong
45 # to which VM types.
46 openstack stack show -c outputs "$STACK_NAME"
47
48 # shellcheck disable=SC2006,SC2207
49 ADDR=(`openstack stack show -f json -c outputs "$STACK_NAME" | \
50        jq -r '.outputs[] | \
51               select(.output_key | match("^vm_[0-9]+_ips\$")) | \
52               .output_value | .[]'`)
53 pids=""
54 for i in "${ADDR[@]}"; do
55     ( copy-ssh-keys-to-slave ) &
56     # Store PID of process
57     pids+=" $!"
58 done
59
60 # Detect when a process failed to copy ssh keys and fail build
61 for p in $pids; do
62     if wait "$p"; then
63         echo "Process $p successfully copied ssh keys."
64     else
65         echo "Process $p failed to copy ssh keys."
66         exit 1
67     fi
68 done
69 echo "Copying ssh keys complete."