v2 app deployment--templating mainly in manifest now.
This commit is contained in:
@@ -45,7 +45,7 @@ spec:
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: open-webui-secrets
|
||||
key: apps.openWebui.secretKey
|
||||
key: openWebui.secretKey
|
||||
volumeMounts:
|
||||
- name: data
|
||||
mountPath: /app/backend/data
|
||||
|
||||
@@ -4,12 +4,12 @@ kind: Ingress
|
||||
metadata:
|
||||
name: open-webui
|
||||
annotations:
|
||||
external-dns.alpha.kubernetes.io/target: {{ .cloud.domain }}
|
||||
external-dns.alpha.kubernetes.io/target: {{ .externalDnsDomain }}
|
||||
external-dns.alpha.kubernetes.io/cloudflare-proxied: "false"
|
||||
traefik.ingress.kubernetes.io/router.middlewares: crowdsec-crowdsec-bouncer@kubernetescrd,crowdsec-rate-limit@kubernetescrd
|
||||
spec:
|
||||
rules:
|
||||
- host: {{ .apps.open-webui.domain }}
|
||||
- host: {{ .domain }}
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
@@ -22,4 +22,4 @@ spec:
|
||||
tls:
|
||||
- secretName: wildcard-wild-cloud-tls
|
||||
hosts:
|
||||
- {{ .apps.open-webui.domain }}
|
||||
- {{ .domain }}
|
||||
@@ -1,17 +1,18 @@
|
||||
name: openWebui
|
||||
description: Open WebUI is a comprehensive, open-source web interface for AI models. Features a user-friendly design, supports various LLM runners, and operates entirely offline. Perfect for creating a ChatGPT-like experience with local or hosted models.
|
||||
description: Open WebUI is a comprehensive, open-source web interface for AI models.
|
||||
Features a user-friendly design, supports various LLM runners, and operates entirely
|
||||
offline. Perfect for creating a ChatGPT-like experience with local or hosted models.
|
||||
version: 0.4.5
|
||||
icon: https://docs.openwebui.com/assets/logo-dark.png
|
||||
icon: https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/open-webui.svg
|
||||
requires: []
|
||||
defaultConfig:
|
||||
namespace: open-webui
|
||||
externalDnsDomain: '{{ .cloud.domain }}'
|
||||
image: ghcr.io/open-webui/open-webui:main
|
||||
port: 8080
|
||||
storage: 10Gi
|
||||
domain: chat.{{ .cloud.domain }}
|
||||
# vLLM integration - connect to existing vLLM service
|
||||
vllmApiUrl: http://vllm-service.llm.svc.cluster.local:8000/v1
|
||||
# Authentication settings
|
||||
enableAuth: true
|
||||
enableSignup: false
|
||||
defaultSecrets:
|
||||
- key: apps.openWebui.secretKey
|
||||
defaultSecrets: []
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
apiVersion: v1
|
||||
kind: Namespace
|
||||
metadata:
|
||||
name: open-webui
|
||||
name: "{{ .namespace }}"
|
||||
Reference in New Issue
Block a user