Question 11

Is this the purpose of Docker Content Trust?
Solution: Enable mutual TLS between the Docker client and server.
  • Question 12

    Two development teams in your organization use Kubernetes and want to deploy their applications while ensuring that Kubernetes-specific resources, such as secrets, are grouped together for each application.
    Is this a way to accomplish this?
    Solution: Add all the resources to the default namespace.
  • Question 13

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

    Is this a type of Linux kernel namespace that provides container isolation?
    Solution: Storage
  • Question 15

    Will this command mount the host's '/data' directory to the ubuntu container in read-only mode?
    Solution: 'docker run --volume /data:/mydata:ro ubuntu'