update: 更新helm chart到0.11.5-beta,新增webui的service和ingress资源模板

This commit is contained in:
zhangxinhui02
2025-11-20 23:18:02 +08:00
parent de7a45cad5
commit 14514ba837
8 changed files with 71 additions and 10 deletions

View File

@@ -11,6 +11,15 @@ spec:
port: 8000
protocol: TCP
targetPort: 8000
{{- if .Values.core.webui.enabled }}
- name: webui
port: {{ .Values.core.webui.service.port }}
protocol: TCP
targetPort: 8001
{{- if eq .Values.core.webui.service.type "NodePort" }}
nodePort: {{ .Values.core.webui.service.nodePort | default nil }}
{{- end }}
{{- end }}
selector:
app: {{ .Release.Name }}-maibot-core
type: ClusterIP