forked from ticket-monster-msa/monolith
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a07942b
commit 96b8a00
Showing
5 changed files
with
83 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,28 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Monolith | ||
kubectl delete svc/ticket-monster | ||
kubectl delete svc/tm-ui | ||
kubectl delete svc/mysql-backend | ||
kubectl delete deploy/ticket-monster | ||
kubectl delete deploy/tm-ui | ||
kubectl delete deploy/mysql-backend | ||
|
||
# Backend | ||
kubectl delete svc/backend | ||
kubectl delete deploy/backend | ||
|
||
# UI | ||
kubectl delete svc/tm-ui | ||
kubectl delete deploy/tm-ui-v1 | ||
kubectl delete deploy/tm-ui-v2 | ||
|
||
# Orders Service | ||
kubectl delete svc/orders-service | ||
kubectl delete deploy/orders-service | ||
kubectl delete svc/mysql-orders | ||
kubectl delete deploy/mysql-orders | ||
kubectl delete cm/orders-mysql-config | ||
|
||
|
||
|
||
# Ingress | ||
kubectl delete ingress/tm-gateway |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters