Question 41

You add a new user to the engineering organization in DTR.
Will this action grant them read/write access to the engineering/api repository?
Solution: Add them to a team in the engineering organization that has read/write access to the engineering/api repository.
  • Question 42

    Will this configuration achieve fault tolerance for managers in a swarm?
    Solution: only two managers, one active and one passive.
  • Question 43

    Will this Linux kernel facility limit a Docker container's access to host resources, such as CPU or memory?
    Solution: namespaces
  • Question 44

    Does this command display all the pods in the cluster that are labeled as 'env: development'?
    Solution: 'kubectl get pods -I env=development'
  • Question 45

    One of several containers in a pod is marked as unhealthy after failing its livenessProbe many times. Is this the action taken by the orchestrator to fix the unhealthy container?
    Solution: The controller managing the pod is autoscaled back to delete the unhealthy pod and alleviate load.