Browse Source

remove namespace

duhow 1 year ago
parent
commit
770c6f210c

+ 0 - 4
kubernetes/helm/templates/ollama-namespace.yaml

@@ -1,4 +0,0 @@
-apiVersion: v1
-kind: Namespace
-metadata:
-  name: {{ .Values.namespace }}

+ 1 - 2
kubernetes/helm/templates/ollama-service.yaml

@@ -2,7 +2,6 @@ apiVersion: v1
 kind: Service
 metadata:
   name: ollama-service
-  namespace: {{ .Values.namespace }}
 spec:
   type: {{ .Values.ollama.service.type }}
   selector:
@@ -10,4 +9,4 @@ spec:
   ports:
   - protocol: TCP
     port: {{ .Values.ollama.servicePort }}
-    targetPort: {{ .Values.ollama.servicePort }}
+    targetPort: {{ .Values.ollama.servicePort }}

+ 1 - 2
kubernetes/helm/templates/ollama-statefulset.yaml

@@ -2,7 +2,6 @@ apiVersion: apps/v1
 kind: StatefulSet
 metadata:
   name: ollama
-  namespace: {{ .Values.namespace }}
 spec:
   serviceName: "ollama"
   replicas: {{ .Values.ollama.replicaCount }}
@@ -52,4 +51,4 @@ spec:
       accessModes: [ "ReadWriteOnce" ]
       resources:
         requests:
-          storage: {{ .Values.ollama.volumeSize }}
+          storage: {{ .Values.ollama.volumeSize }}

+ 1 - 2
kubernetes/helm/templates/webui-deployment.yaml

@@ -2,7 +2,6 @@ apiVersion: apps/v1
 kind: Deployment
 metadata:
   name: open-webui-deployment
-  namespace: {{ .Values.namespace }}
 spec:
   replicas: 1
   selector:
@@ -35,4 +34,4 @@ spec:
       volumes:
       - name: webui-volume
         persistentVolumeClaim:
-          claimName: open-webui-pvc
+          claimName: open-webui-pvc

+ 0 - 1
kubernetes/helm/templates/webui-ingress.yaml

@@ -3,7 +3,6 @@ apiVersion: networking.k8s.io/v1
 kind: Ingress
 metadata:
   name: open-webui-ingress
-  namespace: {{ .Values.namespace }}
 {{- if .Values.webui.ingress.annotations }}
   annotations:
 {{ toYaml .Values.webui.ingress.annotations | trimSuffix "\n" | indent 4 }}

+ 2 - 3
kubernetes/helm/templates/webui-pvc.yaml

@@ -1,12 +1,11 @@
 apiVersion: v1
 kind: PersistentVolumeClaim
 metadata:
+  name: open-webui-pvc
   labels:
     app: open-webui
-  name: open-webui-pvc
-  namespace: {{ .Values.namespace }}  
 spec:
   accessModes: [ "ReadWriteOnce" ]
   resources:
     requests:
-      storage: {{ .Values.webui.volumeSize }}
+      storage: {{ .Values.webui.volumeSize }}

+ 1 - 2
kubernetes/helm/templates/webui-service.yaml

@@ -2,7 +2,6 @@ apiVersion: v1
 kind: Service
 metadata:
   name: open-webui-service
-  namespace: {{ .Values.namespace }}
 spec:
   type: {{ .Values.webui.service.type }} # Default: NodePort  # Use LoadBalancer if you're on a cloud that supports it
   selector:
@@ -12,4 +11,4 @@ spec:
       port: {{ .Values.webui.servicePort }}
       targetPort: {{ .Values.webui.servicePort }}
       # If using NodePort, you can optionally specify the nodePort:
-      # nodePort: 30000
+      # nodePort: 30000

+ 1 - 3
kubernetes/helm/values.yaml

@@ -1,5 +1,3 @@
-namespace: open-webui
-
 ollama:
   replicaCount: 1
   image: ollama/ollama:latest
@@ -41,4 +39,4 @@ webui:
   nodeSelector: {}
   tolerations: []
   service:
-    type: NodePort
+    type: NodePort