-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy-curiosity.sh
executable file
·30 lines (27 loc) · 1.24 KB
/
deploy-curiosity.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
echo "############################"
echo "############################"
echo "############################"
echo "############################"
echo "Deploying Curiosity Monolith"
echo "############################"
echo "############################"
echo "############################"
echo "############################"
kubectl apply -f appconfig/curiositymonolith-namespace.yaml;
kubectl apply -f ./databaseconfig/.
echo ".... waiting for MySQL pod to run to run db configuration...Deploying Curiosity Monolith"
echo "############################"
echo "############################"
sleep 45;
kubectl -n curiositymonolith exec -it `kubectl -n curiositymonolith get \
--no-headers=true pods -l app=mysql-db -o custom-columns=:metadata.name` \
-- mysql -h 127.0.0.1 -u root -pmySQLpword#2023 < ./databaseconfig/create-curiositydb-resources.sql;
kubectl apply -f ./appconfig/. ;
echo "updating for a public accessible image of the application"
kubectl -n curiositymonolith set image deployment/curiositymonolith-deployment curiosity=fharris/curiosity:latest
echo ".... waiting for the application to get deployed..."
sleep 20;
kubectl get pods -n curiositymonolith;
echo "############################"
echo "Done... Have fun!"
echo "############################"