aboutsummaryrefslogtreecommitdiff
path: root/setup.sh
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-10-29 11:51:39 +0100
committerCharles Cabergs <me@cacharle.xyz>2020-10-29 11:51:39 +0100
commitb363cf11f3f10e5baae34a5a4071012c8e8a0174 (patch)
tree6e5fc61cea6e91c22f2014b67ef5b372d28a0de9 /setup.sh
parentaa8815b7693708f8d3652484b91f9e1aa700e21b (diff)
downloadft_services-b363cf11f3f10e5baae34a5a4071012c8e8a0174.tar.gz
ft_services-b363cf11f3f10e5baae34a5a4071012c8e8a0174.tar.bz2
ft_services-b363cf11f3f10e5baae34a5a4071012c8e8a0174.zip
Fixing influxdb non persistant
Diffstat (limited to 'setup.sh')
-rwxr-xr-xsetup.sh6
1 files changed, 2 insertions, 4 deletions
diff --git a/setup.sh b/setup.sh
index f78c129..ab15a4f 100755
--- a/setup.sh
+++ b/setup.sh
@@ -1,19 +1,17 @@
#!/bin/sh
build_image () {
- echo "=============================================== Building $1"
+ echo "=============================================== BUILDING $1"
docker build -t "$1-service" "srcs/$1"
echo
}
create_service () {
- echo "=============================================== Creating Service $1"
+ echo "=============================================== CREATING SERVICE $1"
kubectl apply -f "srcs/$1/$1.yaml"
echo
}
-
-echo '--- Building docker images'
build_image ftps
build_image nginx
build_image wordpress