mcp公司
ComfyUI SSE MCP服务器的Helm图。
使用Helm
helm repo add mcp-comfyui https://overseer66.github.io/comfyui-mcp-server-chart/
helm repo update
helm search repo mcp-comfyui配置(values.yaml)
基本设置
replicaCount: 1replicaCount:要部署的pod副本数量
图像设置
image:
repository: overseer66/mcp-comfyui-sse
tag: latest
pullPolicy: Always
# imagePullSecrets:
# name: pull-secretrepository:容器映像存储库tag:图像标签pullPolicy:图像拉取策略imagePullSecrets:私有注册表身份验证(可选)
机密设置
# secrets:
# imagePullSecrets:
# name: pull-secret
# dockerconfigjson:imagePullSecrets.name:Docker注册表秘密名称imagePullSecrets.dockerconfigjson:Base64编码的docker身份验证
服务设置
service:
type: ClusterIP
port: 8080type:服务类型(ClusterIP、NodePort、LoadBalancer)port:服务端口
环境变量
env:
COMFYUI_HOST: "comfyui.comfyui.svc.cluster.local"
COMFYUI_PORT: "8188"
RETURN_URL: "true"
WORKFLOW_DIR: "workflows"COMFYUI_HOST:ComfyUI的主机地址。如果你在Kubernetes中使用ComfyUI服务,你可以将其设置为comfyui.comfyui.svc.cluster.local(对于命名空间“comfyui”中名为“comfyui”的服务)在Kubernetes集群中访问它。- 容器环境变量设置
用法
# Preview rendered templates
helm template release-name ./mcp-comfyui-sse
# Install
helm install release-name ./mcp-comfyui-sse
# Upgrade
helm upgrade release-name ./mcp-comfyui-sse备注
- 当使用私有注册表时,两者
secrets.imagePullSecrets和image.imagePullSecrets需要配置 - 根据应用需求调整环境变量
