OpenStack Heat Orchestration Templates
[releng/builder.git] / jjb / opendaylight-infra-copy-ssh-keys.sh
diff --git a/jjb/opendaylight-infra-copy-ssh-keys.sh b/jjb/opendaylight-infra-copy-ssh-keys.sh
new file mode 100644 (file)
index 0000000..0fad4bf
--- /dev/null
@@ -0,0 +1,48 @@
+#!/bin/bash
+function copy-ssh-keys-to-slave() {
+    RETRIES=60
+    for j in $(seq 1 $RETRIES); do
+        if `ssh-copy-id -i /home/jenkins/.ssh/id_rsa.pub "jenkins@${i}" > /dev/null 2>&1`; then
+            ssh jenkins@${i} 'echo "$(facter ipaddress_eth0) $(/bin/hostname)" | sudo tee -a /etc/hosts'
+            echo "Successfully copied public keys to slave ${i}"
+            break
+        elif [ $j -eq $RETRIES ]; then
+            echo "SSH not responding on ${i} after $RETIRES tries. Giving up."
+            exit 1
+        else
+            echo "SSH not responding on ${i}. Retrying in 10 seconds..."
+            sleep 10
+        fi
+    done
+}
+
+# TODO: Remove condition when we no longer use JClouds plugin
+if [ -z "$JCLOUDS_IPS" ]; then
+    # If JCLOUDS_IPS is not set then we will spawn instances with
+    # OpenStack Heat.
+    source $WORKSPACE/.venv-openstack/bin/activate
+    CONTROLLER_IPS=`openstack --os-cloud rackspace stack show -f json -c outputs $STACK_NAME | jq -r '.outputs[] | select(.output_key=="vm_0_ips") | .output_value[]'`
+    MININET_IPS=`openstack --os-cloud rackspace stack show -f json -c outputs $STACK_NAME | jq -r '.outputs[] | select(.output_key=="vm_1_ips") | .output_value[]'`
+    ADDR=($CONTROLLER_IPS $MININET_IPS)
+else
+    echo "OpenStack IPS are ${JCLOUDS_IPS}"
+    IFS=',' read -ra ADDR <<< "${JCLOUDS_IPS}"
+fi
+
+pids=""
+for i in "${ADDR[@]}"; do
+    ( copy-ssh-keys-to-slave ) &
+    # Store PID of process
+    pids+=" $!"
+done
+
+# Detect when a process failed to copy ssh keys and fail build
+for p in $pids; do
+    if wait $p; then
+        echo "Process $p successfully copied ssh keys."
+    else
+        echo "Process $p failed to copy ssh keys."
+        exit 1
+    fi
+done
+echo "Copying ssh keys complete."