From 03f6cb884b4ba8ac3d03000bc94b7816160da1c6 Mon Sep 17 00:00:00 2001 From: Tim Rozet Date: Thu, 30 Jun 2016 12:53:56 -0400 Subject: Adds overcloud ssh support and other fixes Changes include: - Copies root pub key to overcloud nodes - Introduces overcloud util command to login control/computes - Minor fixes to undercloud util command JIRA: APEX-192 Change-Id: I903fda4b1d232fc623137490630ac905ebb781d7 Signed-off-by: Tim Rozet --- ci/deploy.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'ci/deploy.sh') diff --git a/ci/deploy.sh b/ci/deploy.sh index abf3866b..663e9f6c 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -1083,6 +1083,19 @@ function configure_post_install { echo -e "${blue}INFO: Post Install Configuration Running...${reset}" + echo -e "${blue}INFO: Configuring ssh for root to overcloud nodes...${reset}" + # copy host key to instack + scp ${SSH_OPTIONS[@]} /root/.ssh/id_rsa.pub "stack@$UNDERCLOUD":jumphost_id_rsa.pub + + # add host key to overcloud nodes authorized keys + ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" << EOI +source stackrc +nodes=\$(nova list | grep -Eo "[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+") +for node in \$nodes; do +cat ~/jumphost_id_rsa.pub | ssh -T ${SSH_OPTIONS[@]} "heat-admin@\$node" 'cat >> ~/.ssh/authorized_keys' +done +EOI + ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" <