Question 71

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 container run myorg/myimage:1.0
  • Question 72

    You are running only Kubernetes workloads on a worker node that requires maintenance, such as installing patches or an OS upgrade.
    Which command must be run on the node to gracefully terminate all pods on the node, while marking the node as unschedulable?
  • Question 73

    Is this an advantage of multi-stage builds?
    Solution: faster image builds by allowing parallel execution of Docker builds
  • Question 74

    In the context of a swarm mode cluster, does this describe a node?
    Solution: a physical machine participating in the swarm
  • Question 75

    A docker service 'web' is running with a scale factor of 1 (replicas = 1).
    Bob intends to use the command 'docker service update --replicas=3 web'.
    Alice intends to use the command 'docker service scale web=3'.
    How do the outcomes oft these two commands differ?