Skip to content

Commit

Permalink
Trigger pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
feiskyer committed Apr 28, 2024
1 parent 2912391 commit f0a5da4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.0
version: 0.1.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ The following table lists the configurable parameters of the Ollama chart and th
| `image.repository` | Image repository of Ollama | `"ollama/ollama"` |
| `image.tag` | Image tag of Ollama | `0.1.32` |
| `replicaCount` | Number of replicas, need storge class support of multiple read when pvc enabled and replica > 1 | `1` |
| `llm.models` | List of models to be loaded | `["phi3"]` |
| `llm.models` | List of models to be loaded | `["phi3", "llama3"]` |
| `persistentVolume.enabled` | Whether to enable persistent volume for Ollama | `true` |
| `persistentVolume.storageClass` | Storage class for Ollama persistent volume | `"default"` |
| `persistentVolume.accessModes` | Access mode for Ollama persistent volume | `["ReadWriteOnce"]` |
Expand Down
2 changes: 1 addition & 1 deletion values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ image:
replicaCount: 1 # Number of replicas, need storge class support of multiple read when pvc enabled and replica > 1

llm:
models: ["phi3"] # List of models to be loaded
models: ["phi3", "llama3"] # List of models to be pre-loaded (refer https://ollama.com/library for the supported models)

persistentVolume: # If true, use a Persistent Volume Claim, If false, use emptyDir
enabled: true
Expand Down

0 comments on commit f0a5da4

Please sign in to comment.