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
770c6f21
"...git@developer.sourcefind.cn:chenpangpang/open-webui.git" did not exist on "2c2c2fd889b45e732438c7d4ef33efac479703d7"
Commit
770c6f21
authored
Feb 19, 2024
by
duhow
Browse files
remove namespace
parent
76a78893
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
7 additions
and
19 deletions
+7
-19
kubernetes/helm/templates/ollama-namespace.yaml
kubernetes/helm/templates/ollama-namespace.yaml
+0
-4
kubernetes/helm/templates/ollama-service.yaml
kubernetes/helm/templates/ollama-service.yaml
+1
-2
kubernetes/helm/templates/ollama-statefulset.yaml
kubernetes/helm/templates/ollama-statefulset.yaml
+1
-2
kubernetes/helm/templates/webui-deployment.yaml
kubernetes/helm/templates/webui-deployment.yaml
+1
-2
kubernetes/helm/templates/webui-ingress.yaml
kubernetes/helm/templates/webui-ingress.yaml
+0
-1
kubernetes/helm/templates/webui-pvc.yaml
kubernetes/helm/templates/webui-pvc.yaml
+2
-3
kubernetes/helm/templates/webui-service.yaml
kubernetes/helm/templates/webui-service.yaml
+1
-2
kubernetes/helm/values.yaml
kubernetes/helm/values.yaml
+1
-3
No files found.
kubernetes/helm/templates/ollama-namespace.yaml
deleted
100644 → 0
View file @
76a78893
apiVersion
:
v1
kind
:
Namespace
metadata
:
name
:
{{
.Values.namespace
}}
\ No newline at end of file
kubernetes/helm/templates/ollama-service.yaml
View file @
770c6f21
...
@@ -2,7 +2,6 @@ apiVersion: v1
...
@@ -2,7 +2,6 @@ apiVersion: v1
kind
:
Service
kind
:
Service
metadata
:
metadata
:
name
:
ollama-service
name
:
ollama-service
namespace
:
{{
.Values.namespace
}}
spec
:
spec
:
type
:
{{
.Values.ollama.service.type
}}
type
:
{{
.Values.ollama.service.type
}}
selector
:
selector
:
...
...
kubernetes/helm/templates/ollama-statefulset.yaml
View file @
770c6f21
...
@@ -2,7 +2,6 @@ apiVersion: apps/v1
...
@@ -2,7 +2,6 @@ apiVersion: apps/v1
kind
:
StatefulSet
kind
:
StatefulSet
metadata
:
metadata
:
name
:
ollama
name
:
ollama
namespace
:
{{
.Values.namespace
}}
spec
:
spec
:
serviceName
:
"
ollama"
serviceName
:
"
ollama"
replicas
:
{{
.Values.ollama.replicaCount
}}
replicas
:
{{
.Values.ollama.replicaCount
}}
...
...
kubernetes/helm/templates/webui-deployment.yaml
View file @
770c6f21
...
@@ -2,7 +2,6 @@ apiVersion: apps/v1
...
@@ -2,7 +2,6 @@ apiVersion: apps/v1
kind
:
Deployment
kind
:
Deployment
metadata
:
metadata
:
name
:
open-webui-deployment
name
:
open-webui-deployment
namespace
:
{{
.Values.namespace
}}
spec
:
spec
:
replicas
:
1
replicas
:
1
selector
:
selector
:
...
...
kubernetes/helm/templates/webui-ingress.yaml
View file @
770c6f21
...
@@ -3,7 +3,6 @@ apiVersion: networking.k8s.io/v1
...
@@ -3,7 +3,6 @@ apiVersion: networking.k8s.io/v1
kind
:
Ingress
kind
:
Ingress
metadata
:
metadata
:
name
:
open-webui-ingress
name
:
open-webui-ingress
namespace
:
{{
.Values.namespace
}}
{{
- if .Values.webui.ingress.annotations
}}
{{
- if .Values.webui.ingress.annotations
}}
annotations
:
annotations
:
{{
toYaml .Values.webui.ingress.annotations | trimSuffix "\n" | indent 4
}}
{{
toYaml .Values.webui.ingress.annotations | trimSuffix "\n" | indent 4
}}
...
...
kubernetes/helm/templates/webui-pvc.yaml
View file @
770c6f21
apiVersion
:
v1
apiVersion
:
v1
kind
:
PersistentVolumeClaim
kind
:
PersistentVolumeClaim
metadata
:
metadata
:
name
:
open-webui-pvc
labels
:
labels
:
app
:
open-webui
app
:
open-webui
name
:
open-webui-pvc
namespace
:
{{
.Values.namespace
}}
spec
:
spec
:
accessModes
:
[
"
ReadWriteOnce"
]
accessModes
:
[
"
ReadWriteOnce"
]
resources
:
resources
:
...
...
kubernetes/helm/templates/webui-service.yaml
View file @
770c6f21
...
@@ -2,7 +2,6 @@ apiVersion: v1
...
@@ -2,7 +2,6 @@ apiVersion: v1
kind
:
Service
kind
:
Service
metadata
:
metadata
:
name
:
open-webui-service
name
:
open-webui-service
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
:
...
...
kubernetes/helm/values.yaml
View file @
770c6f21
namespace
:
open-webui
ollama
:
ollama
:
replicaCount
:
1
replicaCount
:
1
image
:
ollama/ollama:latest
image
:
ollama/ollama:latest
...
...
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