A logistics software platform runs containerized microservices on Google Kubernetes Engine (GKE). The security architect must ensure that container images in Artifact Registry are continuously monitored for newly discovered vulnerabilities, only verified CI/CD container images can be deployed to production GKE clusters, and runtime container threats are detected without installing third-party agent sidecars on the worker nodes. Which combination of Google Cloud services and configurations meets these requirements?
- Enable Continuous Scanning in Artifact Registry, configure Binary Authorization policies on GKE to enforce build attestations, and enable Security Command Center Container Threat Detection.Answer
- BEnable vulnerability scanning in Artifact Registry, but grant the primitive Owner role to the GKE service account to automate vulnerability mitigation and bypass deployment checks.
- CAssign the Service Account Admin role to the deployment pipeline service account to allow it to directly manage deployment keys and override Binary Authorization policy checks.
- DConfigure VPC Service Controls perimeters around GKE and Artifact Registry to restrict network access, relying on perimeter security to prevent unauthorized container deployments and data exfiltration without Binary Authorization or Container Threat Detection.
Answer
Enable Continuous Scanning in Artifact Registry, configure Binary Authorization policies on GKE to enforce build attestations, and enable Security Command Center Container Threat Detection.
Continuous Scanning in Artifact Registry automatically monitors stored images against newly disclosed vulnerabilities. Binary Authorization enforces policy checks requiring cryptographic attestations from the CI/CD pipeline before deploying to GKE. Security Command Center Container Threat Detection offers agentless runtime threat detection at the hypervisor level.
Step-by-Step Solution
Key Concept
Multi-layered container security combining automated vulnerability scanning, binary attestation enforcement, and agentless runtime threat detection.