Compare commits

..

7 Commits

Author SHA1 Message Date
Gitea Actions Bot
8087dd86f5 Auto-update README with current k8s applications
All checks were successful
Terraform / Terraform (pull_request) Successful in 19s
Generated by CI/CD workflow on 2026-03-07 21:48:43

This PR updates the README.md file with the current list of applications found in the k8s/ directory structure.
2026-03-07 21:48:43 +00:00
6deb288496 Change COMFYUI_FLAGS to COMFYUI_ARGS
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 7s
Check with kubeconform / lint (push) Successful in 6s
Auto-update README / Generate README and Create MR (push) Successful in 8s
2026-03-07 21:48:18 +00:00
ff7dccfe76 Fix ai-dock ComfyUI port binding
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 8s
Check with kubeconform / lint (push) Successful in 7s
Auto-update README / Generate README and Create MR (push) Successful in 7s
2026-03-07 21:46:16 +00:00
4995d482c4 Fix time-slicing config map creation
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 8s
Check with kubeconform / lint (push) Successful in 7s
Auto-update README / Generate README and Create MR (push) Successful in 8s
2026-03-07 21:29:35 +00:00
0704ac33c7 Enable GPU time-slicing for ComfyUI and Ollama
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 8s
Check with kubeconform / lint (push) Successful in 6s
Auto-update README / Generate README and Create MR (push) Successful in 7s
2026-03-07 21:27:10 +00:00
a499210fa2 Change ArgoCD project to apps
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 7s
Check with kubeconform / lint (push) Successful in 6s
Auto-update README / Generate README and Create MR (push) Successful in 6s
2026-03-07 21:24:51 +00:00
ca15b9a569 Add toleration for desktop node to ComfyUI deployment
Some checks failed
Check with kubeconform / lint (push) Has been cancelled
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Has been cancelled
Auto-update README / Generate README and Create MR (push) Has been cancelled
2026-03-07 21:24:39 +00:00
3 changed files with 30 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ metadata:
name: comfyui
namespace: argocd
spec:
project: core
project: apps
destination:
namespace: comfyui
server: https://kubernetes.default.svc

View File

@@ -16,18 +16,34 @@ spec:
app: comfyui
spec:
runtimeClassName: nvidia
tolerations:
- key: workload
operator: Equal
value: desktop
effect: NoSchedule
nodeSelector:
kubernetes.io/hostname: uk-desktop.tail2fe2d.ts.net
# Fix permissions mismatch usually happening when mapping host paths
securityContext:
runAsUser: 0
initContainers:
- name: create-data-dir
image: busybox
command: ["sh", "-c", "mkdir -p /host.data && chown -R 1000:1000 /host.data"]
volumeMounts:
- name: data
mountPath: /host.data
containers:
- name: comfyui
image: ghcr.io/ai-dock/comfyui:latest-cuda
imagePullPolicy: IfNotPresent
env:
- name: CLI_ARGS
value: "--listen 0.0.0.0 --port 8188"
- name: COMFYUI_ARGS
value: "--listen 0.0.0.0"
- name: COMFYUI_PORT_LOCAL
value: "8188"
- name: COMFYUI_PORT_HOST
value: "8189"
ports:
- containerPort: 8188
name: http

View File

@@ -10,3 +10,14 @@ tolerations:
runtimeClassName: nvidia
setAsDefault: false
config:
default: any
map:
any: |-
version: v1
sharing:
timeSlicing:
resources:
- name: nvidia.com/gpu
replicas: 4