Skip to content

Commit

Permalink
Fixed data_url,err handling,ind component install
Browse files Browse the repository at this point in the history
handled https openwebui connect error handling
and pod failure and drop umberlla chart to
individual component install to support ToTest
  • Loading branch information
yarunachalam committed Dec 17, 2024
1 parent ef0e0b0 commit 80db77e
Show file tree
Hide file tree
Showing 8 changed files with 322 additions and 250 deletions.
192 changes: 0 additions & 192 deletions data/aistack/aistack_values.yaml

This file was deleted.

46 changes: 46 additions & 0 deletions data/aistack/milvus_totest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
global:
imagePullSecrets:
- application-collection
cluster:
enabled: True
image:
all:
registry: registry.suse.de
repository: suse/sle-15-sp6/update/products/ai/totest/images/containers/milvus
tag: 2.4.6
pullPolicy: IfNotPresent
standalone:
persistence:
persistentVolumeClaim:
storageClass: local-path
etcd:
replicaCount: 1
persistence:
storageClassName: local-path
minio:
mode: distributed
replicas: 4
rootUser: "admin"
rootPassword: "adminminio"
persistence:
storageClass: local-path
resources:
requests:
memory: 1024Mi
kafka:
enabled: True
persistence:
storageClassName: "local-path"
# #indexNode:
# resources:
# requests:
# nvidia.com/gpu: "1"
# limits:
# nvidia.com/gpu: "1"
#queryNode:
# resources:
# requests:
# nvidia.com/gpu: "1"
# limits:
# nvidia.com/gpu: "1"
#
46 changes: 46 additions & 0 deletions data/aistack/milvus_values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
global:
imagePullSecrets:
- application-collection
cluster:
enabled: True
image:
all:
registry: dp.apps.rancher.io
repository: containers/milvus
tag: 2.4.6
pullPolicy: IfNotPresent
standalone:
persistence:
persistentVolumeClaim:
storageClass: local-path
etcd:
replicaCount: 1
persistence:
storageClassName: local-path
minio:
mode: distributed
replicas: 4
rootUser: "admin"
rootPassword: "adminminio"
persistence:
storageClass: local-path
resources:
requests:
memory: 1024Mi
kafka:
enabled: True
persistence:
storageClassName: "local-path"
# #indexNode:
# resources:
# requests:
# nvidia.com/gpu: "1"
# limits:
# nvidia.com/gpu: "1"
#queryNode:
# resources:
# requests:
# nvidia.com/gpu: "1"
# limits:
# nvidia.com/gpu: "1"
#
9 changes: 9 additions & 0 deletions data/aistack/ollama_totest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
global:
imagePullSecrets:
- application-collection
ingress:
enabled: false
defaultModel: "gemma:2b"
ollama:
models:
- "gemma:2b"
9 changes: 9 additions & 0 deletions data/aistack/ollama_values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
global:
imagePullSecrets:
- application-collection
ingress:
enabled: false
defaultModel: "gemma:2b"
ollama:
models:
- "gemma:2b"
58 changes: 58 additions & 0 deletions data/aistack/open_webui_totest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
global:
imagePullSecrets:
- application-collection
image:
registry: registry.suse.de
repository: suse/sle-15-sp6/update/products/ai/totest/images/containers/open-webui
tag: 0.3.32
pullPolicy: IfNotPresent
ollamaUrls:
- http://ollama.suse-private-ai.svc.cluster.local:11434
persistence:
enabled: true
storageClass: local-path
ollama:
enabled: false
image:
registry: registry.suse.de
repository: suse/sle-15-sp6/update/products/ai/totest/images/containers/ollama
tag: 0.3.6
pullPolicy: IfNotPresent
ollama:
gpu:
enabled: true
type: 'nvidia'
number: 1
ingress:
enabled: false
defaultModel: "gemma:2b"
ollama:
models:
- "gemma:2b"
pipelines:
enabled: False
persistence:
storageClass: local-path
ingress:
enabled: true
class: ""
annotations:
nginx.ingress.kubernetes.io/ssl-redirect: "true"
host: suse-ollama-webui
tls: true
existingSecret: suse-private-ai-tls
extraEnvVars:
- name: DEFAULT_MODELS
value: "gemma:2b"
- name: DEFAULT_USER_ROLE
value: "user"
- name: WEBUI_NAME
value: "SUSE AI"
- name: GLOBAL_LOG_LEVEL
value: INFO
- name: RAG_EMBEDDING_MODEL
value: "sentence-transformers/all-MiniLM-L6-v2"
- name: VECTOR_DB
value: "milvus"
- name: MILVUS_URI
value: http://milvus.suse-private-ai.svc.cluster.local:19530
Loading

0 comments on commit 80db77e

Please sign in to comment.