Files
wild-cloud/docs/guides/troubleshoot-cluster.md
2025-08-31 14:30:09 -07:00

400 B

Troubleshoot Wild Cloud Cluster issues

General Troubleshooting Steps

  1. Check Node Status:

    kubectl get nodes
    kubectl describe node <node-name>
    
  2. Check Component Status:

    # 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"