fc6b101b92971b6b42e734623430f6bc235ed725
[fuel.git] / mcp / scripts / salt.sh
1 #!/bin/bash -e
2 ##############################################################################
3 # Copyright (c) 2017 Mirantis Inc., Enea AB and others.
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9 #
10 # Deploy Salt Master
11 #
12
13 CI_DEBUG=${CI_DEBUG:-0}; [[ "${CI_DEBUG}" =~ (false|0) ]] || set -x
14 F_GIT_ROOT=$(git rev-parse --show-toplevel)
15 OPNFV_TMP_DIR="/home/${SALT_MASTER_USER}/fuel"
16 OPNFV_FUEL_DIR="/root/fuel"
17 OPNFV_RDIR="reclass/classes/cluster/all-mcp-ocata-common"
18 LOCAL_PDF_RECLASS=$1
19
20 # push to cfg01 current git repo first (including submodules), at ~ubuntu/fuel
21 # later we move it to ~root/fuel and delete the temporary clone
22 rsync -Erl --delete -e "ssh ${SSH_OPTS}" \
23   --exclude-from="${F_GIT_ROOT}/.gitignore" \
24   "${F_GIT_ROOT}/" "${SSH_SALT}:$(basename "${OPNFV_TMP_DIR}")/"
25 if [ -n "${LOCAL_PDF_RECLASS}" ] && [ -f "${LOCAL_PDF_RECLASS}" ]; then
26   rsync -e "ssh ${SSH_OPTS}" "${LOCAL_PDF_RECLASS}" \
27     "${SSH_SALT}:$(basename "${OPNFV_TMP_DIR}")/mcp/${OPNFV_RDIR}/opnfv/"
28 fi
29
30 # ssh to cfg01
31 # shellcheck disable=SC2086,2087
32 ssh ${SSH_OPTS} "${SSH_SALT}" bash -s -e << SALT_INSTALL_END
33   sudo -i
34   set -e
35
36   echo -n 'Checking out cloud-init has finished running ...'
37   while [ ! -f /var/lib/cloud/instance/boot-finished ]; do echo -n '.'; sleep 1; done
38   echo ' done'
39
40   mkdir -p /srv/salt /usr/share/salt-formulas/reclass
41   rm -rf ${OPNFV_FUEL_DIR}
42   mv ${OPNFV_TMP_DIR} ${OPNFV_FUEL_DIR} && chown -R root.root ${OPNFV_FUEL_DIR}
43   ln -sf ${OPNFV_FUEL_DIR}/mcp/reclass /srv/salt
44   ln -sf ${OPNFV_FUEL_DIR}/mcp/deploy/scripts /srv/salt
45   cd /srv/salt/${OPNFV_RDIR} && rm -f arch && ln -sf "\$(uname -i)" arch
46
47   cp -r ${OPNFV_FUEL_DIR}/mcp/metadata/service /usr/share/salt-formulas/reclass
48   cd /srv/salt/reclass/classes/service && \
49     ln -sf /usr/share/salt-formulas/reclass/service/opendaylight
50
51   cd /srv/salt/scripts
52   export DEBIAN_FRONTEND=noninteractive
53   BOOTSTRAP_SALTSTACK_OPTS=" -r -dX stable 2016.11 " \
54     MASTER_HOSTNAME=cfg01.${CLUSTER_DOMAIN} DISTRIB_REVISION=nightly \
55       EXTRA_FORMULAS="nfs" \
56         ./salt-master-init.sh
57   salt-key -Ay
58
59   cp -r ${OPNFV_FUEL_DIR}/mcp/salt-formulas/* /usr/share/salt-formulas/env
60   cd ${OPNFV_FUEL_DIR}/mcp/patches && ./patch.sh patches.list formulas
61   cd ${OPNFV_FUEL_DIR}/mcp/patches && ./patch.sh patches.list reclass
62
63   salt-call state.apply salt
64   salt '*' saltutil.sync_all
65   salt '*' state.apply salt | grep -Fq 'No response' && salt '*' state.apply salt
66
67   salt -C 'I@salt:master' state.sls linux
68   salt -C '* and not cfg01*' state.sls linux || true
69   salt -C '* and not cfg01*' pkg.upgrade refresh=False
70
71   salt '*' state.sls ntp
72
73   # Temporary fixup for mismatch between neutron formula and reclass model
74   salt-call pkg.install salt-formula-neutron allow_updates=False refresh=False \
75     version=2016.12.1+201709251458.f0607d9-1xenial1
76   cd ${OPNFV_FUEL_DIR}/mcp/patches && ./patch.sh patches_neutron.list formulas
77 SALT_INSTALL_END