Add flow-0.10.64 and update documentation

This commit is contained in:
Gitea Actions
2026-04-24 19:01:38 +00:00
parent 9f119a806c
commit 4c1cc91dde
5 changed files with 221 additions and 90 deletions

View File

@@ -369,6 +369,7 @@ global:
tenantRegistry: "http://{{ .Release.Name }}-tenant-registry.{{ .Release.Namespace }}.svc.cluster.local:80"
billingService: "http://{{ .Release.Name }}-billing-service.{{ .Release.Namespace }}.svc.cluster.local:80"
aiAssistant: "http://{{ .Release.Name }}-ai-assistant.{{ .Release.Namespace }}.svc.cluster.local:80"
mcpServer: "http://{{ .Release.Name }}-mcp-server.{{ .Release.Namespace }}.svc.cluster.local:80"
# -- OpenTelemetry configuration for distributed tracing and metrics
# Requires an OTLP-compatible collector (e.g., Grafana Alloy, Jaeger, OpenTelemetry Collector)
@@ -872,6 +873,58 @@ aiAssistant:
extraVolumeMounts: []
extraVolumes: []
# -- MCP Server configuration (exposes workflows as MCP tools for AI models)
mcpServer:
enabled: true
replicaCount: 1
image:
repository: flow/mcpserver
tag: ""
pullPolicy: IfNotPresent
service:
type: ClusterIP
port: 80
ingress:
enabled: false
className: ""
annotations: {}
hosts:
- host: mcp-server.local
paths:
- path: /
pathType: Prefix
tls: []
resources:
limits:
cpu: 250m
memory: 256Mi
requests:
cpu: 50m
memory: 128Mi
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 3
targetCPUUtilizationPercentage: 80
nodeSelector: {}
tolerations: []
affinity: {}
# -- Pod disruption budget
podDisruptionBudget:
enabled: false
minAvailable: 1
extraEnv: []
extraVolumeMounts: []
extraVolumes: []
# -- Tenant Registry service configuration
tenantRegistry:
enabled: true
@@ -1240,6 +1293,13 @@ pdfTextExtractActivity:
repository: flow/pdftextextractactivity
tag: ""
mcpActivity:
enabled: true
replicaCount: 1
image:
repository: flow/mcpactivity
tag: ""
# =============================================================================
# Infrastructure Dependencies
# =============================================================================
@@ -2354,6 +2414,8 @@ tls:
additionalDnsNames: []
billingService:
additionalDnsNames: []
mcpServer:
additionalDnsNames: []
# =============================================================================
# Monitoring (Prometheus Operator + Grafana)