Question 131
Will this command display a list of volumes for a specific container?
Solution: docker volume logs nginx --containers'
Solution: docker volume logs nginx --containers'
Question 132
Is this an advantage of multi-stage builds?
Solution: simultaneously creates and tags multiple images
Solution: simultaneously creates and tags multiple images
Question 133
One of several containers in a pod is marked as unhealthy after failing its livenessProbe many times. Is this the action taken by the orchestrator to fix the unhealthy container?
Solution: Kubernetes automatically triggers a user-defined script to attempt to fix the unhealthy container.
Solution: Kubernetes automatically triggers a user-defined script to attempt to fix the unhealthy container.
Question 134
In Docker Trusted Registry, how would a user prevent an image, for example 'nginx:latest' from being
overwritten by another user with push access to the repository?
overwritten by another user with push access to the repository?
Question 135
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.
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.
