23840f8f6f
* remove unused kube-proxy credential substitutions * add liveness & readiness probes to promenade-api * fix misleading log message about tar file caching * don't accidentally overwrite TEMP_DIR variable in functions * add on_error script for genesis Change-Id: I5d5b46489fa8c0a10200cbac8cf59462030eb144
23 lines
502 B
Bash
23 lines
502 B
Bash
set -e
|
|
set -o nounset
|
|
|
|
LIB_DIR=$(realpath "$(dirname "${BASH_SOURCE}")")
|
|
|
|
source "$LIB_DIR"/config.sh
|
|
source "$LIB_DIR"/const.sh
|
|
source "$LIB_DIR"/docker.sh
|
|
source "$LIB_DIR"/etcd.sh
|
|
source "$LIB_DIR"/kube.sh
|
|
source "$LIB_DIR"/log.sh
|
|
source "$LIB_DIR"/nginx.sh
|
|
source "$LIB_DIR"/openstack.sh
|
|
source "$LIB_DIR"/promenade.sh
|
|
source "$LIB_DIR"/registry.sh
|
|
source "$LIB_DIR"/ssh.sh
|
|
source "$LIB_DIR"/validate.sh
|
|
source "$LIB_DIR"/virsh.sh
|
|
|
|
if [[ -v GATE_DEBUG && ${GATE_DEBUG} = "1" ]]; then
|
|
set -x
|
|
fi
|