OneLinersCommand workbench
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

pull access denied

OneLiners matches this pattern in your browser. Your pasted output is not stored or indexed.

Likely causes

What usually produces this signal

  1. Wrong image or tag
  2. Registry credentials
  3. Registry or DNS outage
  4. Architecture mismatch
Safe next checks

Collect evidence before changing the system

01

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.

02

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' | sort

The output matches the expected target and exits without an error.