add ollama chart

This commit is contained in:
Riccardo Schirone
2025-08-19 20:39:11 +02:00
parent 993fa2241a
commit fb2695266a
6 changed files with 33 additions and 2 deletions
+3
View File
@@ -91,3 +91,6 @@ export FUZZER_BASE_IMAGE="gcr.io/oss-fuzz-base/base-runner"
export MINIKUBE_CPU=6
export MINIKUBE_MEMORY_GB=10
export MINIKUBE_DISK_GB=80
# Enable ollama for local models support
# export OLLAMA_ENABLED=false
+5 -2
View File
@@ -56,5 +56,8 @@ dependencies:
- name: signoz
repository: https://charts.signoz.io
version: 0.71.0
digest: sha256:7175e733201e2be1f90820b1515a650edc4afefe4c57cc6fb9978a03bbdf6920
generated: "2025-08-04T14:19:11.272734+02:00"
- name: ollama
repository: https://helm.otwld.com/
version: 1.27.0
digest: sha256:4f7d264f294e211429c555d725c1ac501b417626f68fb1e8af0e9d2d835404a8
generated: "2025-08-19T20:21:39.737721+02:00"
+3
View File
@@ -62,3 +62,6 @@ dependencies:
version: "0.71.0"
repository: "https://charts.signoz.io"
condition: signoz.enabled
- name: ollama
version: "1.27.0"
repository: "https://helm.otwld.com/"
Binary file not shown.
@@ -29,6 +29,9 @@ global:
signoz:
deployed: ${DEPLOY_SIGNOZ}
ollama:
enabled: ${OLLAMA_ENABLED}
crs:
api_key_id: ${CRS_KEY_ID}
@@ -87,3 +90,11 @@ image-preloader:
signoz:
enabled: ${DEPLOY_SIGNOZ}
ollama:
enabled: ${OLLAMA_ENABLED}
gpu:
enabled: true
models:
pull:
- llama3.1
+11
View File
@@ -49,6 +49,8 @@ global:
secretKey: "sk-lf-..." # Replace with your actual secret key
signoz:
deployed: false
ollama:
enabled: false
crs:
api_key_id: 515cc8a0-3019-4c9f-8c1c-72d0b54ae561
api_key_token: VGuAC8axfOnFXKBB7irpNDOKcDjOlnyB
@@ -375,6 +377,11 @@ litellm-helm:
api_key: os.environ/ANTHROPIC_API_KEY
tpm: 1775000
- model_name: llama3.1-local
litellm_params:
model: ollama/llama3.1
api_base: http://localhost:11434
general_settings:
master_key: os.environ/BUTTERCUP_LITELLM_KEY
database_url: "postgresql://litellm_user:litellm_password11@buttercup-postgresql:5432/litellm"
@@ -386,3 +393,7 @@ restartPolicy: Always
# SigNoz observability platform
signoz:
enabled: false
# Local model support
ollama:
enabled: false