aboutsummaryrefslogtreecommitdiff
path: root/setup.sh
diff options
context:
space:
mode:
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