forked from open-webui/open-webui
		
	rename more
This commit is contained in:
		
							parent
							
								
									a9805df7ef
								
							
						
					
					
						commit
						be3400e3f8
					
				
					 9 changed files with 18 additions and 18 deletions
				
			
		|  | @ -1,5 +1,5 @@ | ||||||
| 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.githubusercontent.com/ollama-webui/ollama-webui/main/static/favicon.png | icon: https://github.com/open-webui/open-webui/blob/main/static/favicon.png | ||||||
|  |  | ||||||
|  | @ -1,20 +1,20 @@ | ||||||
| apiVersion: apps/v1 | apiVersion: apps/v1 | ||||||
| kind: Deployment | kind: Deployment | ||||||
| metadata: | metadata: | ||||||
|   name: ollama-webui-deployment |   name: open-webui-deployment | ||||||
|   namespace: {{ .Values.namespace }} |   namespace: {{ .Values.namespace }} | ||||||
| spec: | spec: | ||||||
|   replicas: 1 |   replicas: 1 | ||||||
|   selector: |   selector: | ||||||
|     matchLabels: |     matchLabels: | ||||||
|       app: ollama-webui |       app: open-webui | ||||||
|   template: |   template: | ||||||
|     metadata: |     metadata: | ||||||
|       labels: |       labels: | ||||||
|         app: ollama-webui |         app: open-webui | ||||||
|     spec: |     spec: | ||||||
|       containers: |       containers: | ||||||
|       - name: ollama-webui |       - name: open-webui | ||||||
|         image: {{ .Values.webui.image }} |         image: {{ .Values.webui.image }} | ||||||
|         ports: |         ports: | ||||||
|         - containerPort: 8080 |         - containerPort: 8080 | ||||||
|  | @ -35,4 +35,4 @@ spec: | ||||||
|       volumes: |       volumes: | ||||||
|       - name: webui-volume |       - name: webui-volume | ||||||
|         persistentVolumeClaim: |         persistentVolumeClaim: | ||||||
|           claimName: ollama-webui-pvc |           claimName: open-webui-pvc | ||||||
|  | @ -2,7 +2,7 @@ | ||||||
| apiVersion: networking.k8s.io/v1 | apiVersion: networking.k8s.io/v1 | ||||||
| kind: Ingress | kind: Ingress | ||||||
| metadata: | metadata: | ||||||
|   name: ollama-webui-ingress |   name: open-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: | ||||||
|         pathType: Prefix |         pathType: Prefix | ||||||
|         backend: |         backend: | ||||||
|           service: |           service: | ||||||
|             name: ollama-webui-service |             name: open-webui-service | ||||||
|             port: |             port: | ||||||
|               number: {{ .Values.webui.servicePort }} |               number: {{ .Values.webui.servicePort }} | ||||||
| {{- end }} | {{- end }} | ||||||
|  |  | ||||||
|  | @ -2,8 +2,8 @@ apiVersion: v1 | ||||||
| kind: PersistentVolumeClaim | kind: PersistentVolumeClaim | ||||||
| metadata: | metadata: | ||||||
|   labels: |   labels: | ||||||
|     app: ollama-webui |     app: open-webui | ||||||
|   name: ollama-webui-pvc |   name: open-webui-pvc | ||||||
|   namespace: {{ .Values.namespace }}   |   namespace: {{ .Values.namespace }}   | ||||||
| spec: | spec: | ||||||
|   accessModes: [ "ReadWriteOnce" ] |   accessModes: [ "ReadWriteOnce" ] | ||||||
|  |  | ||||||
|  | @ -1,12 +1,12 @@ | ||||||
| apiVersion: v1 | apiVersion: v1 | ||||||
| kind: Service | kind: Service | ||||||
| metadata: | metadata: | ||||||
|   name: ollama-webui-service |   name: open-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: ollama-webui |     app: open-webui | ||||||
|   ports: |   ports: | ||||||
|     - protocol: TCP |     - protocol: TCP | ||||||
|       port: {{ .Values.webui.servicePort }} |       port: {{ .Values.webui.servicePort }} | ||||||
|  |  | ||||||
|  | @ -19,7 +19,7 @@ ollama: | ||||||
| 
 | 
 | ||||||
| webui: | webui: | ||||||
|   replicaCount: 1 |   replicaCount: 1 | ||||||
|   image: ghcr.io/ollama-webui/ollama-webui:main |   image: ghcr.io/open-webui/open-webui:main | ||||||
|   servicePort: 8080 |   servicePort: 8080 | ||||||
|   resources: |   resources: | ||||||
|     limits: |     limits: | ||||||
|  | @ -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: ollama.minikube.local |     host: open-webui.minikube.local | ||||||
|   volumeSize: 1Gi |   volumeSize: 1Gi | ||||||
|   nodeSelector: {} |   nodeSelector: {} | ||||||
|   tolerations: [] |   tolerations: [] | ||||||
|  |  | ||||||
|  | @ -1,7 +1,7 @@ | ||||||
| apiVersion: v1 | apiVersion: v1 | ||||||
| kind: Service | kind: Service | ||||||
| metadata: | metadata: | ||||||
|   name: ollama-service |   name: open-webui-service | ||||||
|   namespace: open-webui |   namespace: open-webui | ||||||
| spec: | spec: | ||||||
|   selector: |   selector: | ||||||
|  |  | ||||||
|  | @ -15,7 +15,7 @@ spec: | ||||||
|     spec: |     spec: | ||||||
|       containers: |       containers: | ||||||
|       - name: ollama-webui |       - name: ollama-webui | ||||||
|         image: ghcr.io/ollama-webui/ollama-webui:main |         image: ghcr.io/open-webui/open-webui:main | ||||||
|         ports: |         ports: | ||||||
|         - containerPort: 8080 |         - containerPort: 8080 | ||||||
|         resources: |         resources: | ||||||
|  |  | ||||||
|  | @ -8,7 +8,7 @@ metadata: | ||||||
|     # nginx.ingress.kubernetes.io/rewrite-target: / |     # nginx.ingress.kubernetes.io/rewrite-target: / | ||||||
| spec: | spec: | ||||||
|   rules: |   rules: | ||||||
|   - host: ollama.minikube.local |   - host: open-webui.minikube.local | ||||||
|     http: |     http: | ||||||
|       paths: |       paths: | ||||||
|       - path: / |       - path: / | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Bjørn Jørgensen
						Bjørn Jørgensen