Add flow-0.10.68 and update documentation

This commit is contained in:
Gitea Actions
2026-04-27 10:15:21 +00:00
parent 61cf724c81
commit 4e32712228
3 changed files with 185 additions and 94 deletions

View File

@@ -370,6 +370,7 @@ global:
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"
configurationStore: "http://{{ .Release.Name }}-configuration-store.{{ .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)
@@ -832,6 +833,46 @@ connectionStore:
extraVolumeMounts: []
extraVolumes: []
# -- Configuration Store service configuration
configurationStore:
enabled: true
replicaCount: 1
image:
repository: flow/configurationstore
tag: ""
pullPolicy: IfNotPresent
service:
type: ClusterIP
port: 80
resources:
limits:
cpu: 500m
memory: 512Mi
requests:
cpu: 100m
memory: 256Mi
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 10
targetCPUUtilizationPercentage: 75
nodeSelector: {}
tolerations: []
affinity: {}
podDisruptionBudget:
enabled: false
minAvailable: 1
extraEnv: []
extraVolumeMounts: []
extraVolumes: []
# -- AI Assistant service configuration
aiAssistant:
enabled: true
@@ -2420,6 +2461,8 @@ tls:
additionalDnsNames: []
mcpServer:
additionalDnsNames: []
configurationStore:
additionalDnsNames: []
# =============================================================================
# Monitoring (Prometheus Operator + Grafana)