Question 1
What is one way of directly transferring a Docker Image from one Docker host in another?
Question 2
Which networking drivers allow you to enable multi-host network connectivity between containers?
Question 3
Will a DTR security scan detect this?
Solution: licenses for known third party binary components
Solution: licenses for known third party binary components
Question 4
During development of an application meant to be orchestrated by Kubernetes, you want to mount the /data directory on your laptop into a container.
Will this strategy successfully accomplish this?
Solution: Create a PersistentVolume with storageciass: "" and hostPath: /data, and a persistentVolumeClaim requesting this PV. Then use that PVC to populate a volume in a pod
Will this strategy successfully accomplish this?
Solution: Create a PersistentVolume with storageciass: "" and hostPath: /data, and a persistentVolumeClaim requesting this PV. Then use that PVC to populate a volume in a pod
Question 5
Will this command mount the host's '/data' directory to the ubuntu container in read-only mode?
Solution: 'docker run --add-volume /data /mydata -read-only ubuntu'
Solution: 'docker run --add-volume /data /mydata -read-only ubuntu'