add superset airbyte setup and merge md file
This commit is contained in:
29
04-ingestion/stop-airbyte.sh
Normal file
29
04-ingestion/stop-airbyte.sh
Normal file
@@ -0,0 +1,29 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Stop Airbyte services
|
||||
# This script stops the Airbyte deployment using abctl
|
||||
|
||||
set -e
|
||||
|
||||
# Colors for output
|
||||
GREEN='\033[0;32m'
|
||||
YELLOW='\033[1;33m'
|
||||
NC='\033[0m'
|
||||
|
||||
echo -e "${YELLOW}Stopping Airbyte...${NC}"
|
||||
|
||||
# Check if abctl is installed
|
||||
if ! command -v abctl &> /dev/null; then
|
||||
echo "Error: abctl is not installed"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Stop Airbyte
|
||||
abctl local down
|
||||
|
||||
if [ $? -eq 0 ]; then
|
||||
echo -e "${GREEN}Airbyte stopped successfully${NC}"
|
||||
else
|
||||
echo "Failed to stop Airbyte"
|
||||
exit 1
|
||||
fi
|
||||
Reference in New Issue
Block a user