-
Notifications
You must be signed in to change notification settings - Fork 7
/
mightyboot-podman.sh
executable file
·371 lines (319 loc) · 6.5 KB
/
mightyboot-podman.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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
#!/bin/bash
set -e
# Global Variables
POD_NAME="mightyboot"
SERVICES="dhcp dhcp6 dnsmasq lighttpd"
REGISTRY="localhost"
ENV_FILE="${PWD}/env"
LOG_DRIVER="journald"
REBUILD=""
function usage()
{
echo "$0: manage mightyboot containers with podman"
echo "Usage:"
echo " $0 command (service) "
echo ""
echo "Services: ${SERVICES}"
echo ""
echo "Commands:"
echo " start"
echo " start a service or start all services if not specified"
echo ""
echo " rebuild"
echo " rebuild a service or rebuild all services if not specified"
echo ""
echo " stop"
echo " stop a service or stop all services if not specified"
echo ""
echo " remove"
echo " remove a service or remove all services if not specified"
echo ""
echo " status"
echo " print the status of services"
}
function check_service()
{
target=$1
for service in $SERVICES; do
if [ "$target" == "$service" ]; then
return 0
fi
done
return 1
}
function check_pod()
{
podman pod exists ${POD_NAME}
}
function check_image()
{
service=$1
if ! check_service ${service}; then
echo "unknown service: ${service}"
exit 1
fi
podman image exists ${REGISTRY}/${POD_NAME}-${service}
}
function check_container()
{
service=$1
if ! check_service ${service}; then
echo "unknown service: ${service}"
exit 1
fi
podman container exists ${POD_NAME}-${service}
}
function check_running_container()
{
service=$1
if ! check_service ${service}; then
echo "unknown service: ${service}"
exit 1
fi
podman container ps --format "{{.Names}}" | grep -q "${POD_NAME}-${service}\$"
}
function mount_arg()
{
SRC=$1
DST=$2
RO=$3
mount_arg="--mount type=bind,src=${SRC},dst=${DST}"
if [ "${RO}" == "y" ]; then
mount_arg="${mount_arg},ro"
fi
echo ${mount_arg}
}
function create_container_real()
{
service=$1
if ! check_service ${service}; then
echo "unknown service: ${service}"
exit 1
fi
local extra_opt=
case ${service} in
"dhcp")
MOUNT_ARGS=$(mount_arg ${PWD}/data/dhcp /data n)
extra_opt="--privileged"
;;
"dhcp6")
MOUNT_ARGS=$(mount_arg ${PWD}/data/dhcp6 /data n)
;;
"dnsmasq")
MOUNT_ARGS=$(mount_arg ${PWD}/data/dnsmasq /data n)
MOUNT_ARGS="${MOUNT_ARGS} $(mount_arg ${PWD}/data/tftproot /srv/tftproot y)"
;;
"lighttpd")
MOUNT_ARGS=$(mount_arg ${PWD}/data/lighttpd /data n)
MOUNT_ARGS="${MOUNT_ARGS} $(mount_arg ${PWD}/data/www/htdocs /srv/www/htdocs y)"
;;
*)
echo "unknown service"
exit 1
;;
esac
podman create ${extra_opt} --pod ${POD_NAME} \
--network host \
--env-file ${ENV_FILE} \
--log-driver="${LOG_DRIVER}" \
${MOUNT_ARGS} \
--name ${POD_NAME}-${service} \
${REGISTRY}/${POD_NAME}-${service}
}
function stop_service()
{
service=$1
if ! check_service ${service}; then
echo "unknown service: ${service}"
exit 1
fi
if check_running_container ${service} ; then
echo "Stop ${POD_NAME}-${service}"
podman container stop ${POD_NAME}-${service}
fi
}
function remove_container()
{
service=$1
if ! check_service ${service}; then
echo "unknown service: ${service}"
exit 1
fi
if check_container ${service} ; then
echo "Remove container: ${POD_NAME}-${service}"
podman container rm ${POD_NAME}-${service}
fi
}
function remove_image()
{
service=$1
if ! check_service ${service}; then
echo "unknown service: ${service}"
exit 1
fi
if check_image ${service} ; then
echo "Remove image: $REGISTRY/${POD_NAME}-${service}"
podman image rm $REGISTRY/${POD_NAME}-${service}
fi
}
function remove_service()
{
service=$1
if ! check_service ${service}; then
echo "unknown service: ${service}"
exit 1
fi
stop_service ${service}
remove_container ${service}
remove_image ${service}
}
function remove_pod()
{
echo "Remove pod: ${POD_NAME}"
podman pod rm ${POD_NAME}
}
function create_pod()
{
echo "Create pod: ${POD_NAME}"
# podman pod create --name mightyboot --network bridge --replace -p 53:53 -p 67:67 -p 68:68 -p 69:69 -p 80:80 -p 443:443
podman pod create --name ${POD_NAME} --network host --replace
}
function build_image()
{
service=$1
if ! check_service ${service}; then
echo "unknown service: ${service}"
exit 1
fi
if ! check_image ${service} ; then
echo "Build ${POD_NAME}-${service}"
podman build -t ${POD_NAME}-${service} -f ${service}/Dockerfile
fi
}
function create_container()
{
service=$1
if ! check_service ${service}; then
echo "unknown service: ${service}"
exit 1
fi
if ! check_container ${service} ; then
echo "Create ${POD_NAME}-${service}"
create_container_real ${service}
fi
}
function start_container()
{
service=$1
if ! check_service ${service}; then
echo "unknown service: ${service}"
exit 1
fi
if ! check_running_container $service; then
echo "Start ${service}"
podman start ${POD_NAME}-${service}
else
echo "${service} already started"
fi
}
function cmd_rebuild()
{
# If the service is not specified, rebuild all services.
if [ -z "$1" ]; then
REBUILD_SERVICE=${SERVICES}
else
REBUILD_SERVICE=$1
fi
for service in ${REBUILD_SERVICE}; do
remove_service ${service}
done
# Reset the pod if necessary
if [ -z "$1" ]; then
create_pod
fi
for service in ${REBUILD_SERVICE}; do
build_image ${service}
create_container ${service}
done
}
function cmd_stop()
{
# If the service is not specified, stop all services.
if [ -z "$1" ]; then
STOP_SERVICE=${SERVICES}
else
STOP_SERVICE=$1
fi
for service in ${STOP_SERVICE}; do
stop_service ${service}
done
}
function cmd_remove()
{
# If the service is not specified, remove all services.
if [ -z "$1" ]; then
RM_SERVICE=${SERVICES}
else
RM_SERVICE=$1
fi
for service in ${RM_SERVICE}; do
remove_service ${service}
done
}
function cmd_start()
{
# If the service is not specified, start all services.
if [ -z "$1" ]; then
START_SERVICE=${SERVICES}
else
START_SERVICE=$1
fi
if ! check_pod ; then
create_pod
fi
for service in ${START_SERVICE}; do
build_image ${service}
create_container ${service}
done
for service in ${START_SERVICE}; do
start_container ${service}
done
}
function cmd_status()
{
# If the service is not specified, start all services.
if [ -z "$1" ]; then
STATUS_SERVICE=${SERVICES}
else
STATUS_SERVICE=$1
fi
for service in ${STATUS_SERVICE}; do
if check_running_container ${service}; then
printf "%-8s is running\n" ${service}
else
printf "%-8s is down\n" ${service}
fi
done
}
# Parse the arguments
case $1 in
rebuild)
cmd_rebuild $2
;;
stop)
cmd_stop $2
;;
remove)
cmd_remove $2
;;
start)
cmd_start $2
;;
status)
cmd_status $2
;;
*)
usage
exit 1
;;
esac