Question 101

Is this a Linux kernel namespace that is disabled by default and must be enabled at Docker engine runtime to be used?
Solution: net
  • Question 102

    You want to provide a configuration file to a container at runtime. Does this set of Kubernetes tools and steps accomplish this?
    Solution: Mount the configuration file directly into the appropriate pod and container using the .spec.containers.configMounts key.
  • Question 103

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

    The Kubernetes yaml shown below describes a networkPolicy.

    Will the networkPolicy BLOCK this traffic?
    Solution: a request issued from a pod bearing the tier: backend label, to a pod bearing the tier: frontend label
  • Question 105

    An application image runs in multiple environments, and each environment uses different certificates and ports, what is the best practice to deploy the containers?