This repository has been archived on 2020-05-07. You can view files and clone it, but cannot push or open issues or pull requests.
dokku-ansible-deploy/functions

120 lines
3.6 KiB
Plaintext
Raw Normal View History

2020-04-07 14:10:31 +00:00
#!/usr/bin/env bash
2020-04-07 14:29:32 +00:00
2020-04-07 15:01:56 +00:00
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
# shellcheck disable=SC1090
2020-04-07 15:01:56 +00:00
source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
2020-04-07 14:29:32 +00:00
dokku-ansible-deploy-validate-dependencies() {
# shellcheck disable=SC2034
2020-04-07 14:29:32 +00:00
declare desc="check that ansible dependencies are available"
if ! command -v "ansible-playbook" &>/dev/null; then
dokku_col_log_info1_quiet "Missing ansible dependency, run dokku plugin:install-dependencies"
exit 1
fi
}
dokku-ansible-deploy-vault-pass-cmd() {
# shellcheck disable=SC2034
2020-04-07 14:52:18 +00:00
declare desc="add new app vault password for decryption of passwords"
2020-04-07 14:29:32 +00:00
2020-04-13 07:26:01 +00:00
declare APP="$2"
declare vault_file="$DOKKU_LIB_ROOT/data/deploy.d/$APP/.vault-password.sh"
2020-04-07 14:29:32 +00:00
2020-04-13 07:26:01 +00:00
if [[ ! -n "$APP" ]]; then
dokku_col_log_info1_quiet "missing app name, try 'dokku ansible-deploy:vault-pass myappname'"
2020-04-07 15:00:49 +00:00
exit 1
fi
2020-04-07 14:29:32 +00:00
if [[ -f $vault_file ]]; then
2020-04-13 07:26:01 +00:00
dokku_col_log_info1_quiet "Vault password already setup for $APP"
2020-04-07 14:29:32 +00:00
exit 0
fi
# shellcheck disable=SC2162 disable=SC2116 disable=SC2006
2020-04-13 07:26:01 +00:00
read -p "Please enter your vault password for $APP: `echo $'\n> '`" vault_password
2020-04-07 14:29:32 +00:00
2020-04-13 07:26:01 +00:00
if [[ ! -d "$DOKKU_LIB_ROOT/data/deploy.d/$APP" ]]; then
mkdir -p "$DOKKU_LIB_ROOT/data/deploy.d/$APP"
2020-04-07 14:29:32 +00:00
fi
2020-04-13 07:26:01 +00:00
dokku_col_log_info1_quiet "Created $DOKKU_LIB_ROOT/data/deploy.d/$APP"
2020-04-07 14:29:32 +00:00
{ echo "#!/bin/bash";
echo "";
echo "set -eu -o pipefail";
echo "";
echo "echo \"$vault_password\""; } > "$vault_file"
chmod +x "$vault_file"
2020-04-13 07:26:01 +00:00
dokku_col_log_info1_quiet "Generated $vault_file for $APP"
2020-04-07 14:29:32 +00:00
}
dokku-ansible-deploy-dependencies() {
# shellcheck disable=SC2034
2020-04-07 14:29:32 +00:00
declare desc="install plugin dependencies"
2020-04-13 07:39:57 +00:00
declare DEPENDENCIES="ansible python3 python3-dev python3-ruamel.yaml"
2020-04-07 14:29:32 +00:00
2020-04-13 07:39:57 +00:00
dokku_col_log_info1_quiet "Ensuring the following packages are installed: $DEPENDENCIES"
export DEBIAN_FRONTEND=noninteractive
apt install -qq -y "$DEPENDENCIES"
2020-04-07 14:29:32 +00:00
}
dokku-ansible-deploy-post-extract() {
# shellcheck disable=SC2034
2020-04-07 14:29:32 +00:00
declare desc="run the post-extract hook to setup the plugin"
declare APP="$1" TMPDIR="$2"
if [[ -d "$TMPDIR/deploy.d" ]] && [[ "$(ls -A "$TMPDIR/deploy.d")" ]]; then
mkdir -p "$DOKKU_LIB_ROOT/data/deploy.d/$APP"
cp -r "$TMPDIR/deploy.d/." "$DOKKU_LIB_ROOT/data/deploy.d/$APP"
dokku_col_log_info1_quiet "Copied deploy.d files into place"
if [[ -d "$TMPDIR/deploy.d/vault" ]]; then
if [[ ! -f "$DOKKU_LIB_ROOT/data/deploy.d/$APP/.vault-password.sh" ]]; then
2020-04-13 07:40:07 +00:00
dokku_col_log_info1_quiet "Vault directory discovered but missing vault password"
2020-04-13 07:21:47 +00:00
dokku_col_log_info1_quiet "Please run dokku ansible-deploy:vault-password $APP"
2020-04-07 14:29:32 +00:00
exit 1
fi
fi
fi
}
dokku-ansible-deploy-pre-deploy() {
# shellcheck disable=SC2034
declare desc="run the pre-deploy hook to setup an app"
2020-04-13 07:40:15 +00:00
declare APP="$1"
declare PREDEPLOY="$PLUGIN_CORE_AVAILABLE_PATH/ansible-deploy/scripts/predeploy.py"
2020-04-13 07:56:05 +00:00
dokku_col_log_info1_quiet "Running pre-deploy steps"
/usr/bin/python3 "$PREDEPLOY"
2020-04-13 07:40:15 +00:00
}
dokku-ansible-deploy-post-deploy() {
# shellcheck disable=SC2034
declare desc="run the post-deploy hook to finish an app setup"
declare APP="$1"
declare POSTDEPLOY="$PLUGIN_CORE_AVAILABLE_PATH/ansible-deploy/scripts/postdeploy.py"
dokku_col_log_info1_quiet "Running post-deploy steps"
/usr/bin/python3 "$POSTDEPLOY" "$APP"
}
dokku-ansible-deploy-post-delete() {
# shellcheck disable=SC2034
declare desc="run the post-delete hook to remove an app"
declare APP="$1"
declare POSTDELETE="$PLUGIN_CORE_AVAILABLE_PATH/ansible-deploy/scripts/postdelete.py"
dokku_col_log_info1_quiet "Running post-delete steps"
/usr/bin/python3 "$POSTDELETE" "$APP"
}