使大型静态数据文件可用于 kubernetes pods

Make large static data files available to kubernetes pods

我有一些相当大的 UTF-8 数据文件 pods 需要在启动时加载到内存中 - 从几百 KB 到大约 50 MB。

该项目(包括 helm chart)是开源的,但其中一些文件不是——否则我可能会将它们包含在图像中。我最初的想法是创建 configmap,但我的理解是 50 MB 超出了 configmap 的预期用途,因此在某些情况下这可能最终会成为一个问题。我认为秘密也太过分了——它们不是秘密,只是不应该放在公开的互联网上。

出于性能原因,我宁愿在每个 pod 的内存中都有一个副本,而不是使用共享缓存,但我在这一点上可能是错误的。至少,这可能会增加比其价值更多的复杂性。

配置映射是可行的方法吗?

在我看来,最好的解决方案是在评论中使用 init container to download the files from a secured storage (as it was mentioned by Andrew Savinykh) 到 pod 的卷,然后在 pod 的主容器中使用它。

请参阅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: {}