Add flow-0.8.3 and update documentation

This commit is contained in:
Gitea Actions
2025-12-23 12:43:48 +00:00
parent 2c774972d6
commit 22f34e5573
3 changed files with 70 additions and 10 deletions

View File

@@ -66,6 +66,10 @@ global:
host: "postgresql"
# -- PostgreSQL port
port: 5432
# -- Namespace where PostgreSQL is deployed (for network policy when external=true)
# - Set to namespace name if PostgreSQL is in a different namespace within the cluster (e.g., "database")
# - Leave empty if PostgreSQL is completely external (outside the cluster) to allow all egress IPs
namespace: ""
# -- Database name
database: "flow"
# -- Database username (for Azure, use format: username@servername)
@@ -97,6 +101,10 @@ global:
external: false
# -- RabbitMQ host (FQDN for managed services)
host: "rabbitmq"
# -- Namespace where RabbitMQ is deployed (for network policy when external=true)
# - Set to namespace name if RabbitMQ is in a different namespace within the cluster (e.g., "messaging")
# - Leave empty if RabbitMQ is completely external (outside the cluster) to allow all egress IPs
namespace: ""
# -- Additional hosts for cluster connection (comma-separated or list)
additionalHosts: []
# -- RabbitMQ AMQP port
@@ -139,6 +147,10 @@ global:
enabled: false
# -- Use external Redis instance (set to true for managed services like Azure Cache for Redis, Amazon ElastiCache, etc.)
external: false
# -- Namespace where Redis is deployed (for network policy when external=true)
# - Set to namespace name if Redis is in a different namespace within the cluster (e.g., "cache")
# - Leave empty if Redis is completely external (outside the cluster) to allow all egress IPs
namespace: ""
# -- Redis deployment mode: standalone, sentinel, or cluster
mode: "standalone"