-
Notifications
You must be signed in to change notification settings - Fork 2
/
deploy.sh
executable file
·51 lines (42 loc) · 1.12 KB
/
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
#!/bin/bash
set -e
set -u
set -o pipefail
source setup.sh
########################################################################################################################
# deployments
########################################################################################################################
deployments=(
# demo/test apps
"cf-env"
# "kuard"
"resume"
# what's my db up to?
"pgweb"
# all your backups are belong to us!
"backman"
# actual useful apps go here..
"jcio"
"home-info"
"irvisualizer"
# # put my files into the clouds!
# "syncthing"
# # building stuff with blocks..
# "minecraft"
# # monitor stuff on websites..
"item-monitor"
# also some cronjobs for good fun..
"image-puller"
"repo-mirrorer"
)
########################################################################################################################
# deploy it all, all of it!
########################################################################################################################
for deployment in ${deployments[@]}; do
pushd $deployment
./deploy.sh
popd
echo -e "\n\n"
done
kapp list
echo " "