salt.sh: DEBIAN_FRONTEND=noninteractive
[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 -e << SALT_INSTALL_END
32   sudo -i
33   set -e
34
35   echo -n 'Checking out cloud-init has finished running ...'
36   while [ ! -f /var/lib/cloud/instance/boot-finished ]; do echo -n '.'; sleep 1; done
37   echo ' done'
38
39   mkdir -p /srv/salt /usr/share/salt-formulas/reclass
40   mv ${OPNFV_TMP_DIR} ${OPNFV_FUEL_DIR} && chown -R root.root ${OPNFV_FUEL_DIR}
41   ln -s ${OPNFV_FUEL_DIR}/mcp/reclass /srv/salt/reclass
42   ln -s ${OPNFV_FUEL_DIR}/mcp/deploy/scripts /srv/salt/scripts
43   cd /srv/salt/${OPNFV_RDIR} && ln -s "\$(uname -i)" arch
44
45   cp -r ${OPNFV_FUEL_DIR}/mcp/metadata/service /usr/share/salt-formulas/reclass
46   cd /srv/salt/reclass/classes/service && \
47     ln -s /usr/share/salt-formulas/reclass/service/opendaylight
48   cd ${OPNFV_FUEL_DIR}/mcp/patches && ./patch.sh patches.list reclass
49
50   cd /srv/salt/scripts
51   export DEBIAN_FRONTEND=noninteractive
52   BOOTSTRAP_SALTSTACK_OPTS=" -r -dX stable 2016.11 " \
53     MASTER_HOSTNAME=cfg01.${CLUSTER_DOMAIN} DISTRIB_REVISION=nightly \
54       EXTRA_FORMULAS="nfs" \
55         ./salt-master-init.sh
56   salt-key -Ay
57
58   cp -r ${OPNFV_FUEL_DIR}/mcp/salt-formulas/* /usr/share/salt-formulas/env
59   cd ${OPNFV_FUEL_DIR}/mcp/patches && ./patch.sh patches.list formulas
60
61   salt-call state.apply salt
62   salt '*' saltutil.sync_all
63   salt '*' state.apply salt | grep -Fq 'No response' && salt '*' state.apply salt
64
65   salt -C 'I@salt:master' state.sls linux
66   salt -C '* and not cfg01*' state.sls linux || true
67   salt -C '* and not cfg01*' pkg.upgrade refresh=False
68
69   salt '*' state.sls ntp
70
71   # Temporary fixup for mismatch between neutron formula and reclass model
72   salt-call pkg.install salt-formula-neutron allow_updates=False refresh=False \
73     version=2016.12.1+201709251458.f0607d9-1xenial1
74   cd ${OPNFV_FUEL_DIR}/mcp/patches && ./patch.sh patches_neutron.list formulas
75 SALT_INSTALL_END