Is this a supported user authentication method for Universal Control Plane?
Solution.SAML
Will this configuration achieve fault tolerance for managers in a swarm?
Solution: only two managers, one active and one passive.
Will this command display a list of volumes for a specific container?
Solution: 'docker container inspect nginx'
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: docker system events --filter splunk
Can this set of commands identify the published port(s) for a container?
Solution: `docker network inspect', `docker port'
A company's security policy specifies that development and production containers must run on separate nodes in a given Swarm cluster. Can this be used to schedule containers to meet the security policy requirements?
Solution.label constraints
Does this command create a swarm service that only listens on port 53 using the UDP protocol?
Solution. ‘docker service create -name dns-cache -p 53:53/udp dns-cache"
Which networking drivers allow you to enable multi-host network connectivity
between containers?
Are these conditions sufficient for Kubernetes to dynamically provision a persistentVolume, assuming there are no limitations on the amount and type of available external storage?
Solution: A default storageClass is specified, and subsequently a persistentVolumeClaim is created.
Will this command mount the host's '/data1directory to the ubuntu container in read-only mode?
Solution. ‘docker run -v /data:/mydata -mode readonly ubuntu'