DCA Exam Question 31

Is this a supported user authentication method for Universal Control Plane?
Solution: PAM
  • DCA Exam Question 32

    The Kubernetes yaml shown below describes a clusterIP service.

    Is this a correct statement about how this service routes requests?
    Solution: Traffic sent to the IP of this service on port 8080 will be routed to port 80 in a random pod with the label aPP: nginx.
  • DCA Exam Question 33

    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/udp dns-cache'
  • DCA Exam Question 34

    The following Docker Compose file is deployed as a stack:

    Is this statement correct about this health check definition?
    Solution: Health checks test for app health ten seconds apart. If the test fails, the container will be restarted three times before it gets rescheduled.
  • DCA Exam Question 35

    You configure a local Docker engine to enforce content trust by setting the environment variable
    DOCKER_CONTENT_TRUST=1.
    If myorg/myimage: 1.0 is unsigned, does Docker block this command?
    Solution: docker service create myorg/myimage:1.0