-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy.sh
15 lines (13 loc) · 861 Bytes
/
deploy.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
docker build -t thegli/multi-client:latest-gke -t thegli/multi-client:$GIT_SHA -f ./client/Dockerfile ./client
docker build -t thegli/multi-server:latest-gke -t thegli/multi-server:$GIT_SHA -f ./server/Dockerfile ./server
docker build -t thegli/multi-worker:latest-gke -t thegli/multi-worker:$GIT_SHA -f ./worker/Dockerfile ./worker
docker push thegli/multi-client:latest-gke
docker push thegli/multi-client:$GIT_SHA
docker push thegli/multi-server:latest-gke
docker push thegli/multi-server:$GIT_SHA
docker push thegli/multi-worker:latest-gke
docker push thegli/multi-worker:$GIT_SHA
kubectl apply -f ./k8s
kubectl set image deployments/client-deployment client=thegli/multi-client:$GIT_SHA
kubectl set image deployments/server-deployment server=thegli/multi-server:$GIT_SHA
kubectl set image deployments/worker-deployment worker=thegli/multi-worker:$GIT_SHA