mirror of
https://github.com/open-webui/helm-charts
synced 2025-06-26 18:16:14 +00:00
Revert Milvus PR due to size issues
This commit is contained in:
parent
6862dc5b2e
commit
9d2e8a03d2
1
.github/workflows/helm-test-open-webui.yml
vendored
1
.github/workflows/helm-test-open-webui.yml
vendored
@ -30,7 +30,6 @@ jobs:
|
|||||||
helm repo add open-webui https://helm.openwebui.com/
|
helm repo add open-webui https://helm.openwebui.com/
|
||||||
helm repo add tika https://apache.jfrog.io/artifactory/tika/
|
helm repo add tika https://apache.jfrog.io/artifactory/tika/
|
||||||
helm repo add redis https://charts.bitnami.com/bitnami
|
helm repo add redis https://charts.bitnami.com/bitnami
|
||||||
helm repo add milvus https://zilliztech.github.io/milvus-helm
|
|
||||||
- name: Build open-webui Helm dependencies
|
- name: Build open-webui Helm dependencies
|
||||||
run: |
|
run: |
|
||||||
helm dependency build ./charts/open-webui
|
helm dependency build ./charts/open-webui
|
||||||
|
@ -11,8 +11,5 @@ dependencies:
|
|||||||
- name: redis
|
- name: redis
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
version: 20.10.0
|
version: 20.10.0
|
||||||
- name: milvus
|
|
||||||
repository: https://zilliztech.github.io/milvus-helm
|
|
||||||
version: 4.2.40
|
|
||||||
digest: sha256:b9597e9cf5f89874a3c345562085ac3ba972b98ccf1b5e64425de0c17ec359f5
|
digest: sha256:b9597e9cf5f89874a3c345562085ac3ba972b98ccf1b5e64425de0c17ec359f5
|
||||||
generated: "2025-02-28T22:43:15.040921+09:00"
|
generated: "2025-02-28T22:43:15.040921+09:00"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: open-webui
|
name: open-webui
|
||||||
version: 5.22.0
|
version: 5.23.0
|
||||||
appVersion: 0.5.16
|
appVersion: 0.5.16
|
||||||
home: https://www.openwebui.com/
|
home: https://www.openwebui.com/
|
||||||
icon: >-
|
icon: >-
|
||||||
@ -43,7 +43,3 @@ dependencies:
|
|||||||
version: '>=20.6.2'
|
version: '>=20.6.2'
|
||||||
alias: redis-cluster
|
alias: redis-cluster
|
||||||
condition: redis-cluster.enabled
|
condition: redis-cluster.enabled
|
||||||
- name: milvus
|
|
||||||
repository: https://zilliztech.github.io/milvus-helm
|
|
||||||
version: '>=4.2.40'
|
|
||||||
condition: milvus.enabled
|
|
||||||
|
Binary file not shown.
@ -144,28 +144,6 @@ spec:
|
|||||||
- name: "ENABLE_OPENAI_API"
|
- name: "ENABLE_OPENAI_API"
|
||||||
value: "False"
|
value: "False"
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.rag.enabled }}
|
|
||||||
- name: "VECTOR_DB"
|
|
||||||
value: {{ .Values.rag.vectorDB | default "croma" | quote }}
|
|
||||||
{{- if and .Values.rag.enabled .Values.rag.embeddingEngine }}
|
|
||||||
- name: "RAG_EMBEDDING_ENGINE"
|
|
||||||
value: {{ .Values.rag.embeddingEngine | quote }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if and .Values.rag.enabled .Values.rag.embeddingModel }}
|
|
||||||
- name: "RAG_EMBEDDING_MODEL"
|
|
||||||
value: {{ .Values.rag.embeddingModel | quote }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.milvus.enabled }}
|
|
||||||
- name: "MILVUS_URI"
|
|
||||||
value: {{ .Values.milvus.uri | default "${DATA_DIR}/vector_db/milvus.db" | quote }}
|
|
||||||
- name: "MILVUS_DB"
|
|
||||||
value: {{ .Values.milvus.db | default "default" | quote }}
|
|
||||||
{{- if and .Values.milvus.enabled .Values.milvus.token }}
|
|
||||||
- name: "MILVUS_TOKEN"
|
|
||||||
value: {{ .Values.milvus.token | quote }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.extraEnvVars }}
|
{{- if .Values.extraEnvVars }}
|
||||||
{{- toYaml .Values.extraEnvVars | nindent 8 }}
|
{{- toYaml .Values.extraEnvVars | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -106,39 +106,6 @@ redis-cluster:
|
|||||||
# -- Number of Redis replica instances
|
# -- Number of Redis replica instances
|
||||||
replicaCount: 3
|
replicaCount: 3
|
||||||
|
|
||||||
rag:
|
|
||||||
# -- Enable RAG
|
|
||||||
# ref: https://docs.openwebui.com/getting-started/env-configuration#retrieval-augmented-generation-rag
|
|
||||||
enabled: false
|
|
||||||
# -- Vector database configuration
|
|
||||||
# ref: https://docs.openwebui.com/getting-started/env-configuration#vector_db
|
|
||||||
vectorDB: ""
|
|
||||||
# -- Embedding engine to use for RAG with env `RAG_EMBEDDING_ENGINE`: ""(empty), "ollama", "openai"
|
|
||||||
# ref: https://docs.openwebui.com/getting-started/env-configuration#rag_embedding_engine
|
|
||||||
embeddingEngine: ""
|
|
||||||
# -- Embedding model to use for RAG with env `RAG_EMBEDDING_MODEL`
|
|
||||||
# ref: https://docs.openwebui.com/getting-started/env-configuration#rag_embedding_model
|
|
||||||
embeddingModel: ""
|
|
||||||
|
|
||||||
milvus:
|
|
||||||
# -- Enable Milvus installation. Deploys a Milvus cluster/standalone with subchart 'milvus' from zilliztech
|
|
||||||
# ref: https://github.com/zilliztech/milvus-helm/tree/master/charts/milvus
|
|
||||||
enabled: false
|
|
||||||
# -- Milvus fullname override (recommended to be 'open-webui-milvus')
|
|
||||||
# - In this case, the Milvus uri will be 'http://[username:password@]open-webui-milvus:19530'
|
|
||||||
fullnameOverride: open-webui-milvus
|
|
||||||
# -- Active Milvus URI for RAG with env `MILVUS_URI`. If there is credentials in the uri, it will be used to connect to the Milvus server.
|
|
||||||
# ref: https://docs.openwebui.com/getting-started/env-configuration#milvus_uri
|
|
||||||
uri: "http://open-webui-milvus:19530"
|
|
||||||
# -- Example `milvus.uri` with credentials (Not recommended for production. Use `env` with `secretKeyRef` instead)
|
|
||||||
# uri: "http://username:password@open-webui-milvus:19530"
|
|
||||||
# -- Active Milvus database for RAG with env `MILVUS_DB`
|
|
||||||
# ref: https://docs.openwebui.com/getting-started/env-configuration#milvus_db
|
|
||||||
db: default
|
|
||||||
# -- Active Milvus token for RAG with env `MILVUS_TOKEN`
|
|
||||||
# ref: https://docs.openwebui.com/getting-started/env-configuration#milvus_token
|
|
||||||
token: {}
|
|
||||||
|
|
||||||
# -- Value of cluster domain
|
# -- Value of cluster domain
|
||||||
clusterDomain: cluster.local
|
clusterDomain: cluster.local
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user