-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstop.sh
More file actions
executable file
·33 lines (27 loc) · 1.07 KB
/
Copy pathstop.sh
File metadata and controls
executable file
·33 lines (27 loc) · 1.07 KB
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
30
31
32
33
#!/bin/bash
# Apollo Router Demo - Stop Guide
#
# Please stop your services using the deployment-specific scripts:
#
# For Docker Compose:
# cd docker-compose && ./stop.sh
#
# For Kubernetes:
# cd kubernetes && ./stop.sh
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
NC='\033[0m'
echo -e "${BLUE}╔═══════════════════════════════════════════════════════════╗${NC}"
echo -e "${BLUE}║ Apollo Router Demo - Stop Services ║${NC}"
echo -e "${BLUE}╚═══════════════════════════════════════════════════════════╝${NC}"
echo ""
echo -e "${YELLOW}Stop using the deployment-specific scripts:${NC}"
echo ""
echo -e "${GREEN}Docker Compose:${NC}"
echo -e " ${BLUE}cd docker-compose && ./stop.sh${NC}"
echo ""
echo -e "${GREEN}Kubernetes:${NC}"
echo -e " ${BLUE}cd kubernetes && ./stop.sh${NC}"
echo ""