Helm values ollama.models.pull and ollama.models.run don't work #69

Closed
opened 2026-02-15 19:15:57 -05:00 by yindo · 2 comments
Owner

Originally created by @Josca on GitHub (Feb 26, 2025).

Hey folks, please how should these values work? I expected after providing e.g.

ollama:
  models:
    pull: [smollm:135m]
    run: [smollm:135m]

... the model smollm:135m will be available directly, pre-downloaded. But models list is empty after sign in. I tried that also with llama2 - the value which is used in examples, but the same result.

Image

Could anyone tell how to use it properly, please? Tested with chart 5.13.0.

Originally created by @Josca on GitHub (Feb 26, 2025). Hey folks, please how should these values work? I expected after providing e.g. ~~~yaml ollama: models: pull: [smollm:135m] run: [smollm:135m] ~~~ ... the model [`smollm:135m`](https://ollama.com/library/smollm/tags) will be available directly, pre-downloaded. But models list is empty after sign in. I tried that also with llama2 - the value which is used in examples, but the same result. <img width="1503" alt="Image" src="https://github.com/user-attachments/assets/3bc0bcba-bc1d-482c-9a02-49dd594dc272" /> Could anyone tell how to use it properly, please? Tested with chart 5.13.0.
yindo closed this issue 2026-02-15 19:15:57 -05:00
Author
Owner

@westbrook-ai commented on GitHub (Feb 26, 2025):

Hi @Josca, I believe the model names need to be wrapped in quotes, such as '["smollm:135m"]'. There also was a bug with those in an older version of the chart, so if adding quotes doesn't fix it, try pulling the latest chart.

@westbrook-ai commented on GitHub (Feb 26, 2025): Hi @Josca, I believe the model names need to be wrapped in quotes, such as '["smollm:135m"]'. There also was a bug with those in an older version of the chart, so if adding quotes doesn't fix it, try pulling the latest chart.
Author
Owner

@Josca commented on GitHub (Feb 27, 2025):

Hey @0xThresh , thank you for quick response. I found the issue 🎉 . There is another "ollama" helm value nested in upper level one. So all my ollama configs were ignored 🤦 . Problem solved:

ollama:
  ollama:
    models:
      pull: [smollm:135m]
      run: [smollm:135m]
@Josca commented on GitHub (Feb 27, 2025): Hey @0xThresh , thank you for quick response. I found the issue 🎉 . There is another "ollama" helm value nested in upper level one. So all my ollama configs were ignored 🤦 . Problem solved: ~~~yaml ollama: ollama: models: pull: [smollm:135m] run: [smollm:135m] ~~~
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: open-webui/helm-charts#69