-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathswarm.sh
executable file
·163 lines (131 loc) · 4.29 KB
/
swarm.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
#!/bin/bash
declare ACTION=""
declare MODE=""
declare COMPOSE_FILE_PATH=""
declare UTILS_PATH=""
declare TIMESTAMP
declare TIMESTAMPED_NGINX
declare SERVICE_NAMES=()
declare STACK="reverse-proxy"
function init_vars() {
ACTION=$1
MODE=$2
COMPOSE_FILE_PATH=$(
cd "$(dirname "${BASH_SOURCE[0]}")" || exit
pwd -P
)
TIMESTAMP="$(date "+%Y%m%d%H%M%S")"
TIMESTAMPED_NGINX="${TIMESTAMP}-nginx.conf"
UTILS_PATH="${COMPOSE_FILE_PATH}/../utils"
SERVICE_NAMES=("reverse-proxy-nginx")
readonly ACTION
readonly MODE
readonly COMPOSE_FILE_PATH
readonly UTILS_PATH
readonly TIMESTAMP
readonly TIMESTAMPED_NGINX
readonly SERVICE_NAMES
readonly STACK
}
# shellcheck disable=SC1091
function import_sources() {
source "${UTILS_PATH}/docker-utils.sh"
source "${UTILS_PATH}/config-utils.sh"
source "${UTILS_PATH}/log.sh"
}
function publish_insecure_ports() {
IFS='-' read -ra PORTS <<<"$INSECURE_PORTS"
local ports_array=()
for i in "${PORTS[@]}"; do
IFS=':' read -ra PORTS_SPLIT <<<"$i"
if [[ "${PORTS_SPLIT[0]}" != "" ]] && [[ "${PORTS_SPLIT[1]}" != "" ]]; then
ports_array+=(--publish-add "published=${PORTS_SPLIT[0]},target=${PORTS_SPLIT[1]}")
log info "Exposing ports: published=%s,target=%s " "${PORTS_SPLIT[0]}" "${PORTS_SPLIT[1]}"
else
log error "Failed to expose ports: published=%s,target=%s " "${PORTS_SPLIT[0]}" "${PORTS_SPLIT[1]}"
fi
done
log info "Updating ${SERVICE_NAMES} service with configured ports..."
try \
"docker service update ${ports_array[*]} ${STACK}_${SERVICE_NAMES}" \
throw \
"Error updating ${SERVICE_NAMES} service"
overwrite "Updating ${SERVICE_NAMES} service with configured ports... Done"
}
function add_insecure_configs() {
try \
"docker config create --label name=nginx ${TIMESTAMPED_NGINX} ${COMPOSE_FILE_PATH}/config/nginx-temp-insecure.conf" \
throw \
"Failed to create nginx insecure config"
log info "Updating nginx service: adding config file..."
try \
"docker service update --config-add source=${TIMESTAMPED_NGINX},target=/etc/nginx/nginx.conf ${STACK}_$SERVICE_NAMES" \
throw \
"Error updating ${SERVICE_NAMES} service"
overwrite "Updating nginx service: adding config file... Done"
}
function deploy_nginx() {
local -r DEPLOY_TYPE=${1:?"FATAL: deploy_nginx DEPLOY_TYPE not provided"}
config::generate_service_configs "$SERVICE_NAMES" /etc/nginx/conf.d "${COMPOSE_FILE_PATH}/package-conf-${DEPLOY_TYPE}" "${COMPOSE_FILE_PATH}" "nginx"
docker::deploy_service $STACK "${COMPOSE_FILE_PATH}" "docker-compose.yml" "docker-compose.tmp.yml"
}
function initialize_package() {
if [[ "${INSECURE}" == "true" ]]; then
log info "Running package in INSECURE mode"
(
deploy_nginx "insecure"
if [[ "${INSECURE_PORTS}" != "" ]]; then
publish_insecure_ports
fi
add_insecure_configs
) ||
{
log error "Failed to deploy package in INSECURE MODE"
exit 1
}
else
log info "Running package in SECURE mode"
(
deploy_nginx "secure"
# shellcheck disable=SC1091
source "${COMPOSE_FILE_PATH}/set-secure-mode.sh"
) ||
{
log error "Failed to deploy package in SECURE MODE"
exit 1
}
fi
}
function destroy_package() {
docker::stack_destroy $STACK
mapfile -t nginx_secrets < <(docker secret ls -qf label=name=nginx)
if [[ "${#nginx_secrets[@]}" -ne 0 ]]; then
try "docker secret rm ${nginx_secrets[*]}" catch "Failed to remove nginx secrets"
fi
mapfile -t nginx_network < <(docker network ls -qf name=cert-renewal-network)
if [[ "${#nginx_network[@]}" -ne 0 ]]; then
try "docker network rm ${nginx_network[*]}" catch "Failed to remove nginx networks"
fi
docker::prune_configs "nginx"
}
main() {
init_vars "$@"
import_sources
if [[ "${MODE}" == "dev" ]]; then
log info "Not including reverse proxy as we are running DEV mode"
exit 0
fi
if [[ "${ACTION}" == "init" ]] || [[ "${ACTION}" == "up" ]]; then
log info "Running package"
initialize_package
elif [[ "${ACTION}" == "down" ]]; then
log info "Scaling down package"
docker::scale_services $STACK 0
elif [[ "${ACTION}" == "destroy" ]]; then
log info "Destroying package"
destroy_package
else
log error "Valid options are: init, up, down, or destroy"
fi
}
main "$@"