Add flow-0.10.15 and update documentation

This commit is contained in:
Gitea Actions
2026-04-09 07:56:43 +00:00
parent c9bd5094f8
commit ab557d741d
3 changed files with 123 additions and 45 deletions

View File

@@ -33,6 +33,18 @@ global:
azureAd:
enabled: false # Disable auth for local development
# -- Keycloak authentication for local development
# Enable this to test the full OIDC flow locally.
# When both azureAd and keycloak are disabled, auth is disabled entirely.
keycloak:
enabled: false # Set to true to enable Keycloak locally
realm: "flow"
frontendClientId: "flow-frontend"
backendClientId: "flow-backend"
backendClientSecret: "dev-backend-secret"
adminUsername: "admin"
adminPassword: "admin"
database:
provider: "Postgres"
postgres:
@@ -178,3 +190,21 @@ redis:
securityContext:
runAsNonRoot: false
readOnlyRootFilesystem: false
# -- Keycloak internal deployment for development
# Uses dev mode for fast startup without TLS
keycloak:
enabled: true
command: "start-dev"
database:
vendor: "postgres"
database: "keycloak"
username: "keycloak"
password: "devpassword123"
resources:
limits:
cpu: 500m
memory: 512Mi
requests:
cpu: 100m
memory: 256Mi