mirror of
https://github.com/open-webui/open-webui
synced 2024-11-06 08:56:39 +00:00
035c2e0500
There are currently 2 issues with the Kubernetes manifest: - open-webui-deployment refers to ollama-webui-pvc but not included in kustomization.yaml, causing issue if using GPU deployment - ollama-webui-pvc is using the wrong namespace This commit fixes both issue.
12 lines
218 B
YAML
12 lines
218 B
YAML
apiVersion: v1
|
|
kind: PersistentVolumeClaim
|
|
metadata:
|
|
labels:
|
|
app: ollama-webui
|
|
name: ollama-webui-pvc
|
|
namespace: open-webui
|
|
spec:
|
|
accessModes: ["ReadWriteOnce"]
|
|
resources:
|
|
requests:
|
|
storage: 2Gi |