CV0-003 · Question #939
A cloud engineer has container images stored on a local filesystem. The developers would like to make the images available for mass deployment in a secure manner. Which of the following technologies b
The correct answer is C. Private registry. A private container registry is the purpose-built technology for storing, managing, and securely distributing container images at scale to authorized systems.
Question
A cloud engineer has container images stored on a local filesystem. The developers would like to make the images available for mass deployment in a secure manner. Which of the following technologies best meets the requirements?
Options
- AEncrypted block storage
- BCIFS share
- CPrivate registry
- DSource control management
How the community answered
(56 responses)- A2% (1)
- B4% (2)
- C93% (52)
- D2% (1)
Why each option
A private container registry is the purpose-built technology for storing, managing, and securely distributing container images at scale to authorized systems.
Encrypted block storage protects data at rest on a disk volume but provides no distribution API or container image layer management mechanism.
CIFS is a generic file-sharing protocol that lacks container image metadata handling, layer deduplication, and the OCI-compliant pull API that registries provide.
A private registry - such as Docker Registry, AWS ECR, or Azure Container Registry - is specifically designed to store container image layers and expose them via a secure API to authorized users or orchestration systems for mass deployment. It provides access control, image versioning, and encrypted transport, directly addressing both the distribution and security requirements.
Source control management systems store text-based source code and version history, not compiled binary container image layers, and are not designed for mass image distribution.
Concept tested: Container image storage and distribution via private registry
Source: https://docs.docker.com/registry/
Topics
Community Discussion
No community discussion yet for this question.