From b363cf11f3f10e5baae34a5a4071012c8e8a0174 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Thu, 29 Oct 2020 11:51:39 +0100 Subject: Fixing influxdb non persistant --- setup.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'setup.sh') 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 -- cgit