Question 21

Can this set of commands identify the published port(s) for a container?
Solution: docker container inspect', 'docker port'
  • Question 22

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

    Is this a function of UCP?
    Solution: enforces the deployment of signed images to the cluster
  • Question 24

    Will this action upgrade Docker Engine CE to Docker Engine EE?
    Solution: Manually download the 'docker-ee' package
  • Question 25

    During development of an application meant to be orchestrated by Kubernetes, you want to mount the /data directory on your laptop into a container.
    Will this strategy successfully accomplish this?
    Solution: Create a PersistentVolume with storageciass: "" and hostPath: /data, and a persistentVolumeClaim requesting this PV. Then use that PVC to populate a volume in a pod