mirror of
https://github.com/open-webui/helm-charts
synced 2025-06-26 18:16:14 +00:00
Updated example to match Pipelines documentation
This commit is contained in:
parent
29e38c8d50
commit
d9c993a7db
@ -33,8 +33,8 @@ helm upgrade --install open-webui open-webui/pipelines
|
|||||||
| affinity | object | `{}` | Affinity for pod assignment |
|
| affinity | object | `{}` | Affinity for pod assignment |
|
||||||
| annotations | object | `{}` | |
|
| annotations | object | `{}` | |
|
||||||
| clusterDomain | string | `"cluster.local"` | Value of cluster domain |
|
| clusterDomain | string | `"cluster.local"` | Value of cluster domain |
|
||||||
| extraEnvVars | list | `[{"name":"PIPELINES_URLS","value":"https://github.com/open-webui/pipelines/blob/main/examples/langfuse_filter_pipeline.py"},{"name":"LANGFUSE_PUBLIC_KEY","valueFrom":{"secretKeyRef":{"key":"public-key","name":"langfuse-keys"}}},{"name":"LANGFUSE_SECRET_KEY","valueFrom":{"secretKeyRef":{"key":"secret-key","name":"langfuse-keys"}}},{"name":"LANGFUSE_HOST","value":"https://us.cloud.langfuse.com"}]` | Additional environments variables on the output Deployment definition. These are used to pull initial Pipeline files, and help configure Pipelines with required values (e.g. Langfuse API keys) |
|
| extraEnvVars | list | `[{"name":"PIPELINES_URLS","value":"https://github.com/open-webui/pipelines/blob/main/examples/filters/detoxify_filter_pipeline.py"}]` | Additional environments variables on the output Deployment definition. These are used to pull initial Pipeline files, and help configure Pipelines with required values (e.g. Langfuse API keys) |
|
||||||
| extraEnvVars[0] | object | `{"name":"PIPELINES_URLS","value":"https://github.com/open-webui/pipelines/blob/main/examples/langfuse_filter_pipeline.py"}` | Example pipeline to pull and load on deployment startup, see current pipelines here: https://github.com/open-webui/pipelines/blob/main/examples |
|
| extraEnvVars[0] | object | `{"name":"PIPELINES_URLS","value":"https://github.com/open-webui/pipelines/blob/main/examples/filters/detoxify_filter_pipeline.py"}` | Example pipeline to pull and load on deployment startup, see current pipelines here: https://github.com/open-webui/pipelines/blob/main/examples |
|
||||||
| image.pullPolicy | string | `"Always"` | |
|
| image.pullPolicy | string | `"Always"` | |
|
||||||
| image.repository | string | `"ghcr.io/open-webui/pipelines"` | |
|
| image.repository | string | `"ghcr.io/open-webui/pipelines"` | |
|
||||||
| image.tag | string | `"main"` | |
|
| image.tag | string | `"main"` | |
|
||||||
|
@ -1,40 +1,3 @@
|
|||||||
# Old manual manifest, used for reference
|
|
||||||
# apiVersion: apps/v1
|
|
||||||
# kind: Deployment
|
|
||||||
# metadata:
|
|
||||||
# name: open-webui-pipelines
|
|
||||||
# spec:
|
|
||||||
# replicas: 1
|
|
||||||
# selector:
|
|
||||||
# matchLabels:
|
|
||||||
# app: open-webui-pipelines
|
|
||||||
# template:
|
|
||||||
# metadata:
|
|
||||||
# labels:
|
|
||||||
# app: open-webui-pipelines
|
|
||||||
# spec:
|
|
||||||
# containers:
|
|
||||||
# - name: open-webui-pipelines
|
|
||||||
# image: ghcr.io/open-webui/pipelines:main
|
|
||||||
# imagePullPolicy: Always
|
|
||||||
# env:
|
|
||||||
# - name: PIPELINES_URLS
|
|
||||||
# value: https://github.com/open-webui/pipelines/blob/main/examples/langfuse_filter_pipeline.py
|
|
||||||
# - name: LANGFUSE_HOST
|
|
||||||
# value: https://us.cloud.langfuse.com
|
|
||||||
# - name: LANGFUSE_PUBLIC_KEY
|
|
||||||
# valueFrom:
|
|
||||||
# secretKeyRef:
|
|
||||||
# name: langfuse-keys
|
|
||||||
# key: public-key
|
|
||||||
# - name: LANGFUSE_SECRET_KEY
|
|
||||||
# valueFrom:
|
|
||||||
# secretKeyRef:
|
|
||||||
# name: langfuse-keys
|
|
||||||
# key: secret-key
|
|
||||||
# ports:
|
|
||||||
# - containerPort: 9099
|
|
||||||
|
|
||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
kind: Deployment
|
kind: Deployment
|
||||||
metadata:
|
metadata:
|
||||||
|
@ -53,16 +53,19 @@ service:
|
|||||||
extraEnvVars:
|
extraEnvVars:
|
||||||
# -- Example pipeline to pull and load on deployment startup, see current pipelines here: https://github.com/open-webui/pipelines/blob/main/examples
|
# -- Example pipeline to pull and load on deployment startup, see current pipelines here: https://github.com/open-webui/pipelines/blob/main/examples
|
||||||
- name: PIPELINES_URLS
|
- name: PIPELINES_URLS
|
||||||
value: "https://github.com/open-webui/pipelines/blob/main/examples/langfuse_filter_pipeline.py"
|
value: "https://github.com/open-webui/pipelines/blob/main/examples/filters/detoxify_filter_pipeline.py"
|
||||||
- name: LANGFUSE_PUBLIC_KEY
|
# -- Langfuse example, including values used in Langfuse filter to connect
|
||||||
valueFrom:
|
# - name: PIPELINES_URLS
|
||||||
secretKeyRef:
|
# value: "https://github.com/open-webui/pipelines/blob/main/examples/filters/langfuse_filter_pipeline.py"
|
||||||
name: langfuse-keys
|
# - name: LANGFUSE_PUBLIC_KEY
|
||||||
key: public-key
|
# valueFrom:
|
||||||
- name: LANGFUSE_SECRET_KEY
|
# secretKeyRef:
|
||||||
valueFrom:
|
# name: langfuse-keys
|
||||||
secretKeyRef:
|
# key: public-key
|
||||||
name: langfuse-keys
|
# - name: LANGFUSE_SECRET_KEY
|
||||||
key: secret-key
|
# valueFrom:
|
||||||
- name: LANGFUSE_HOST
|
# secretKeyRef:
|
||||||
value: https://us.cloud.langfuse.com
|
# name: langfuse-keys
|
||||||
|
# key: secret-key
|
||||||
|
# - name: LANGFUSE_HOST
|
||||||
|
# value: https://us.cloud.langfuse.com
|
||||||
|
Loading…
Reference in New Issue
Block a user