fix(comfyui): disable k8s service links to fix COMFYUI_PORT env collision

Root cause: k8s Service named 'comfyui' auto-injects COMFYUI_PORT=tcp://...
into pod env, clobbering ai-dock's own COMFYUI_PORT variable which expects
a port number. This broke caddy's proxy config, leaving port 8188 dead.

Fix: enableServiceLinks: false, revert to port 8188 (ai-dock default).
Also bump startup probe failureThreshold 60->120 (20min budget for model loading).
This commit is contained in:
2026-09-13 09:29:14 +09:00
parent e4f6f03a8c
commit 0aaa45edb0
2 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -10,5 +10,5 @@ spec:
app: comfyui
ports:
- port: 80
targetPort: 18188
targetPort: 8188
protocol: TCP