Question 46
You add a new user to the engineering organization in DTR.
Will this action grant them read/write access to the engineering/api repository?
Solution. Mirror the engineering/api repository to one of the user's own private repositories.
Will this action grant them read/write access to the engineering/api repository?
Solution. Mirror the engineering/api repository to one of the user's own private repositories.
Question 47
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 logs deployment api
Does this command display it?
Solution: kubectl logs deployment api
Question 48
Will this command mount the host's '/data1 directory to the ubuntu container in read-only mode?
Solution. 'docker run -v /data:/mydata -mode readonly ubuntu'
Solution. 'docker run -v /data:/mydata -mode readonly ubuntu'
Question 49
What is the docker command to find the current logging driver for a running container?
Question 50
Will this command mount the host's '/data' directory to the ubuntu container in read-only mode?
Solution: 'docker run -v /data:/mydata --mode readonly ubuntu'
Solution: 'docker run -v /data:/mydata --mode readonly ubuntu'