-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-deploy.sh
executable file
·69 lines (62 loc) · 1.38 KB
/
build-deploy.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
#!/bin/bash
function help() {
echo "Usage: `basename $0` <build/deploy/serve/all>"
echo
echo " build - builds usind docker compose and the site is in: docker-dist"
echo " deploy - deploy using kubectl"
echo " serve - open http server with build"
echo " all - build & deploy"
echo
}
function checks() {
if [ ! -d docker-dist ]; then
echo "No: docker-dist - please build first"
exit 1
fi
}
function serve() {
checks
echo "Open http://localhost:9000"
cd docker-dist
python3 -m http.server 9000
}
function build() {
docker-compose -f docker-compose.build.yaml build --no-cache
docker-compose -f docker-compose.build.yaml up
}
function deploy() {
checks
cd docker-dist && bsdtar --no-acls --no-mac-metadata --no-xattrs --exclude Dockerfile --exclude-vcs --exclude '*.yml' --exclude README.md --exclude '*.sh' -cf - . | kubectl -n dynamic-sites exec -i deploy/dynamic-sites -- tar -C /sites/teonite.com -xf -
}
while [[ $# -gt 0 ]]; do
case "$1" in
all)
echo "Running all tasks..."
build
deploy
exit 0
;;
build)
echo "Building..."
build
exit 0
;;
deploy)
echo "Deploying..."
deploy
exit 0
;;
serve)
echo "Serving for you..."
serve
exit 0
;;
*)
echo "Invalid option: $1"
help
exit 1
;;
esac
shift
done
help