Demo: check container images in Kubernetes YAML
Image paths are a common release risk. A YAML path preview helps confirm which image tags will be deployed before a manifest reaches the cluster.
- Check all containers, not only the first one.
- Look for latest tags and mutable tags in production manifests.
- Compare image tags with the release version in your CI/CD pipeline.
spec.template.spec.containers[*].image
---
apiVersion: apps/v1
kind: Deployment
spec:
template:
spec:
containers:
- name: api
image: ghcr.io/acme/api:2026.06.18