Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Make large static data files available to kubernetes pods

I have a few quite large UTF-8 data files that pods need to load into memory on start up - from a couple of hundred KBs to around 50 MB.

The project (including helm chart) is open source but some of these files are not - otherwise I would probably just include them in the images. My initial thinking was to create configmaps but my understanding is that 50 MB is more than configmaps were intended for, so that might end up being a problem in some circumstances. I think secrets would also be overkill - they aren't secret, they just shouldn't be put on the open internet.

For performance reasons I'd rather have a copy in memory in each pod rather than going for a shared cache but I might be wrong on that. At the very least that will likely add more complexity than it's worth.

Are configmaps the way to go?

like image 422
AntonOfTheWoods Avatar asked Jan 14 '19 12:01

AntonOfTheWoods


People also ask

How do I mount a file in Kubernetes pod?

So, basically, in Kubernetes, we can inject (mount) file into a container. In my case, I will mount a config file of my application into my docker containers. To do this, I can use the Kubernetes ConfigMap and Volumes, it allows us to inject configuration files into our docker application containers.

What happens if you bind a pod to a hostPort?

When you bind a Pod to a hostPort , it limits the number of places the Pod can be scheduled, because each < hostIP , hostPort , protocol > combination must be unique. If you don't specify the hostIP and protocol explicitly, Kubernetes will use 0.0.

Can Kubernetes automatically mount the storage of your choice?

Storage orchestration Kubernetes allows you to automatically mount a storage system of your choice, such as local storages, public cloud providers, and more.


1 Answers

From my point of view, the best solution would be using init container to download the files from a secured storage (as it was mentioned by Andrew Savinykh in the comments), to the pod's volume and then use it in the pod's main container.

Please see the example:

apiVersion: v1
kind: Pod
metadata:
  name: init-demo
spec:
  containers:
  - name: nginx
    image: nginx
    ports:
    - containerPort: 80
    volumeMounts:
    - name: workdir
      mountPath: /usr/share/nginx/html
  # These containers are run during pod initialization
  initContainers:
  - name: install
    image: busybox
    command:
    - wget
    - "-O"
    - "/work-dir/index.html"
    - http://kubernetes.io
    volumeMounts:
    - name: workdir
      mountPath: "/work-dir"
  dnsPolicy: Default
  volumes:
  - name: workdir
    emptyDir: {}
like image 113
VASャ Avatar answered Nov 15 '22 09:11

VASャ