Will this command display a list of volumes for a specific container? Solution: 'docker container inspect nginx'
A. Yes
B. No
Does this command display all the pods in the cluster that are labeled as 'env: development'? Solution: 'kubectl get pods --all-namespaces -label env=development'
A. Yes
B. No
A company's security policy specifies that development and production containers must run on separate nodes in a given Swarm cluster.
Can this be used to schedule containers to meet the security policy requirements?
Solution: resource reservation
A. Yes
B. No
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: Create one namespace for each application and add all the resources to it.
A. Yes
B. No
Which networking drivers allow you to enable multi-host network connectivity between containers?
A. macvlan, ipvlan, and overlay
B. bridge, user-defined, host
C. bridge, macvlan, ipvlan, overlay
D. host, macvlan, overlay, user-defined
From a DevOps process standpoint, it is best practice to keep changes to an application in version control. Which of the following will allow changes to a docker Image to be stored in a version control system?
A. docker commit
B. docker save
C. A docker-compose.yml file
D. A dockerfile
Does this describe the role of Control Groups (cgroups) when used with a Docker container? Solution: user authorization to the Docker API
A. Yes
B. No
Which of the following are types of namespaces used by Docker to provide isolation? (Choose 2.)
A. Host
B. Network
C. Process ID
D. Authentication
E. Storage
Will this command ensure that overlay traffic between service tasks is encrypted? Solution: docker service create --network --secure
A. Yes
B. No
Is this the purpose of Docker Content Trust?
Solution: Indicate an image on Docker Hub is an official image.
A. Yes
B. No