DCA Exam Question 1
Will this command ensure that overlay traffic between service tasks is encrypted?
Solution: docker service create --network --secure
Solution: docker service create --network --secure
DCA Exam Question 2
Does this describe the role of Control Groups (cgroups) when used with a Docker container?
Solution: role-based access control to clustered resources
Solution: role-based access control to clustered resources
DCA Exam Question 3
Two development teams in your organization use Kubernetes and want to deploy their applications while ensuring that Kubernetes-specific resources, such as secrets, are grouped together for each application.
Is this a way to accomplish this?
Solution: Add all the resources to the default namespace.
Is this a way to accomplish this?
Solution: Add all the resources to the default namespace.
DCA Exam Question 4
Will this Linux kernel facility limit a Docker container's access to host resources, such as CPU or memory?
Solution: cgroups
Solution: cgroups
DCA Exam Question 5
Does this command create a swarm service that only listens on port 53 using the UDP protocol?
Solution. 'docker service create -name dns-cache -p 53:53 -constraint networking.protocol.udp=true dns-cache"
Solution. 'docker service create -name dns-cache -p 53:53 -constraint networking.protocol.udp=true dns-cache"