Question 46

Your organization has a centralized logging solution, such as Splunk.
Will this configure a Docker container to export container logs to the logging solution?
Solution: Set the log-driver and log-oPt keys to values for the logging solution (Splunk) In the daemon.json file.
  • Question 47

    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: Add a volume to the pod that sets hostPath.path: /data, and then mount this volume into the pod's containers as desired.
  • Question 48

    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, use it to populate a volume associated with the pod, and mount that file from the volume to the appropriate container and path.
  • Question 49

    A users attempts to set the system time from inside a Docker container are unsuccessful. Could this be blocking this operation?
    Solution: Linux capabilities
  • Question 50

    Which statement is true?