-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathdestroy.sh
executable file
·114 lines (95 loc) · 4.29 KB
/
destroy.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#!/bin/bash
set -e
# Load configuration
CONFIG_FILE="config.sh"
if [ ! -f "$CONFIG_FILE" ]; then
echo "Configuration file $CONFIG_FILE not found!"
echo "Please copy config.template.sh to config.sh and update with your settings."
exit 1
fi
# shellcheck disable=1090
source "$CONFIG_FILE"
# Determine the workspace name
# shellcheck disable=2153
WORKSPACE_NAME="$DEPLOYMENT_ID"
# Format resource prefix the same way Terraform does
format_resource_prefix() {
local deployment_id="$1"
# Convert to lowercase and replace any character that is not a lowercase letter, digit, or hyphen with empty string
echo "$deployment_id" | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9-]//g'
}
RESOURCE_PREFIX=$(format_resource_prefix "$DEPLOYMENT_ID")
echo "Using resource prefix: $RESOURCE_PREFIX"
# Try to load state, but fall back to config if state file not found
STATE_FILE="${DEPLOYMENT_ID}_state.sh"
if [ -f "$STATE_FILE" ]; then
echo "Loading state from $STATE_FILE"
# shellcheck disable=1090
source "$STATE_FILE"
else
echo "State file $STATE_FILE not found. Using values from config.sh instead."
# Determine endpoint access type from CONFIG_FILE
if [ -z "$ENDPOINT_ACCESS_TYPE" ]; then
if [ -n "$VPC_NETWORK_NAME" ] && [ -n "$PEERING_RANGE_NAME" ]; then
echo "Inferring VPC peering mode from configuration"
ENDPOINT_ACCESS_TYPE="vpc_peering"
elif [ -n "$PSC_ADDRESS_NAME" ] || [ -n "$SERVICE_ATTACHMENT" ]; then
echo "Inferring Private Service Connect mode from configuration"
ENDPOINT_ACCESS_TYPE="private_service_connect"
else
echo "Unable to determine endpoint access type, assuming public"
ENDPOINT_ACCESS_TYPE="public"
fi
fi
# Set deployed cluster name if not available - use the same formatting as Terraform
if [ -z "$DEPLOYED_CLUSTER_NAME" ]; then
DEPLOYED_CLUSTER_NAME="${RESOURCE_PREFIX}-ltf-autopilot-cluster"
echo "Setting inferred cluster name: $DEPLOYED_CLUSTER_NAME"
fi
fi
# Terraform cleanup
echo "Destroying Terraform resources..."
pushd terraform
# Select the workspace
if terraform workspace list | grep -q "$WORKSPACE_NAME"; then
terraform workspace select "$WORKSPACE_NAME"
else
echo "Workspace $WORKSPACE_NAME does not exist, skipping terraform destroy"
exit 0
fi
# Configure kubectl if we have a cluster name
if [[ -n "$DEPLOYED_CLUSTER_NAME" ]]; then
echo "Configuring kubectl..."
gcloud container clusters get-credentials "$DEPLOYED_CLUSTER_NAME" --project="${PROJECT_ID}" --location="${REGION}" || echo "Warning: Unable to get GKE credentials, cluster may not exist"
else
echo "Warning: Unable to get GKE cluster name, skipping kubectl configuration"
fi
# Remove Kubernetes resources from Terraform state to avoid dependency issues
terraform state rm 'module.gke_autopilot.kubernetes_namespace.locust_namespace' || true
terraform state rm 'module.gke_autopilot.kubernetes_service_account.locust_service_account' || true
terraform state rm 'module.gke_autopilot.kubernetes_config_map.locust_config' || true
terraform state rm 'module.gke_autopilot.kubernetes_deployment.locust_master' || true
terraform state rm 'module.gke_autopilot.kubernetes_deployment.locust_worker' || true
terraform state rm 'module.gke_autopilot.kubernetes_service.locust_master' || true
terraform state rm 'module.gke_autopilot.kubernetes_service.locust_master_web' || true
terraform state rm 'module.gke_autopilot.kubernetes_horizontal_pod_autoscaler.locust_worker_autoscaler' || true
# Standard destroy
terraform destroy --auto-approve
# Delete the workspace
terraform workspace select default
terraform workspace delete --force "$WORKSPACE_NAME"
popd
# Deleting Locust config
rm -rf config
# Deleting Deployment state file if it exists
if [ -f "$STATE_FILE" ]; then
rm -f "$STATE_FILE"
fi
# Artifact Registry Cleanup
# Format repository name the same way as in the deployment script
CLEAN_REPO_NAME="locust-docker-repo-$(echo "${DEPLOYMENT_ID}" | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9-]/-/g' | sed 's/^[^a-z]*/l/' | sed 's/-$/1/')"
if [[ -n "${CLEAN_REPO_NAME}" ]]; then
echo "Cleaning up Artifact Registry repository: ${CLEAN_REPO_NAME}..."
gcloud artifacts repositories delete "${CLEAN_REPO_NAME}" --location="$REGION" --project="$PROJECT_ID" --quiet --async || echo "Failed to delete Artifact Registry repository, it may not exist"
fi
echo "Cleanup complete."