Mounting S3 bucket in docker containers on kubernetes

1 · Abin Simon · April 12, 2020, midnight
Another installment of me figuring out more of kubernetes. Full code available at meain/s3-mounter So, I was working on a project which will let people login to a web service and spin up a coding env with prepopulated data and creds. We were spinning up kube pods for each user. All of our data is in s3 buckets, so it would have been really easy if could just mount s3 buckets in the docker container. My initial thought was that there would be some PV which I could use, but it can't be that simp...