From: Samuli Silvius Date: Thu, 9 May 2019 11:53:43 +0000 (+0300) Subject: Make aio.sh rerunnable X-Git-Tag: 0.4.0~18^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=82d0d313427bf78a37726cd592f566c7ce840bd6;p=multicloud%2Fk8s.git Make aio.sh rerunnable aio.sh script can be run only ones. Cloning of k8s on top of existing dir does not work and ssh key generation on top of existing key does not work. Issue-ID: MULTICLOUD-620 Change-Id: Ic60dfd6b96ab78f6edcdc3655c18f90c4427c856 Signed-off-by: Samuli Silvius --- diff --git a/kud/hosting_providers/vagrant/aio.sh b/kud/hosting_providers/vagrant/aio.sh index 31663af5..0d06cc65 100755 --- a/kud/hosting_providers/vagrant/aio.sh +++ b/kud/hosting_providers/vagrant/aio.sh @@ -18,6 +18,7 @@ if [[ $(whoami) != 'root' ]];then fi echo "Cloning and configuring KUD project..." +rm -rf k8s git clone https://git.onap.org/multicloud/k8s/ cd k8s/kud/hosting_providers/baremetal/ cat < inventory/hosts.ini @@ -47,6 +48,7 @@ kube-node kube-master EOL sed -i '/andrewrothstein.kubectl/d' ../../deployment_infra/playbooks/configure-*.yml +rm -f ~/.ssh/id_rsa echo -e "\n\n\n" | ssh-keygen -t rsa -N "" cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys chmod og-wx ~/.ssh/authorized_keys