Question 76

In Docker Trusted Registry, is this how a user can prevent an image, such as 'nginx:latest', from being overwritten by another user with push access to the repository?
Solution: Use the DTR web Ul to make all tags in the repository immutable.
  • Question 77

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

    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 79

    The following Docker Compose file is deployed as a stack:

    Is this statement correct about this health check definition?
    Solution: Health checks test for app health ten seconds apart. If the test fails, the container will be restarted three times before it gets rescheduled.
  • Question 80

    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: Create one pod and add all the resources needed for each application