DRAG DROP
Drag and drop the operations from the left into the correct order on the right when using CI/CD,
assuming that there are no failures or conflicts.
None
Explanation:
developer commits
unit testing
integration testing
merging of commit into mainline
generating deliverables
starting of rolling deployment
A DevOps engineering wants to build an application implementation based on the CI/CD pipeline
model. Which service should be used to provide hosted continuous service for open and private
projects?
D
A DevOps engineer has built a new container and must open port 8080 for intercontainer
communication. Which command must be added in a Dockerfile to accomplish this goal?
A
Which two actions help limit the attack surface of your Docker container? (Choose two.)
AC
Explanation:
Running only a single service in each container and using version tags for base images and
dependencies helps limit the attack surface of your Docker container. This ensures that only the
necessary services are running and that you always have the latest versions of the base images and
their dependencies, reducing the risk of malicious code being included in the container image.
Reference: Docker Documentation, Security Best Practices.
A DevOps engineer has built a container to host a web-server and it must run as an executable.
Which command must be configured in a Dockerfile to accomplish this goal?
B
Which Docker command is used to start an interactive Bash shell in a running container named
“test”?
C
What are two reasons a Docker golden image should be updated? (Choose two.)
B, C
A company has experienced serious growth and the hosted applications are getting more and more
hits. Based on the increased work load, applications have started to show signs of reduced
performance, which is affecting the user experience.
Which two server metrics should be tracked to ensure that the customer experience remains within
acceptable limits? (Choose two.)
BC
Microservices architecture pattern has been applied and the system has been architected as a set of
services. Each service is deployed as a set of instances for throughput and availability. In which two
ways are these services packaged and deployed? (Choose two.)
AB
What is the purpose of using a build tool in software development?
A