Add flow-0.10.7 and update documentation

This commit is contained in:
Gitea Actions
2026-03-24 07:51:47 +00:00
parent ef328d64b0
commit 115749553b
3 changed files with 126 additions and 37 deletions

View File

@@ -315,6 +315,47 @@ openTelemetry:
# -- OTLP protocol: grpc or http/protobuf
protocol: "grpc"
# =============================================================================
# Promotion Lifecycle
# =============================================================================
# -- Workflow promotion lifecycle configuration
# Each Flow deployment is a separate environment (Development/Test/Production).
# Configure this deployment's identity and its promotion targets so users can
# promote workflow definitions between environments through the UI.
promotion:
# -- This deployment's environment name
# Displayed as a badge in the UI and recorded as source in promotion metadata
environment: "Development"
# -- Promotion policy: Manual, Sequential, or AutoDev
# Manual: any version can be promoted to any configured target
# Sequential: versions must follow the promotion order (can't skip stages)
# AutoDev: auto-promote on save, manual for subsequent environments
policy: "Manual"
# -- Ordered sequence of environments for the Sequential policy
promotionOrder:
- "Development"
- "Test"
- "Production"
# -- Auto-promote on save (for AutoDev policy)
autoPromoteOnSave: false
# -- Target environment for auto-promotion
autoPromoteTarget: ""
# -- Target environments for promotion
# Each target requires network connectivity from the frontend-web pod
# to the target environment's definition-store service.
# Example:
# targets:
# - name: "Test"
# definitionStoreUrl: "http://flow-definition-store.flow-test.svc.cluster.local:80"
# - name: "Production"
# definitionStoreUrl: "http://flow-definition-store.flow-prod.svc.cluster.local:80"
targets: []
# =============================================================================
# Core Services
# =============================================================================