diff options
author | Michael Polenchuk <mpolenchuk@mirantis.com> | 2017-06-29 15:52:28 +0400 |
---|---|---|
committer | Michael Polenchuk <mpolenchuk@mirantis.com> | 2017-07-03 11:18:25 +0400 |
commit | e49e91d7aa740437c01e6531ef648d2dae97c11d (patch) | |
tree | 4227d9f205f59d5a6a1cdf086ad689dfc4bcb477 /mcp/reclass/scripts/salt.sh | |
parent | 3fb5e5454045860463a92c18d4d859967002e6fb (diff) |
Rewrite infra deployment scripts
* bring in scenario files
* shift infra code into functions
Change-Id: I650a26d03d842c3afcc7fcb97b84ef4826827a38
Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
Diffstat (limited to 'mcp/reclass/scripts/salt.sh')
-rwxr-xr-x | mcp/reclass/scripts/salt.sh | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/mcp/reclass/scripts/salt.sh b/mcp/reclass/scripts/salt.sh deleted file mode 100755 index 3b6fa9900..000000000 --- a/mcp/reclass/scripts/salt.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/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 |