Skip to content

Commit 8510090

Browse files
authored
Merge pull request #8 from smarter-project/ollama-version
Fix setting only one image version (guest is not set), fix documentation
2 parents 29b6701 + 2d1fa9c commit 8510090

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

Diff for: charts/home-orchestrator/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 2.0.8
18+
version: 2.0.9
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

Diff for: charts/home-orchestrator/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,9 @@ helm delete home-orchestrator --namespace <namespace to use>
3232

3333
| Name | Description | Value |
3434
| ---- | ----------- | ----- |
35+
| configuration.nameGuest | set DNS service name to access ollama-guest | home-orchestrator-ollama-guest |
36+
| configuration.portGuest | set TCP port ollama-guest will used | 31434 |
37+
| configuration.nameHost | set DNS service name to access ollama-host | home-orchestrator-ollama-host |
38+
| configuration.portHost | set TCP port ollama-host will used | 31435 |
39+
| configuration.model | set model to preload | llama3.2:1b-instruct-q4_K_M |
40+
| configuration.ollamaVersion | set ollama version to use | "latest" |

Diff for: charts/home-orchestrator/templates/common.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ spec:
7373
- name: models
7474
mountPath: /root/.ollama
7575
- name: ollama-guest
76-
image: ollama/ollama
76+
image: ollama/ollama:{{ .Values.configuration.ollamaVersion }}
7777
env:
7878
- name: OLLAMA_HOST
7979
value: http://0.0.0.0:{{ .Values.configuration.portGuest }}

0 commit comments

Comments
 (0)