Adds docs.

This commit is contained in:
2025-11-04 16:44:36 +00:00
parent f9c7a9e2f4
commit 44ebbbd42c
13 changed files with 971 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
# Troubleshoot Wild Cloud Cluster issues
## General Troubleshooting Steps
1. **Check Node Status**:
```bash
kubectl get nodes
kubectl describe node <node-name>
```
1. **Check Component Status**:
```bash
# Check all pods across all namespaces
kubectl get pods -A
# Look for pods that aren't Running or Ready
kubectl get pods -A | grep -v "Running\|Completed"
```