From e49e91d7aa740437c01e6531ef648d2dae97c11d Mon Sep 17 00:00:00 2001 From: Michael Polenchuk Date: Thu, 29 Jun 2017 15:52:28 +0400 Subject: Rewrite infra deployment scripts * bring in scenario files * shift infra code into functions Change-Id: I650a26d03d842c3afcc7fcb97b84ef4826827a38 Signed-off-by: Michael Polenchuk --- mcp/scripts/salt.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 mcp/scripts/salt.sh (limited to 'mcp/scripts/salt.sh') diff --git a/mcp/scripts/salt.sh b/mcp/scripts/salt.sh new file mode 100755 index 000000000..56a6fb3b8 --- /dev/null +++ b/mcp/scripts/salt.sh @@ -0,0 +1,23 @@ +#!/bin/bash +# +# Deploy Salt Master +# + +# ssh to cfg01 +ssh ${SSH_OPTS} ubuntu@${SALT_MASTER} bash -s << SALT_INSTALL_END + sudo -i + + echo -n 'Checking out cloud-init has finished running ...' + while [ ! -f /var/lib/cloud/instance/boot-finished ]; do echo -n '.'; sleep 1; done + echo ' done' + + apt-get install -y git curl subversion + + svn export --force https://github.com/salt-formulas/salt-formulas/trunk/deploy/scripts /srv/salt/scripts + git clone --depth=1 --recurse-submodules https://git.opnfv.org/fuel + ln -s /root/fuel/mcp/reclass /srv/salt/reclass + + cd /srv/salt/scripts + MASTER_HOSTNAME=cfg01.${CLUSTER_DOMAIN} DISTRIB_REVISION=nightly ./salt-master-init.sh + salt-key -Ay +SALT_INSTALL_END -- cgit 1.2.3-korg