Question 96

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 97

    You are troubleshooting a Kubernetes deployment called api, and want to see the events table for this object. Does this command display it?
    Solution: kubectl describe deployment api
  • Question 98

    Which networking drivers allow you to enable multi-host network connectivity between containers?
  • Question 99

    Will this sequence of steps completely delete an image from disk in the Docker Trusted Registry?
    Solution: Delete the image and run garbage collection on the Docker Trusted Registry.
  • Question 100

    You configure a local Docker engine to enforce content trust by setting the environment variable
    DOCKER_CONTENT_TRUST=1.
    If myorg/myimage: 1.0 is unsigned, does Docker block this command?
    Solution: docker service create myorg/myimage:1.0