Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
open-webui
Commits
be3400e3
"...git@developer.sourcefind.cn:chenpangpang/open-webui.git" did not exist on "7a77f3c2c06d19a7f588a13c48df4344dcfed73c"
Commit
be3400e3
authored
Feb 17, 2024
by
Bjørn Jørgensen
Browse files
rename more
parent
a9805df7
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
18 additions
and
18 deletions
+18
-18
kubernetes/helm/Chart.yaml
kubernetes/helm/Chart.yaml
+2
-2
kubernetes/helm/templates/webui-deployment.yaml
kubernetes/helm/templates/webui-deployment.yaml
+5
-5
kubernetes/helm/templates/webui-ingress.yaml
kubernetes/helm/templates/webui-ingress.yaml
+2
-2
kubernetes/helm/templates/webui-pvc.yaml
kubernetes/helm/templates/webui-pvc.yaml
+2
-2
kubernetes/helm/templates/webui-service.yaml
kubernetes/helm/templates/webui-service.yaml
+2
-2
kubernetes/helm/values.yaml
kubernetes/helm/values.yaml
+2
-2
kubernetes/manifest/base/ollama-service.yaml
kubernetes/manifest/base/ollama-service.yaml
+1
-1
kubernetes/manifest/base/webui-deployment.yaml
kubernetes/manifest/base/webui-deployment.yaml
+1
-1
kubernetes/manifest/base/webui-ingress.yaml
kubernetes/manifest/base/webui-ingress.yaml
+1
-1
No files found.
kubernetes/helm/Chart.yaml
View file @
be3400e3
apiVersion
:
v2
apiVersion
:
v2
name
:
open-webui
name
:
open-webui
description
:
"
Ollama
Web
UI:
A
User-Friendly
Web
Interface
for
Chat
Interactions
👋"
description
:
"
open-webui
UI:
A
User-Friendly
Web
Interface
for
Chat
Interactions
👋"
version
:
1.0.0
version
:
1.0.0
icon
:
https://
raw.
github
usercontent
.com/o
llama
-webui/o
llama
-webui/main/static/favicon.png
icon
:
https://github.com/o
pen
-webui/o
pen
-webui/
blob/
main/static/favicon.png
kubernetes/helm/templates/webui-deployment.yaml
View file @
be3400e3
apiVersion
:
apps/v1
apiVersion
:
apps/v1
kind
:
Deployment
kind
:
Deployment
metadata
:
metadata
:
name
:
o
llama
-webui-deployment
name
:
o
pen
-webui-deployment
namespace
:
{{
.Values.namespace
}}
namespace
:
{{
.Values.namespace
}}
spec
:
spec
:
replicas
:
1
replicas
:
1
selector
:
selector
:
matchLabels
:
matchLabels
:
app
:
o
llama
-webui
app
:
o
pen
-webui
template
:
template
:
metadata
:
metadata
:
labels
:
labels
:
app
:
o
llama
-webui
app
:
o
pen
-webui
spec
:
spec
:
containers
:
containers
:
-
name
:
o
llama
-webui
-
name
:
o
pen
-webui
image
:
{{
.Values.webui.image
}}
image
:
{{
.Values.webui.image
}}
ports
:
ports
:
-
containerPort
:
8080
-
containerPort
:
8080
...
@@ -35,4 +35,4 @@ spec:
...
@@ -35,4 +35,4 @@ spec:
volumes
:
volumes
:
-
name
:
webui-volume
-
name
:
webui-volume
persistentVolumeClaim
:
persistentVolumeClaim
:
claimName
:
ollama-webui-pvc
claimName
:
open-webui-pvc
\ No newline at end of file
\ No newline at end of file
kubernetes/helm/templates/webui-ingress.yaml
View file @
be3400e3
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
apiVersion
:
networking.k8s.io/v1
apiVersion
:
networking.k8s.io/v1
kind
:
Ingress
kind
:
Ingress
metadata
:
metadata
:
name
:
o
llama
-webui-ingress
name
:
o
pen
-webui-ingress
namespace
:
{{
.Values.namespace
}}
namespace
:
{{
.Values.namespace
}}
{{
- if .Values.webui.ingress.annotations
}}
{{
- if .Values.webui.ingress.annotations
}}
annotations
:
annotations
:
...
@@ -17,7 +17,7 @@ spec:
...
@@ -17,7 +17,7 @@ spec:
pathType
:
Prefix
pathType
:
Prefix
backend
:
backend
:
service
:
service
:
name
:
o
llama
-webui-service
name
:
o
pen
-webui-service
port
:
port
:
number
:
{{
.Values.webui.servicePort
}}
number
:
{{
.Values.webui.servicePort
}}
{{
- end
}}
{{
- end
}}
kubernetes/helm/templates/webui-pvc.yaml
View file @
be3400e3
...
@@ -2,8 +2,8 @@ apiVersion: v1
...
@@ -2,8 +2,8 @@ apiVersion: v1
kind
:
PersistentVolumeClaim
kind
:
PersistentVolumeClaim
metadata
:
metadata
:
labels
:
labels
:
app
:
o
llama
-webui
app
:
o
pen
-webui
name
:
o
llama
-webui-pvc
name
:
o
pen
-webui-pvc
namespace
:
{{
.Values.namespace
}}
namespace
:
{{
.Values.namespace
}}
spec
:
spec
:
accessModes
:
[
"
ReadWriteOnce"
]
accessModes
:
[
"
ReadWriteOnce"
]
...
...
kubernetes/helm/templates/webui-service.yaml
View file @
be3400e3
apiVersion
:
v1
apiVersion
:
v1
kind
:
Service
kind
:
Service
metadata
:
metadata
:
name
:
o
llama
-webui-service
name
:
o
pen
-webui-service
namespace
:
{{
.Values.namespace
}}
namespace
:
{{
.Values.namespace
}}
spec
:
spec
:
type
:
{{
.Values.webui.service.type
}}
# Default: NodePort # Use LoadBalancer if you're on a cloud that supports it
type
:
{{
.Values.webui.service.type
}}
# Default: NodePort # Use LoadBalancer if you're on a cloud that supports it
selector
:
selector
:
app
:
o
llama
-webui
app
:
o
pen
-webui
ports
:
ports
:
-
protocol
:
TCP
-
protocol
:
TCP
port
:
{{
.Values.webui.servicePort
}}
port
:
{{
.Values.webui.servicePort
}}
...
...
kubernetes/helm/values.yaml
View file @
be3400e3
...
@@ -19,7 +19,7 @@ ollama:
...
@@ -19,7 +19,7 @@ ollama:
webui
:
webui
:
replicaCount
:
1
replicaCount
:
1
image
:
ghcr.io/o
llama
-webui/o
llama
-webui:main
image
:
ghcr.io/o
pen
-webui/o
pen
-webui:main
servicePort
:
8080
servicePort
:
8080
resources
:
resources
:
limits
:
limits
:
...
@@ -30,7 +30,7 @@ webui:
...
@@ -30,7 +30,7 @@ webui:
annotations
:
annotations
:
# Use appropriate annotations for your Ingress controller, e.g., for NGINX:
# Use appropriate annotations for your Ingress controller, e.g., for NGINX:
# nginx.ingress.kubernetes.io/rewrite-target: /
# nginx.ingress.kubernetes.io/rewrite-target: /
host
:
o
llama
.minikube.local
host
:
o
pen-webui
.minikube.local
volumeSize
:
1Gi
volumeSize
:
1Gi
nodeSelector
:
{}
nodeSelector
:
{}
tolerations
:
[]
tolerations
:
[]
...
...
kubernetes/manifest/base/ollama-service.yaml
View file @
be3400e3
apiVersion
:
v1
apiVersion
:
v1
kind
:
Service
kind
:
Service
metadata
:
metadata
:
name
:
o
llama
-service
name
:
o
pen-webui
-service
namespace
:
open-webui
namespace
:
open-webui
spec
:
spec
:
selector
:
selector
:
...
...
kubernetes/manifest/base/webui-deployment.yaml
View file @
be3400e3
...
@@ -15,7 +15,7 @@ spec:
...
@@ -15,7 +15,7 @@ spec:
spec
:
spec
:
containers
:
containers
:
-
name
:
ollama-webui
-
name
:
ollama-webui
image
:
ghcr.io/o
llama
-webui/o
llama
-webui:main
image
:
ghcr.io/o
pen
-webui/o
pen
-webui:main
ports
:
ports
:
-
containerPort
:
8080
-
containerPort
:
8080
resources
:
resources
:
...
...
kubernetes/manifest/base/webui-ingress.yaml
View file @
be3400e3
...
@@ -8,7 +8,7 @@ metadata:
...
@@ -8,7 +8,7 @@ metadata:
# nginx.ingress.kubernetes.io/rewrite-target: /
# nginx.ingress.kubernetes.io/rewrite-target: /
spec
:
spec
:
rules
:
rules
:
-
host
:
o
llama
.minikube.local
-
host
:
o
pen-webui
.minikube.local
http
:
http
:
paths
:
paths
:
-
path
:
/
-
path
:
/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment