Where to see pod status
Open the admin interface in your browser and navigate to the system status page. Each running service appears as a named pod with a current state. A healthy appliance shows all pods in the Running state. Any pod in a different state warrants investigation.Common pod error states
CrashLoopBackOff
CrashLoopBackOff
A pod in
CrashLoopBackOff is starting, crashing immediately, and being repeatedly restarted by Kubernetes. The restart interval grows with each attempt.Likely causes:- The service cannot reach a dependency it requires (such as storage or another service)
- A configuration error introduced by a recent change
- The pod is out of memory and is being killed on startup
- Check the pod’s logs in the admin interface for a startup error message.
- If the error references storage, check storage utilization and offload if near capacity.
- If a recent application change was made, consider reverting it.
- If the issue does not resolve, escalate to support.
OOMKilled
OOMKilled
OOMKilled means the pod was killed by the system because it exceeded its memory limit. This typically happens when a service is processing more data than it was sized for, or when too many applications are running simultaneously.What to do:- Check whether resource contention is occurring — are multiple non-essential applications running?
- Disable any optional applications that are not currently needed. See Application Management.
- After freeing resources, the affected service will restart automatically. Confirm it reaches a Running state.
Pending
Pending
A
Pending pod has been scheduled but has not started yet. This usually means Kubernetes cannot find sufficient resources to run it, or a dependency the pod requires is not yet available.What to do:- Check whether the appliance just powered on — some services take a few minutes to start after boot. Wait 3–5 minutes before acting.
- If the pod remains Pending for more than 10 minutes after a full boot, check resource utilization and whether other pods are consuming excessive resources.
- If a specific dependency (such as a storage service) is itself in a failed state, resolve that issue first.
Error or ImagePullBackOff
Error or ImagePullBackOff
An
Error state or ImagePullBackOff can occur if a service’s container image is unavailable or was not successfully loaded during an update.What to do:- Check whether a system update was recently applied or interrupted. If so, attempt to complete or reapply the update through the admin interface. See System Updates.
- If the error occurred without a recent update, escalate to support with the pod name and error message.
Restarting a service
If a pod is in a failed state and you want to attempt a manual restart, use the admin interface to stop and restart the affected service. Do not use the Kubernetes CLI to delete pods unless directed by support — the admin interface provides a safe restart path that accounts for service dependencies.When to escalate
Escalate to support if:- A pod remains in
CrashLoopBackOffafter 30 minutes and log review does not reveal a clear cause - Multiple pods fail simultaneously without an obvious resource or storage cause
- Restarting services through the admin interface does not return them to a Running state