mirror of
https://github.com/dokku/dokku.git
synced 2026-07-10 20:40:43 +02:00
The bash :report implementations for the caddy, haproxy, openresty, and traefik proxy plugins are replaced with a compiled golang binary that collects report keys in parallel and marshals json directly. The traefik dns-provider values keep their masking behaviour, remaining hidden in the default stdout report while surfacing for --format json or an explicit flag query. These four plugins previously had no unit tests, so a bats suite covering the report matrix is added for each.
121 lines
3.4 KiB
Bash
121 lines
3.4 KiB
Bash
#!/usr/bin/env bash
|
|
source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
|
|
source "$PLUGIN_CORE_AVAILABLE_PATH/common/property-functions"
|
|
source "$PLUGIN_AVAILABLE_PATH/proxy/command-functions"
|
|
source "$PLUGIN_AVAILABLE_PATH/haproxy-vhosts/internal-functions"
|
|
set -eo pipefail
|
|
[[ $DOKKU_TRACE ]] && set -x
|
|
|
|
cmd-haproxy-labels-add() {
|
|
declare desc="adds container label to app for specified proxy"
|
|
declare cmd="haproxy:labels:add"
|
|
[[ "$1" == "$cmd" ]] && shift 1
|
|
|
|
cmd-proxy-labels-add "proxy:labels:add" "haproxy" "$@"
|
|
}
|
|
|
|
cmd-haproxy-labels-remove() {
|
|
declare desc="removes container label from app for specified proxy"
|
|
declare cmd="haproxy:labels:remove"
|
|
[[ "$1" == "$cmd" ]] && shift 1
|
|
|
|
cmd-proxy-labels-remove "proxy:labels:remove" "haproxy" "$@"
|
|
}
|
|
|
|
cmd-haproxy-labels-show() {
|
|
declare desc="shows container labels for app for specified proxy"
|
|
declare cmd="haproxy:labels:show"
|
|
[[ "$1" == "$cmd" ]] && shift 1
|
|
|
|
cmd-proxy-labels-show "proxy:labels:show" "haproxy" "$@"
|
|
}
|
|
|
|
cmd-haproxy-logs() {
|
|
declare desc="display haproxy logs from command line"
|
|
declare cmd="haproxy:logs"
|
|
[[ "$1" == "$cmd" ]] && shift 1
|
|
local NUM="100" TAIL=false
|
|
|
|
local TEMP=$(getopt -o htn: --long help,tail,num: -n 'dokku haproxy:logs' -- "$@")
|
|
local EXIT_CODE="$?"
|
|
if [[ "$EXIT_CODE" != 0 ]]; then
|
|
fn-haproxy-logs-usage >&2
|
|
exit 1
|
|
fi
|
|
eval set -- "$TEMP"
|
|
|
|
while true; do
|
|
case "$1" in
|
|
-t | --tail)
|
|
local TAIL=true
|
|
shift
|
|
;;
|
|
-n | --num)
|
|
local NUM="$2"
|
|
shift 2
|
|
;;
|
|
--)
|
|
shift
|
|
break
|
|
;;
|
|
*) dokku_log_fail "Internal error" ;;
|
|
esac
|
|
done
|
|
|
|
fn-haproxy-logs "$TAIL" "$NUM"
|
|
}
|
|
|
|
cmd-haproxy-show-config() {
|
|
declare desc="display haproxy config"
|
|
declare cmd="haproxy:show-config"
|
|
[[ "$1" == "$cmd" ]] && shift 1
|
|
|
|
if ! fn-is-compose-installed; then
|
|
dokku_log_fail "Required docker compose plugin is not installed"
|
|
fi
|
|
|
|
local TMP_COMPOSE_FILE=$(mktemp "/tmp/dokku-${DOKKU_PID}-${FUNCNAME[0]}.XXXXXX")
|
|
trap "rm -rf '$TMP_COMPOSE_FILE' >/dev/null" RETURN INT TERM EXIT
|
|
|
|
fn-haproxy-template-compose-file "$TMP_COMPOSE_FILE"
|
|
cat "$TMP_COMPOSE_FILE"
|
|
}
|
|
|
|
cmd-haproxy-start() {
|
|
declare desc="Starts the haproxy server"
|
|
declare cmd="haproxy:start"
|
|
[[ "$1" == "$cmd" ]] && shift 1
|
|
|
|
if ! fn-is-compose-installed; then
|
|
dokku_log_fail "Required docker compose plugin is not installed"
|
|
fi
|
|
|
|
local TMP_COMPOSE_FILE=$(mktemp "/tmp/dokku-${DOKKU_PID}-${FUNCNAME[0]}.XXXXXX")
|
|
trap "rm -rf '$TMP_COMPOSE_FILE' >/dev/null" RETURN INT TERM EXIT
|
|
|
|
fn-plugin-property-write "haproxy" "--global" "proxy-status" "started"
|
|
fn-haproxy-template-compose-file "$TMP_COMPOSE_FILE"
|
|
if ! "$PLUGIN_CORE_AVAILABLE_PATH/common/common" compose-up "haproxy" "$TMP_COMPOSE_FILE"; then
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
cmd-haproxy-stop() {
|
|
declare desc="Stops the haproxy server"
|
|
declare cmd="haproxy:stop"
|
|
[[ "$1" == "$cmd" ]] && shift 1
|
|
|
|
if ! fn-is-compose-installed; then
|
|
dokku_log_fail "Required docker compose plugin is not installed"
|
|
fi
|
|
|
|
local TMP_COMPOSE_FILE=$(mktemp "/tmp/dokku-${DOKKU_PID}-${FUNCNAME[0]}.XXXXXX")
|
|
trap "rm -rf '$TMP_COMPOSE_FILE' >/dev/null" RETURN INT TERM EXIT
|
|
|
|
fn-plugin-property-write "haproxy" "--global" "proxy-status" "stopped"
|
|
fn-haproxy-template-compose-file "$TMP_COMPOSE_FILE"
|
|
if ! "$PLUGIN_CORE_AVAILABLE_PATH/common/common" compose-down "haproxy" "$TMP_COMPOSE_FILE"; then
|
|
return 1
|
|
fi
|
|
}
|