DCA Exam Question 66

You created a new service named 'http' and discover it is not registering as healthy. Will this command enable you to view the list of historical tasks for this service?
Solution: 'docker inspect http'
  • DCA Exam Question 67

    In Kubernetes, to mount external storage to a filesystem path in a container within a pod, you would use a volume in the pod specification. This volume is populated with a persistentVolumeClaim that is bound to an existing persistentVolume. The persistentVolume is defined and managed by the storageClass which provides dynamic or static provisioning of the volume and determines what type of storage will be provided1.
    *Dynamic Volume Provisioning | Kubernetes
    Is this a supported user authentication method for Universal Control Plane?
    Solution: Docker ID
  • DCA Exam Question 68

    Is this an advantage of multi-stage builds?
    Solution. better logical separation of Dockerfile instructions for increased readability
  • DCA Exam Question 69

    Will this command list all nodes in a swarm cluster from the command line?
    Solution. 'docker inspect nodes
  • DCA Exam Question 70

    You want to create a container that is reachable from its host's network.
    Does this action accomplish this?
    Solution: Use network attach to access the container on the bridge network.