license switch agpl -> busl1, sprints work, new product advisories

This commit is contained in:
master
2026-01-20 15:32:20 +02:00
parent 4903395618
commit c32fff8f86
1835 changed files with 38630 additions and 4359 deletions

View File

@@ -20,7 +20,7 @@ This document provides the configuration reference for the Release Orchestrator,
```bash
# Database
STELLA_DATABASE_URL=postgresql://user:pass@host:5432/stella
STELLA_REDIS_URL=redis://host:6379
STELLA_REDIS_URL=redis://host:6379 # Valkey (Redis-compatible)
STELLA_SECRET_KEY=base64-encoded-32-bytes
STELLA_LOG_LEVEL=info
STELLA_LOG_FORMAT=json
@@ -75,7 +75,7 @@ database:
ssl_mode: require
redis:
url: redis://host:6379
url: redis://host:6379 # Valkey (Redis-compatible)
prefix: stella
auth:

View File

@@ -2661,7 +2661,7 @@ script_engine:
compilation_cache:
enabled: true
memory_cache_size_mb: 256
distributed_cache: redis
distributed_cache: redis # Valkey (Redis-compatible)
ttl_days: 7
# Warm container pool

View File

@@ -785,7 +785,7 @@ performance:
default_ttl: "00:05:00"
l2:
enabled: true
provider: redis
provider: redis # Valkey (Redis-compatible)
connection_string: "redis://localhost:6379"
default_ttl: "01:00:00"

View File

@@ -291,7 +291,7 @@ plugin:
id: "com.example.jenkins-connector"
version: "1.0.0"
vendor: "Example Corp"
license: "Apache-2.0"
license: "BUSL-1.1"
description: "Jenkins CI integration for Stella Ops"
capabilities:

View File

@@ -429,6 +429,9 @@ Response:
}
```
In Valkey-backed deployments, the `redis` check reflects the Redis-compatible
Valkey cache.
### Readiness Probe
```http