-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_aura.sh
More file actions
executable file
·22 lines (17 loc) · 833 Bytes
/
test_aura.sh
File metadata and controls
executable file
·22 lines (17 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
ENDPOINT="https://jbbdggbjfb3rii2ijfpestjsmy0meqnq.lambda-url.us-east-1.on.aws/"
echo "🚀 Starting Aura Ops Validation Suite..."
echo "---------------------------------------"
# Test 1: Kubernetes Compute Error
echo "🧪 Test 1: Kubernetes Compute..."
curl -s -X POST $ENDPOINT -d "Warning Failed kubelet Failed to pull image 'nginxx:latest'" | jq .
echo -e "\n"
# Test 2: Pure Storage Error
echo "🧪 Test 2: Pure Storage CBT..."
curl -s -X POST $ENDPOINT -d "Error: Purity//FA reported CBT drift on volume 'vol-99' during snapshot" | jq .
echo -e "\n"
# Test 3: Nutanix Generic Alert
echo "🧪 Test 3: Nutanix Generic..."
curl -s -X POST $ENDPOINT -d "Critical: Nutanix Stargate service is reporting high metadata latency" | jq .
echo "---------------------------------------"
echo "✅ Validation Complete."