A security engineer is analyzing supply chain risks for container images. An unsigned image from an untrusted public registry is pulled into a secure cluster. Which Admission Controller plugin can be leveraged to prevent the deployment of unsigned container images?
Using a validating webhook with a policy engine allows checking cryptographic signatures against a trusted public key before allowing pod creation.
Why this answer
ValidatingAdmissionPolicy or admission webhook controllers like OPA Gatekeeper or Kyverno integrated with cryptographic signature verification (such as Cosign) are used to enforce image signing.