Verified diagnostic signature
Kubernetes could not resolve, authorize, or download a container image.
Match output from kubernetes, understand the likely cause, then continue with sourced, read-only checks.
- Confidence
- high
- Platforms
- linux · macos · windows
- Verified
- 2026-07-24
Recognized output
Signature matched locally
manifest unknownOneLiners matches this pattern in your browser. Your pasted output is not stored or indexed.
Likely causes
What usually produces this signal
- Wrong image or tag
- Registry credentials
- Registry or DNS outage
- Architecture mismatch
Safe next checks
Collect evidence before changing the system
Show recent Kubernetes warning events in chronological order
kubectl get events -A --field-selector type=Warning --sort-by=.lastTimestamp -o custom-columns='TIME:.lastTimestamp,NAMESPACE:.metadata.namespace,REASON:.reason,OBJECT:.involvedObject.name,MESSAGE:.message'The output matches the expected target and exits without an error.
Inventory every Kubernetes deployment and container image
kubectl get deployments -A -o json | jq -r '.items[] | .metadata as $m | .spec.template.spec.containers[] | [$m.namespace,$m.name,.name,.image] | @tsv' | sortThe output matches the expected target and exits without an error.