salt.sh: Stick to older salt-formula-neutron
[fuel.git] / mcp / scripts / salt.sh
1 #!/bin/bash
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 F_GIT_ROOT=$(git rev-parse --show-toplevel)
14 OPNFV_TMP_DIR="/home/${SALT_MASTER_USER}/fuel"
15 OPNFV_FUEL_DIR="/root/fuel"
16 OPNFV_RDIR="reclass/classes/cluster/all-mcp-ocata-common"
17 LOCAL_PDF_RECLASS=$1
18
19 # push to cfg01 current git repo first (including submodules), at ~ubuntu/fuel
20 # later we move it to ~root/fuel and delete the temporary clone
21 rsync -Erl --delete -e "ssh ${SSH_OPTS}" \
22   --exclude-from="${F_GIT_ROOT}/.gitignore" \
23   "${F_GIT_ROOT}/" "${SSH_SALT}:$(basename "${OPNFV_TMP_DIR}")/"
24 if [ -n "${LOCAL_PDF_RECLASS}" ] && [ -f "${LOCAL_PDF_RECLASS}" ]; then
25   rsync -e "ssh ${SSH_OPTS}" "${LOCAL_PDF_RECLASS}" \
26     "${SSH_SALT}:$(basename "${OPNFV_TMP_DIR}")/mcp/${OPNFV_RDIR}/opnfv/"
27 fi
28
29 # ssh to cfg01
30 # shellcheck disable=SC2086,2087
31 ssh ${SSH_OPTS} "${SSH_SALT}" bash -s << SALT_INSTALL_END
32   sudo -i
33
34   echo -n 'Checking out cloud-init has finished running ...'
35   while [ ! -f /var/lib/cloud/instance/boot-finished ]; do echo -n '.'; sleep 1; done
36   echo ' done'
37
38   mkdir -p /srv/salt /usr/share/salt-formulas/reclass
39   mv ${OPNFV_TMP_DIR} ${OPNFV_FUEL_DIR} && chown -R root.root ${OPNFV_FUEL_DIR}
40   ln -s ${OPNFV_FUEL_DIR}/mcp/reclass /srv/salt/reclass
41   ln -s ${OPNFV_FUEL_DIR}/mcp/deploy/scripts /srv/salt/scripts
42   cd /srv/salt/${OPNFV_RDIR} && ln -s "\$(uname -i)" arch
43
44   cp -r ${OPNFV_FUEL_DIR}/mcp/metadata/service /usr/share/salt-formulas/reclass
45   cd /srv/salt/reclass/classes/service && \
46     ln -s /usr/share/salt-formulas/reclass/service/opendaylight
47   cd ${OPNFV_FUEL_DIR}/mcp/patches && ./patch.sh patches.list reclass
48
49   cd /srv/salt/scripts
50   BOOTSTRAP_SALTSTACK_OPTS=" -r -dX stable 2016.11 " \
51     MASTER_HOSTNAME=cfg01.${CLUSTER_DOMAIN} DISTRIB_REVISION=nightly \
52       EXTRA_FORMULAS="nfs" \
53         ./salt-master-init.sh
54   salt-key -Ay
55
56   cp -r ${OPNFV_FUEL_DIR}/mcp/salt-formulas/* /usr/share/salt-formulas/env
57   cd ${OPNFV_FUEL_DIR}/mcp/patches && ./patch.sh patches.list formulas
58
59   salt-call state.apply salt
60   salt '*' saltutil.sync_all
61   salt '*' state.apply salt | fgrep -q 'No response' && salt '*' state.apply salt
62
63   salt -C 'I@salt:master' state.sls linux
64   salt -C '* and not cfg01*' state.sls linux
65   salt -C '* and not cfg01*' pkg.upgrade refresh=False
66
67   salt '*' state.sls ntp
68
69   # Temporary fixup for mismatch between neutron formula and reclass model
70   salt-call pkg.install salt-formula-neutron allow_updates=False refresh=False \
71     version=2016.12.1+201709251458.f0607d9-1xenial1
72 SALT_INSTALL_END