Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bbe8fee561 | ||
|
|
5f2e184d68 | ||
|
|
8a8857374c | ||
|
|
2176ab836e | ||
|
|
1c35653e7e | ||
|
|
7c17773fb2 | ||
|
|
980e7d1650 | ||
|
|
64394619b5 | ||
|
|
a39ade3161 | ||
|
|
20dd893a77 | ||
|
|
e089d0d03d | ||
|
|
ab9da6349e | ||
|
|
c2ed798db0 | ||
|
|
63fc31807c | ||
|
|
284ffa3177 |
@@ -46,6 +46,7 @@ mysql:start <name> Start a previously stopped mysql service
|
|||||||
mysql:stop <name> Stop a running mysql service
|
mysql:stop <name> Stop a running mysql service
|
||||||
mysql:unexpose <name> Unexpose a previously exposed mysql service
|
mysql:unexpose <name> Unexpose a previously exposed mysql service
|
||||||
mysql:unlink <name> <app> Unlink the mysql service from the app
|
mysql:unlink <name> <app> Unlink the mysql service from the app
|
||||||
|
mysql:upgrade <name> Upgrade service <service> to the specified version
|
||||||
```
|
```
|
||||||
|
|
||||||
## usage
|
## usage
|
||||||
|
|||||||
@@ -273,6 +273,21 @@ service_backup_unset_encryption() {
|
|||||||
rm -rf "$SERVICE_BACKUP_ENCRYPTION_ROOT"
|
rm -rf "$SERVICE_BACKUP_ENCRYPTION_ROOT"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
service_container_rm() {
|
||||||
|
declare desc="Stops a service and removes the running container"
|
||||||
|
declare SERVICE="$1"
|
||||||
|
local SERVICE_NAME="$(get_service_name "$SERVICE")"
|
||||||
|
|
||||||
|
service_stop "$SERVICE"
|
||||||
|
local ID=$(docker inspect "$SERVICE_NAME" -f '{{ .ID }}' 2> /dev/null || true)
|
||||||
|
[[ -z "$ID" ]] && return 0
|
||||||
|
|
||||||
|
dokku_log_verbose_quiet "Removing container"
|
||||||
|
if ! docker rm "$SERVICE_NAME" > /dev/null 2>&1; then
|
||||||
|
dokku_log_fail "Unable to remove container for service $SERVICE"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
service_enter() {
|
service_enter() {
|
||||||
declare desc="enters running app container of specified proc type"
|
declare desc="enters running app container of specified proc type"
|
||||||
declare SERVICE="$1" && shift 1
|
declare SERVICE="$1" && shift 1
|
||||||
@@ -300,6 +315,17 @@ service_exposed_ports() {
|
|||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
service_image_exists() {
|
||||||
|
declare desc="Checks if the current image exists"
|
||||||
|
local IMAGE="$PLUGIN_IMAGE:$PLUGIN_IMAGE_VERSION"
|
||||||
|
|
||||||
|
if [[ "$(docker images -q "$IMAGE" 2> /dev/null)" == "" ]]; then
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
service_info() {
|
service_info() {
|
||||||
declare desc="Retrieves information about a given service"
|
declare desc="Retrieves information about a given service"
|
||||||
declare SERVICE="$1" INFO_FLAG="$2"
|
declare SERVICE="$1" INFO_FLAG="$2"
|
||||||
@@ -448,24 +474,24 @@ service_parse_args() {
|
|||||||
for arg in "$@"; do
|
for arg in "$@"; do
|
||||||
shift
|
shift
|
||||||
case "$arg" in
|
case "$arg" in
|
||||||
|
"--alias") set -- "$@" "-a" ;;
|
||||||
"--config-options") set -- "$@" "-c" ;;
|
"--config-options") set -- "$@" "-c" ;;
|
||||||
"--custom-env") set -- "$@" "-C" ;;
|
"--custom-env") set -- "$@" "-C" ;;
|
||||||
"--image") set -- "$@" "-i" ;;
|
|
||||||
"--image-version") set -- "$@" "-I" ;;
|
|
||||||
"--password") set -- "$@" "-p" ;;
|
|
||||||
"--root-password") set -- "$@" "-r" ;;
|
|
||||||
|
|
||||||
"--alias") set -- "$@" "-a" ;;
|
|
||||||
"--database") set -- "$@" "-d" ;;
|
"--database") set -- "$@" "-d" ;;
|
||||||
|
"--image-version") set -- "$@" "-I" ;;
|
||||||
|
"--image") set -- "$@" "-i" ;;
|
||||||
"--memory") set -- "$@" "-m" ;;
|
"--memory") set -- "$@" "-m" ;;
|
||||||
|
"--password") set -- "$@" "-p" ;;
|
||||||
"--querystring") set -- "$@" "-q" ;;
|
"--querystring") set -- "$@" "-q" ;;
|
||||||
|
"--restart-apps") set -- "$@" "-R" ;;
|
||||||
|
"--root-password") set -- "$@" "-r" ;;
|
||||||
"--user") set -- "$@" "-u" ;;
|
"--user") set -- "$@" "-u" ;;
|
||||||
*) set -- "$@" "$arg"
|
*) set -- "$@" "$arg"
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
OPTIND=1
|
OPTIND=1
|
||||||
while getopts "a:c:C:d:i:I:m:p:q:r:u:" opt; do
|
while getopts "a:c:C:d:i:I:m:p:q:R:r:u:" opt; do
|
||||||
case "$opt" in
|
case "$opt" in
|
||||||
a)
|
a)
|
||||||
SERVICE_ALIAS="${OPTARG^^}"; export SERVICE_ALIAS="${SERVICE_ALIAS%_URL}"
|
SERVICE_ALIAS="${OPTARG^^}"; export SERVICE_ALIAS="${SERVICE_ALIAS%_URL}"
|
||||||
@@ -486,6 +512,8 @@ service_parse_args() {
|
|||||||
;;
|
;;
|
||||||
q) export SERVICE_QUERYSTRING=${OPTARG#"?"}
|
q) export SERVICE_QUERYSTRING=${OPTARG#"?"}
|
||||||
;;
|
;;
|
||||||
|
R) export SERVICE_RESTART_APPS=$OPTARG
|
||||||
|
;;
|
||||||
r) export SERVICE_ROOT_PASSWORD=$OPTARG
|
r) export SERVICE_ROOT_PASSWORD=$OPTARG
|
||||||
;;
|
;;
|
||||||
u) export SERVICE_USER=$OPTARG
|
u) export SERVICE_USER=$OPTARG
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ service_create() {
|
|||||||
|
|
||||||
service_parse_args "${@:2}"
|
service_parse_args "${@:2}"
|
||||||
|
|
||||||
if ! docker images | grep -e "^$PLUGIN_IMAGE " | grep -q " $PLUGIN_IMAGE_VERSION " ; then
|
if ! service_image_exists "$SERVICE"; then
|
||||||
if [[ "$PLUGIN_DISABLE_PULL" == "true" ]]; then
|
if [[ "$PLUGIN_DISABLE_PULL" == "true" ]]; then
|
||||||
dokku_log_warn "${PLUGIN_DISABLE_PULL_VARIABLE} environment variable detected. Not running pull command." 1>&2
|
dokku_log_warn "${PLUGIN_DISABLE_PULL_VARIABLE} environment variable detected. Not running pull command." 1>&2
|
||||||
dokku_log_warn " docker pull ${IMAGE}" 1>&2
|
dokku_log_warn " docker pull ${IMAGE}" 1>&2
|
||||||
@@ -127,7 +127,6 @@ service_start() {
|
|||||||
|
|
||||||
dokku_log_info2_quiet "Starting container"
|
dokku_log_info2_quiet "Starting container"
|
||||||
local PREVIOUS_ID=$(docker ps -f status=exited | grep -e "$SERVICE_NAME$" | awk '{print $1}') || true
|
local PREVIOUS_ID=$(docker ps -f status=exited | grep -e "$SERVICE_NAME$" | awk '{print $1}') || true
|
||||||
local IMAGE_EXISTS=$(docker images | grep -e "^$PLUGIN_IMAGE " | grep -q " $PLUGIN_IMAGE_VERSION " && true)
|
|
||||||
local ROOTPASSWORD="$(cat "$SERVICE_ROOT/ROOTPASSWORD")"
|
local ROOTPASSWORD="$(cat "$SERVICE_ROOT/ROOTPASSWORD")"
|
||||||
local PASSWORD="$(cat "$SERVICE_ROOT/PASSWORD")"
|
local PASSWORD="$(cat "$SERVICE_ROOT/PASSWORD")"
|
||||||
|
|
||||||
@@ -135,7 +134,7 @@ service_start() {
|
|||||||
docker start "$PREVIOUS_ID" > /dev/null
|
docker start "$PREVIOUS_ID" > /dev/null
|
||||||
service_port_unpause "$SERVICE"
|
service_port_unpause "$SERVICE"
|
||||||
dokku_log_info2 "Container started"
|
dokku_log_info2 "Container started"
|
||||||
elif $IMAGE_EXISTS && [[ -n "$ROOTPASSWORD" ]] && [[ -n "$PASSWORD" ]]; then
|
elif service_image_exists "$SERVICE" && [[ -n "$ROOTPASSWORD" ]] && [[ -n "$PASSWORD" ]]; then
|
||||||
service_create_container "$SERVICE"
|
service_create_container "$SERVICE"
|
||||||
else
|
else
|
||||||
dokku_log_verbose_quiet "Neither container nor valid configuration exists for $SERVICE"
|
dokku_log_verbose_quiet "Neither container nor valid configuration exists for $SERVICE"
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
[plugin]
|
[plugin]
|
||||||
description = "dokku mysql service plugin"
|
description = "dokku mysql service plugin"
|
||||||
version = "1.3.0"
|
version = "1.4.3"
|
||||||
[plugin.config]
|
[plugin.config]
|
||||||
|
|||||||
@@ -9,9 +9,9 @@ service-clone-cmd() {
|
|||||||
#E dokku $PLUGIN_COMMAND_PREFIX:clone lolipop lolipop-2
|
#E dokku $PLUGIN_COMMAND_PREFIX:clone lolipop lolipop-2
|
||||||
#A service, service to run command against
|
#A service, service to run command against
|
||||||
#A new-service, name of new service
|
#A new-service, name of new service
|
||||||
#F -c|--custom-env "USER=alpha;HOST=beta", semi-colon delimited environment variables to start the service with
|
#F -C|--custom-env "USER=alpha;HOST=beta", semi-colon delimited environment variables to start the service with
|
||||||
#F -i|--image IMAGE, the image name to start the service with
|
#F -i|--image IMAGE, the image name to start the service with
|
||||||
#F -i|--image-version IMAGE_VERSION, the image version to start the service with
|
#F -I|--image-version IMAGE_VERSION, the image version to start the service with
|
||||||
#F -p|--password PASSWORD, override the user-level service password
|
#F -p|--password PASSWORD, override the user-level service password
|
||||||
#F -r|--root-password PASSWORD, override the root-level service password
|
#F -r|--root-password PASSWORD, override the root-level service password
|
||||||
declare desc="create container <new-name> then copy data from <name> into <new-name>"
|
declare desc="create container <new-name> then copy data from <name> into <new-name>"
|
||||||
|
|||||||
@@ -17,9 +17,9 @@ service-create-cmd() {
|
|||||||
#E export ${PLUGIN_DEFAULT_ALIAS}_CUSTOM_ENV="USER=alpha;HOST=beta"
|
#E export ${PLUGIN_DEFAULT_ALIAS}_CUSTOM_ENV="USER=alpha;HOST=beta"
|
||||||
#E dokku $PLUGIN_COMMAND_PREFIX:create lolipop
|
#E dokku $PLUGIN_COMMAND_PREFIX:create lolipop
|
||||||
#A service, service to run command against
|
#A service, service to run command against
|
||||||
#F -c|--custom-env "USER=alpha;HOST=beta", semi-colon delimited environment variables to start the service with
|
#F -C|--custom-env "USER=alpha;HOST=beta", semi-colon delimited environment variables to start the service with
|
||||||
#F -i|--image IMAGE, the image name to start the service with
|
#F -i|--image IMAGE, the image name to start the service with
|
||||||
#F -i|--image-version IMAGE_VERSION, the image version to start the service with
|
#F -I|--image-version IMAGE_VERSION, the image version to start the service with
|
||||||
#F -p|--password PASSWORD, override the user-level service password
|
#F -p|--password PASSWORD, override the user-level service password
|
||||||
#F -r|--root-password PASSWORD, override the root-level service password
|
#F -r|--root-password PASSWORD, override the root-level service password
|
||||||
declare desc="create a $PLUGIN_SERVICE service"
|
declare desc="create a $PLUGIN_SERVICE service"
|
||||||
|
|||||||
55
subcommands/upgrade
Executable file
55
subcommands/upgrade
Executable file
@@ -0,0 +1,55 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
source "$(dirname "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)")/config"
|
||||||
|
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
|
||||||
|
source "$PLUGIN_BASE_PATH/common/functions"
|
||||||
|
source "$(dirname "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)")/functions"
|
||||||
|
source "$PLUGIN_AVAILABLE_PATH/ps/functions"
|
||||||
|
|
||||||
|
service-upgrade-cmd() {
|
||||||
|
#E you can upgrade an existing service to a new image or image-version
|
||||||
|
#E dokku $PLUGIN_COMMAND_PREFIX:upgrade lolipop
|
||||||
|
#A service, service to run command against
|
||||||
|
#F -C|--custom-env "USER=alpha;HOST=beta", semi-colon delimited environment variables to start the service with
|
||||||
|
#F -i|--image IMAGE, the image name to start the service with
|
||||||
|
#F -I|--image-version IMAGE_VERSION, the image version to start the service with
|
||||||
|
#F -R|--restart-apps "true", whether to force an app restart
|
||||||
|
declare desc="upgrade service <service> to the specified versions"
|
||||||
|
local cmd="$PLUGIN_COMMAND_PREFIX:upgrade" argv=("$@"); [[ ${argv[0]} == "$cmd" ]] && shift 1
|
||||||
|
declare SERVICE="$1" UPGRADE_FLAG_LIST="${@:2}"
|
||||||
|
|
||||||
|
[[ -z "$SERVICE" ]] && dokku_log_fail "Please specify a name for the service"
|
||||||
|
verify_service_name "$SERVICE"
|
||||||
|
|
||||||
|
local SERVICE_ROOT="$PLUGIN_DATA_ROOT/$SERVICE"
|
||||||
|
local ID="$(cat "$SERVICE_ROOT/ID")"
|
||||||
|
is_container_status "$ID" "Running" || dokku_log_fail "Service ${SERVICE} container is not running"
|
||||||
|
|
||||||
|
service_parse_args "${@:2}"
|
||||||
|
|
||||||
|
if ! service_image_exists "$SERVICE"; then
|
||||||
|
dokku_log_fail "Unable to proceed with upgrade, image ${PLUGIN_IMAGE}:${PLUGIN_IMAGE_VERSION} does not exist"
|
||||||
|
fi
|
||||||
|
|
||||||
|
dokku_log_info2 "Upgrading $SERVICE to $PLUGIN_IMAGE:$PLUGIN_IMAGE_VERSION"
|
||||||
|
if [[ "$SERVICE_RESTART_APPS" == "true" ]]; then
|
||||||
|
dokku_log_info2 "Stopping all linked services"
|
||||||
|
for app in $(service_linked_apps "$SERVICE"); do
|
||||||
|
ps_stop "$app"
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
dokku_log_info2 "Stopping $SERVICE"
|
||||||
|
service_container_rm "$SERVICE"
|
||||||
|
service_start "$SERVICE" "${@:2}"
|
||||||
|
|
||||||
|
if [[ "$SERVICE_RESTART_APPS" == "true" ]]; then
|
||||||
|
dokku_log_info2 "Starting all linked services"
|
||||||
|
for app in $(service_linked_apps "$SERVICE"); do
|
||||||
|
ps_start "$app"
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
dokku_log_info2 "Done"
|
||||||
|
}
|
||||||
|
|
||||||
|
service-upgrade-cmd "$@"
|
||||||
Reference in New Issue
Block a user