copyAppData pod using big (open-webui) image #116

Closed
opened 2026-02-15 19:16:24 -05:00 by yindo · 3 comments
Owner

Originally created by @jpaodev on GitHub (Feb 5, 2026).

Hey there,

I am not sure if copyAppData is 100% required, so it might be a nice option to turn it off completely if no persistence is used.
The primary issue I have identified (please correct me if I'm missing something!) is that the copyAppData startup container uses the big open-webui image instead of a customizable image (which should be a small image e.g. busybox by default ideally

Originally created by @jpaodev on GitHub (Feb 5, 2026). Hey there, I am not sure if copyAppData is 100% required, so it might be a nice option to turn it off completely if no persistence is used. The primary issue I have identified (please correct me if I'm missing something!) is that the copyAppData startup container uses the big open-webui image instead of a customizable image (which should be a small image e.g. busybox by default ideally
yindo closed this issue 2026-02-15 19:16:24 -05:00
Author
Owner

@westbrook-ai commented on GitHub (Feb 13, 2026):

Hi @jpaodev, unfortunately copyAppData is still needed for the reasons described here: https://github.com/open-webui/helm-charts/issues/38#issuecomment-2246439800

However, it appears that the init container should be correctly using the slim image when the main Open WebUI image is set to use it, specifically by setting the useSlim value such as below:

image:
  repository: ghcr.io/open-webui/open-webui
  tag: ""
  pullPolicy: "IfNotPresent"
  useSlim: true

This results in the following template for the Open WebUI init container pod with the slim image:

  initContainers:
  - command:
    - sh
    - -c
    - cp -R -n /app/backend/data/* /tmp/app-data/
    image: ghcr.io/open-webui/open-webui:0.8.0-slim
    imagePullPolicy: IfNotPresent
    name: copy-app-data
    resources: {}
    terminationMessagePath: /dev/termination-log
    terminationMessagePolicy: File
    volumeMounts:
    - mountPath: /tmp/app-data
      name: data

If you are not seeing the same results, please send me an example values file that causes the issue so I can investigate further. Thanks!

@westbrook-ai commented on GitHub (Feb 13, 2026): Hi @jpaodev, unfortunately copyAppData is still needed for the reasons described here: https://github.com/open-webui/helm-charts/issues/38#issuecomment-2246439800 However, it appears that the init container should be correctly using the slim image when the main Open WebUI image is set to use it, specifically by setting the `useSlim` value such as below: ``` image: repository: ghcr.io/open-webui/open-webui tag: "" pullPolicy: "IfNotPresent" useSlim: true ``` This results in the following template for the Open WebUI init container pod with the slim image: ``` initContainers: - command: - sh - -c - cp -R -n /app/backend/data/* /tmp/app-data/ image: ghcr.io/open-webui/open-webui:0.8.0-slim imagePullPolicy: IfNotPresent name: copy-app-data resources: {} terminationMessagePath: /dev/termination-log terminationMessagePolicy: File volumeMounts: - mountPath: /tmp/app-data name: data ``` If you are not seeing the same results, please send me an example values file that causes the issue so I can investigate further. Thanks!
Author
Owner

@jpaodev commented on GitHub (Feb 14, 2026):

Hi @jpaodev, unfortunately copyAppData is still needed for the reasons described here: https://github.com/open-webui/helm-charts/issues/38#issuecomment-2246439800

However, it appears that the init container should be correctly using the slim image when the main Open WebUI image is set to use it, specifically by setting the useSlim value such as below:

image:
  repository: ghcr.io/open-webui/open-webui
  tag: ""
  pullPolicy: "IfNotPresent"
  useSlim: true

This results in the following template for the Open WebUI init container pod with the slim image:

  initContainers:
  - command:
    - sh
    - -c
    - cp -R -n /app/backend/data/* /tmp/app-data/
    image: ghcr.io/open-webui/open-webui:0.8.0-slim
    imagePullPolicy: IfNotPresent
    name: copy-app-data
    resources: {}
    terminationMessagePath: /dev/termination-log
    terminationMessagePolicy: File
    volumeMounts:
    - mountPath: /tmp/app-data
      name: data

If you are not seeing the same results, please send me an example values file that causes the issue so I can investigate further. Thanks!

Hi there, thanks for the reply and info!
Is the copyAppData container also required when only using cloud services e.g. also for embedding?

@jpaodev commented on GitHub (Feb 14, 2026): > Hi @jpaodev, unfortunately copyAppData is still needed for the reasons described here: https://github.com/open-webui/helm-charts/issues/38#issuecomment-2246439800 > > However, it appears that the init container should be correctly using the slim image when the main Open WebUI image is set to use it, specifically by setting the `useSlim` value such as below: > ``` > image: > repository: ghcr.io/open-webui/open-webui > tag: "" > pullPolicy: "IfNotPresent" > useSlim: true > ``` > > This results in the following template for the Open WebUI init container pod with the slim image: > ``` > initContainers: > - command: > - sh > - -c > - cp -R -n /app/backend/data/* /tmp/app-data/ > image: ghcr.io/open-webui/open-webui:0.8.0-slim > imagePullPolicy: IfNotPresent > name: copy-app-data > resources: {} > terminationMessagePath: /dev/termination-log > terminationMessagePolicy: File > volumeMounts: > - mountPath: /tmp/app-data > name: data > ``` > > If you are not seeing the same results, please send me an example values file that causes the issue so I can investigate further. Thanks! Hi there, thanks for the reply and info! Is the copyAppData container also required when only using cloud services e.g. also for embedding?
Author
Owner

@westbrook-ai commented on GitHub (Feb 14, 2026):

Hi there, thanks for the reply and info! Is the copyAppData container also required when only using cloud services e.g. also for embedding?

It is not explicitly required at that point, however you will get error logs in Open WebUI for failure to download the embedding model from HuggingFace in an offline scenario. Given that if you're using a cloud provider you won't be in an offline scenario, the init container is not required and could be removed.

We can make that init container optional but defaulted to enabled if it would really speed things up for you!

@westbrook-ai commented on GitHub (Feb 14, 2026): > Hi there, thanks for the reply and info! Is the copyAppData container also required when only using cloud services e.g. also for embedding? It is not explicitly required at that point, however you will get error logs in Open WebUI for failure to download the embedding model from HuggingFace in an offline scenario. Given that if you're using a cloud provider you won't be in an offline scenario, the init container is not required and could be removed. We can make that init container optional but defaulted to enabled if it would really speed things up for you!
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: open-webui/helm-charts#116