An autonomous vehicle telemetry enterprise runs containerized ingestion workloads on Google Kubernetes Engine (GKE) and stores build artifacts in Artifact Registry. The cloud security team requires an end-to-end security control strategy to satisfy three goals: automatically detect vulnerabilities in container images pushed to the registry, prevent non-compliant or unverified images from executing in production clusters, and detect runtime threats such as reverse shells or unauthorized processes inside active pods. Which TWO security controls should the architect implement to satisfy these requirements? (Select TWO.)
- Enable Artifact Registry vulnerability scanning and configure Binary Authorization on GKE to enforce attestation-based deployment policies.Answer
- Enable Security Command Center Premium with Container Threat Detection to monitor container runtime activity and pod behavior for threats.Answer
- CConfigure VPC Service Controls around GKE clusters to isolate registry access and automatically inspect container binaries during image pulling.
- DAssign the primitive Owner role to the GKE node service account so Container Analysis can repair vulnerable layers in running pods.
Answer
The architect should enable Artifact Registry vulnerability scanning alongside Binary Authorization on GKE to secure the container supply chain, and enable Security Command Center Premium with Container Threat Detection for runtime anomaly monitoring.
Securing containerized workloads requires securing both the build/deploy supply chain and the runtime environment. Enabling Artifact Registry vulnerability scanning detects software flaws when container images are stored. Binary Authorization ensures that only images signed by trusted authorities and verified by scanners are allowed to run on GKE. For runtime protection, Security Command Center Premium's Container Threat Detection monitors pod execution and kernel events out-of-band to catch malicious runtime activity without introducing performance overhead.
Step-by-Step Solution
Key Concept
Multi-layered GCP container security using Artifact Registry vulnerability scanning, Binary Authorization attestation policy, and Security Command Center Container Threat Detection.