Question 156

Are these conditions sufficient for Kubernetes to dynamically provision a persistentVolume, assuming there are no limitations on the amount and type of available external storage?
Solution: A persistentVolumeClaim is created that specifies a pre-defined storageClass.
  • Question 157

    What is the docker command to setup a swarm?
  • Question 158

    Will this action upgrade Docker Engine CE to Docker Engine EE?
    Solution: Delete '/var/lib/docker' directory.
  • Question 159

    A persistentVolumeClaim (PVC) is created with the specification storageClass: "", and size requirements that cannot be satisfied by any existing persistentVolume.
    Is this an action Kubernetes takes in this situation?
    Solution: The PVC remains unbound until a persistentVolume that matches all requirements of the PVC becomes available.
  • Question 160

    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.