OpenClawInstanceDegraded
Meaning
Section titled “Meaning”An OpenClaw instance is in Failed or Degraded phase for more than 5 minutes.
Impact
Section titled “Impact”The instance is not fully operational. Users may be unable to access the OpenClaw gateway or canvas.
Diagnosis
Section titled “Diagnosis”# Check instance phase and conditionskubectl get openclawinstance <name> -n <namespace> -o yaml
# Check pod statuskubectl get pods -n <namespace> -l app.kubernetes.io/instance=<name>
# Check pod eventskubectl describe pod <name>-0 -n <namespace>
# Check container logskubectl logs <name>-0 -n <namespace> -c openclaw --tail=100
# Check if the StatefulSet is progressingkubectl get statefulset <name> -n <namespace> -o yamlMitigation
Section titled “Mitigation”- Pod not starting - Check image pull errors, resource limits, node capacity
- Readiness probe failing - The OpenClaw process may not be healthy; check container logs
- Configuration error - Verify the ConfigMap content is valid JSON
- PVC issues - Check if the PVC is bound and has sufficient space
- Missing API keys - Ensure required secrets (e.g., ANTHROPIC_API_KEY) are present