MultipleChoice
A server is running low on disk space. What command can be used to check the disk usage of images,
containers, and volumes for Docker engine?
OptionsMultipleChoice
During development of an application meant to be orchestrated by Kubemetes, you want to mount the /data directory on your laptop into a container.
Will this strategy successfully accomplish this?
Solution. Create a Persistent VolumeClaim requesting storageClass:'''' (which defaults to local storage) and hostPath and use this to populate a volume in a pod.
OptionsMultipleChoice
In the context of a swarm mode cluster, does this describe a node?
Solution: a virtual machine participating in the swarm
OptionsMultipleChoice
Will this command display a list of volumes for a specific container?
Solution: docker container logs nginx --volumes'
OptionsMultipleChoice
A container named 'analytics' that stores results in a volume called 'data' was created.
docker run -d --name=analytics -v data:/data app1
How are the results accessed in 'data' with another container called 'app2'?
OptionsMultipleChoice
Which of the following constitutes a production-ready devicemapper configuration for the Docker engine?
OptionsMultipleChoice
Which of the following commands wifi automatically create a volume when a container is started?
OptionsMultipleChoice
Which one of the following commands will show a list of volumes for a specific container?
OptionsMultipleChoice
Two pods bear the same label, app: dev.
Will a label selector matching app: dev match both of these pods?
OptionsMultipleChoice
Which statement is correct about cluster management in Docker Enterprise Edition 3.x?
Options