Add flow-0.10.18 and update documentation

This commit is contained in:
Gitea Actions
2026-04-09 10:30:54 +00:00
parent 5be6fe300f
commit ceeb9d58e9
3 changed files with 195 additions and 48 deletions

View File

@@ -68,6 +68,18 @@ global:
# When both keycloak.enabled and azureAd.enabled are true, the system runs in # When both keycloak.enabled and azureAd.enabled are true, the system runs in
# dual-auth mode — accepting JWTs from either provider during the migration period. # dual-auth mode — accepting JWTs from either provider during the migration period.
# #
# AUTHENTICATION MODES:
# 1. Entra-only: azureAd.enabled=true, keycloak.enabled=false
# 2. Keycloak-only: azureAd.enabled=false, keycloak.enabled=true
# 3. Dual-auth: azureAd.enabled=true, keycloak.enabled=true
# 4. Disabled: azureAd.enabled=false, keycloak.enabled=false
#
# USING ENTRA LOGIN THROUGH KEYCLOAK (recommended for new deployments):
# Set azureAd.enabled=false and keycloak.enabled=true, then configure
# keycloak.entraIdBroker (see keycloak section below) with your Entra
# app registration. Users will see "Sign in with Microsoft Entra ID"
# on the Keycloak login page. All tokens are issued by Keycloak.
#
# DATABASE: # DATABASE:
# Internal PostgreSQL (default): The chart automatically creates a "keycloak" # Internal PostgreSQL (default): The chart automatically creates a "keycloak"
# database and user in the shared PostgreSQL instance. No manual setup needed. # database and user in the shared PostgreSQL instance. No manual setup needed.
@@ -1215,6 +1227,93 @@ keycloak:
# -- Extra environment variables for Keycloak # -- Extra environment variables for Keycloak
extraEnv: [] extraEnv: []
# ==========================================================================
# Realm configuration
# ==========================================================================
# These values are injected into the realm import JSON at deploy time.
# The realm is auto-imported on first Keycloak boot. To re-import after
# changes, delete the Keycloak pod (the realm is re-imported on startup).
realm:
# -- Additional redirect URIs for the frontend client (production URLs)
# The realm always includes localhost URIs for development.
# Add your production domain(s) here, e.g.:
# frontendRedirectUris:
# - "https://flow.your-domain.com/*"
frontendRedirectUris: []
# -- Additional web origins for CORS (production domains)
# Must match the redirect URI domains without path/wildcard, e.g.:
# frontendWebOrigins:
# - "https://flow.your-domain.com"
frontendWebOrigins: []
# ==========================================================================
# Entra ID (Azure AD) Identity Broker
# ==========================================================================
# When using Keycloak as the sole identity provider (global.azureAd.enabled=false,
# global.keycloak.enabled=true), users can still sign in with their existing
# Microsoft Entra ID / Azure AD accounts through Keycloak's identity brokering.
#
# HOW IT WORKS:
# Keycloak is configured as a "broker" — it delegates authentication to Entra ID
# via OIDC, then creates/links a local Keycloak user automatically. From the
# backend services' perspective, all tokens come from Keycloak.
#
# ENTRA APP REGISTRATION SETUP:
# 1. Create (or reuse) an App Registration in Azure Entra ID
# 2. Under "Authentication", add a redirect URI:
# https://<keycloak-host>/realms/flow/broker/microsoft/endpoint
# (e.g. https://auth.flow.your-domain.com/realms/flow/broker/microsoft/endpoint)
# 3. Under "Certificates & secrets", create a client secret
# 4. Copy the Application (client) ID → keycloak.entraIdBroker.clientId
# 5. Copy the Directory (tenant) ID → keycloak.entraIdBroker.tenantId
# 6. Copy the client secret value → keycloak.entraIdBroker.clientSecret
#
# SCENARIOS:
# ┌──────────────────────────────┬───────────────────┬──────────────────────┐
# │ Scenario │ global.azureAd │ entraIdBroker │
# ├──────────────────────────────┼───────────────────┼──────────────────────┤
# │ Keycloak-only, local users │ enabled: false │ enabled: false │
# │ Keycloak + Entra login │ enabled: false │ enabled: true │
# │ Dual-auth (migration) │ enabled: true │ enabled: false │
# │ Full Keycloak with Entra IdP │ enabled: false │ enabled: true │
# └──────────────────────────────┴───────────────────┴──────────────────────┘
#
# - "Keycloak + Entra login": Keycloak is the only token issuer. Users click
# "Sign in with Microsoft" on the Keycloak login page. Backend services only
# need to validate Keycloak tokens.
# - "Dual-auth (migration)": Both Entra and Keycloak tokens are accepted
# directly by backend services. Use this during migration only.
entraIdBroker:
# -- Enable Microsoft Entra ID as an identity provider in Keycloak
enabled: false
# -- Display name shown on the Keycloak login page button
displayName: "Microsoft Entra ID"
# -- Azure AD Tenant ID (Directory ID from Azure portal)
tenantId: ""
# -- Azure AD Application (client) ID from the App Registration
clientId: ""
# -- Azure AD client secret from the App Registration
# For production, use --set or an external secret instead of storing in values
clientSecret: ""
# -- Trust email addresses from Entra ID without requiring verification
# Safe to enable since Entra verifies emails itself
trustEmail: true
# -- First login flow — what happens when an Entra user logs in for the first time
# "first broker login": Keycloak's default flow (link or create account)
firstLoginFlow: "first broker login"
# -- Attribute sync mode: INHERIT, IMPORT, LEGACY, or FORCE
# IMPORT: Sync attributes on first login only
# FORCE: Sync on every login (keeps Keycloak in sync with Entra changes)
syncMode: "FORCE"
# -- Resource requests and limits # -- Resource requests and limits
resources: resources:
limits: limits:

BIN
flow-0.10.18.tgz Normal file

Binary file not shown.

View File

@@ -21,7 +21,55 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.801399489Z" created: "2026-04-09T10:30:53.87053711Z"
description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support
digest: 4dddb89d9d25037600528790e925c4cd33701501279d03658bce937c17242282
home: https://git.kn.entit.eu/EntitAB/Flow
keywords:
- workflow
- automation
- microservices
- dotnet
- rabbitmq
- postgresql
- redis
- soc2
- nis2
- compliance
- security
- backup
maintainers:
- name: Entit AB
url: https://entit.se
name: flow
sources:
- https://git.kn.entit.eu/EntitAB/Flow
type: application
urls:
- https://git.kn.entit.eu/EntitAB/Helm-Charts/raw/branch/main/flow-0.10.18.tgz
version: 0.10.18
- annotations:
category: Workflow Automation
compliance: |
This chart supports SOC2 and NIS2 compliance requirements:
- Network policies for zero-trust networking
- Encrypted backups with configurable retention
- Audit logging with SIEM integration
- TLS for internal communication
- High availability for all infrastructure components
images: |
- name: workflow-engine
image: flow/workflow-engine
- name: postgresql
image: postgres:16-alpine
- name: rabbitmq
image: rabbitmq:3.13-management-alpine
- name: redis
image: redis:7-alpine
apiVersion: v2
appVersion: latest
created: "2026-04-09T10:30:53.852265488Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: caa9c07c8904bbee8cfeeeb6a66d57724f35947d7d3b01fcd6d1bf061558bf88 digest: caa9c07c8904bbee8cfeeeb6a66d57724f35947d7d3b01fcd6d1bf061558bf88
@@ -69,7 +117,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.789069882Z" created: "2026-04-09T10:30:53.832391903Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 0c916c5c1a026dd8eeba177bb5dce741b437b063dcb157bc2abf0e2ccabe8521 digest: 0c916c5c1a026dd8eeba177bb5dce741b437b063dcb157bc2abf0e2ccabe8521
@@ -117,7 +165,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.767222812Z" created: "2026-04-09T10:30:53.812716501Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 191fbbf448de97dda6c15c5f0102c2b9db56b41ef28e25b325d6f1edee08785d digest: 191fbbf448de97dda6c15c5f0102c2b9db56b41ef28e25b325d6f1edee08785d
@@ -165,7 +213,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.753270637Z" created: "2026-04-09T10:30:53.79252244Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 71841bb3ce7556d0e8ea533d4f56b57890d9cc388654f9d28b74494a415c5848 digest: 71841bb3ce7556d0e8ea533d4f56b57890d9cc388654f9d28b74494a415c5848
@@ -213,7 +261,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.744634469Z" created: "2026-04-09T10:30:53.777439691Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: df41a3ef0562c731099ee1be8620bd703a3a785bd6ca129468df2239026a0970 digest: df41a3ef0562c731099ee1be8620bd703a3a785bd6ca129468df2239026a0970
@@ -261,7 +309,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.731114926Z" created: "2026-04-09T10:30:53.765166193Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 8fb34c031d6ba4b5200375c0daf728f3a28d7ba9d4935e3732a6d4264ebc9aed digest: 8fb34c031d6ba4b5200375c0daf728f3a28d7ba9d4935e3732a6d4264ebc9aed
@@ -309,7 +357,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.720500631Z" created: "2026-04-09T10:30:53.751081647Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 1952bb7626ea52aa941404c3dfc7cb7f12f57c1cf2d81a91383a06cd4bde9dcb digest: 1952bb7626ea52aa941404c3dfc7cb7f12f57c1cf2d81a91383a06cd4bde9dcb
@@ -357,7 +405,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.710764061Z" created: "2026-04-09T10:30:53.740113953Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 3314e0ba1ec2b5d156a786f8cafd3a41798e4ac083d989698be7ffc0101d7399 digest: 3314e0ba1ec2b5d156a786f8cafd3a41798e4ac083d989698be7ffc0101d7399
@@ -405,7 +453,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.876622661Z" created: "2026-04-09T10:30:54.003407888Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 0c8685db8bd4bb17f676d2fb32114359984d09059f0a44aaebedb6d0b62ffc7c digest: 0c8685db8bd4bb17f676d2fb32114359984d09059f0a44aaebedb6d0b62ffc7c
@@ -453,7 +501,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.867060955Z" created: "2026-04-09T10:30:53.987369419Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 55d3004291c914f4c746c5ec3ee9e61aa1a4b54575e74c73960247f26b125616 digest: 55d3004291c914f4c746c5ec3ee9e61aa1a4b54575e74c73960247f26b125616
@@ -501,7 +549,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.85763698Z" created: "2026-04-09T10:30:53.975647789Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 48bf48d2a2a7685fc5769ba4ccabd146ca776a3cdecc323a0f99d5db26522a0a digest: 48bf48d2a2a7685fc5769ba4ccabd146ca776a3cdecc323a0f99d5db26522a0a
@@ -549,7 +597,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.846854543Z" created: "2026-04-09T10:30:53.955671481Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 7ddd94720f2c20f97abab17481d68ebedff49f06d15a7a918a9dba707c388339 digest: 7ddd94720f2c20f97abab17481d68ebedff49f06d15a7a918a9dba707c388339
@@ -597,7 +645,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.836891779Z" created: "2026-04-09T10:30:53.932948038Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 105f563f05d39ae7f9334ea9685c0979c382ca79a08ec1e5d044d5de0fd12d09 digest: 105f563f05d39ae7f9334ea9685c0979c382ca79a08ec1e5d044d5de0fd12d09
@@ -645,7 +693,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.828135455Z" created: "2026-04-09T10:30:53.913048312Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 1d96ec58a6734f8b2252dc2c3dd2b8d98ff5f719172e260b76381ad47aab121b digest: 1d96ec58a6734f8b2252dc2c3dd2b8d98ff5f719172e260b76381ad47aab121b
@@ -693,7 +741,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.817977451Z" created: "2026-04-09T10:30:53.898795299Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: fab126027bc75451d96e2bb012647f50ef311a2793ee7e794b401523a98419ee digest: fab126027bc75451d96e2bb012647f50ef311a2793ee7e794b401523a98419ee
@@ -741,7 +789,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.808778328Z" created: "2026-04-09T10:30:53.882876396Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 95c026ff401fe147f746dd6350782b6e56d0cc5b9ba59bfd9ab56e0c4142b6c3 digest: 95c026ff401fe147f746dd6350782b6e56d0cc5b9ba59bfd9ab56e0c4142b6c3
@@ -789,7 +837,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.699578546Z" created: "2026-04-09T10:30:53.720199292Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: a0810efaef2db788c4f377c25bd44fa5aedb1c385231760655423cfadce47576 digest: a0810efaef2db788c4f377c25bd44fa5aedb1c385231760655423cfadce47576
@@ -837,7 +885,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:55:00.141612357Z" created: "2026-04-09T10:30:54.351967024Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: cb61a6b8a9710a67ba182c81cff5628e7b35f01604eb1c9b1bb22cbc594745c9 digest: cb61a6b8a9710a67ba182c81cff5628e7b35f01604eb1c9b1bb22cbc594745c9
@@ -885,7 +933,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:55:00.073001405Z" created: "2026-04-09T10:30:54.27140003Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: d8f862669db5e2786a05880de6952de473945dd645af5ee233f5584d9b8db6be digest: d8f862669db5e2786a05880de6952de473945dd645af5ee233f5584d9b8db6be
@@ -933,7 +981,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:55:00.061878659Z" created: "2026-04-09T10:30:54.256618861Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 4db89c3a0c51d99e40e33eeed7c9b43c5a505579944219ec7fc1cc26a6d33ca1 digest: 4db89c3a0c51d99e40e33eeed7c9b43c5a505579944219ec7fc1cc26a6d33ca1
@@ -981,7 +1029,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:55:00.051350275Z" created: "2026-04-09T10:30:54.240720329Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: f6fe90537c4ad8827abbdabad6ad628dcdd202bc48b3371929559c6bccfd71f5 digest: f6fe90537c4ad8827abbdabad6ad628dcdd202bc48b3371929559c6bccfd71f5
@@ -1029,7 +1077,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:55:00.033397791Z" created: "2026-04-09T10:30:54.2109083Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 6cee54664d41af7cefefceac70a7f141753d46a388d0bd27fe8810e73428391a digest: 6cee54664d41af7cefefceac70a7f141753d46a388d0bd27fe8810e73428391a
@@ -1077,7 +1125,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:55:00.025887452Z" created: "2026-04-09T10:30:54.189147452Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: b4f3c6bf205a5664c5bf85769ecda0e9bf235115f6e09d5db022dadc87c60f3c digest: b4f3c6bf205a5664c5bf85769ecda0e9bf235115f6e09d5db022dadc87c60f3c
@@ -1125,7 +1173,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:55:00.016751164Z" created: "2026-04-09T10:30:54.180805662Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 74fa58c368e95bb540c05bc50c5897652524a75fe76db7ee71c371d29715691b digest: 74fa58c368e95bb540c05bc50c5897652524a75fe76db7ee71c371d29715691b
@@ -1173,7 +1221,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:55:00.008879516Z" created: "2026-04-09T10:30:54.170960725Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 60cef3943125ca385024b5a1666bd6e3ca3df2965d4cfa32947af8f66da8d137 digest: 60cef3943125ca385024b5a1666bd6e3ca3df2965d4cfa32947af8f66da8d137
@@ -1221,7 +1269,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.998688099Z" created: "2026-04-09T10:30:54.164033849Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: f9f8bc1a12e5c8bccd5d2ffbf67ab584ac86e6156354ff9cefb17043af4965fa digest: f9f8bc1a12e5c8bccd5d2ffbf67ab584ac86e6156354ff9cefb17043af4965fa
@@ -1269,7 +1317,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.989766166Z" created: "2026-04-09T10:30:54.154011256Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 79145955a5c79591c263c827b77c3c4a7e245d7c0d727d9af725a780cf2ddf23 digest: 79145955a5c79591c263c827b77c3c4a7e245d7c0d727d9af725a780cf2ddf23
@@ -1317,7 +1365,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.975797698Z" created: "2026-04-09T10:30:54.147436676Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: fc3576aff90b5e0583f8a41ce410cbbbec1f4741e0e642667ff409a1a3f585a5 digest: fc3576aff90b5e0583f8a41ce410cbbbec1f4741e0e642667ff409a1a3f585a5
@@ -1365,7 +1413,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.961182435Z" created: "2026-04-09T10:30:54.136216123Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: d87e315aca50e32bfc84a563e29895ff316a06f04fe13828fdca10402bfafc99 digest: d87e315aca50e32bfc84a563e29895ff316a06f04fe13828fdca10402bfafc99
@@ -1413,7 +1461,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.953622505Z" created: "2026-04-09T10:30:54.123079928Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: f8a000364fc8ef1ae891db85d99a7ceeb6e82e1d20b91f00126c3f27a93c8a69 digest: f8a000364fc8ef1ae891db85d99a7ceeb6e82e1d20b91f00126c3f27a93c8a69
@@ -1461,7 +1509,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.944648048Z" created: "2026-04-09T10:30:54.116252415Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 166f938bd541d801f3b94287113635d1ed717ecaa87311100a1d0f5c394c58dc digest: 166f938bd541d801f3b94287113635d1ed717ecaa87311100a1d0f5c394c58dc
@@ -1509,7 +1557,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:55:00.134377622Z" created: "2026-04-09T10:30:54.342811848Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 78e737cfe7e6ebdf17c31781b75b201512a6372388df328f7dad2c1a78811a38 digest: 78e737cfe7e6ebdf17c31781b75b201512a6372388df328f7dad2c1a78811a38
@@ -1557,7 +1605,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:55:00.125784656Z" created: "2026-04-09T10:30:54.331532296Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 5c921b121b2af0bf51e905efc4f7c550ba28e23586d647ed1e81a3193855c4ac digest: 5c921b121b2af0bf51e905efc4f7c550ba28e23586d647ed1e81a3193855c4ac
@@ -1605,7 +1653,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:55:00.118840162Z" created: "2026-04-09T10:30:54.318359463Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: fa0a2037e79a90e75579d5acf7b8529266a2ae36255756115769db52327075d9 digest: fa0a2037e79a90e75579d5acf7b8529266a2ae36255756115769db52327075d9
@@ -1653,7 +1701,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:55:00.109663648Z" created: "2026-04-09T10:30:54.309765128Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 9bcd19ab45c0cefe5ede00b0e914a34b06245f858761d7ce586ca309a00f4161 digest: 9bcd19ab45c0cefe5ede00b0e914a34b06245f858761d7ce586ca309a00f4161
@@ -1701,7 +1749,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:55:00.101979295Z" created: "2026-04-09T10:30:54.303166638Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 698f8f60438a54a05aa9c6f593198242226e9ffa8f6175effc8d020fff0b7098 digest: 698f8f60438a54a05aa9c6f593198242226e9ffa8f6175effc8d020fff0b7098
@@ -1749,7 +1797,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:55:00.09065237Z" created: "2026-04-09T10:30:54.291805723Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 4818e69aa28fed61e3610de48e90a9b7bd16022bea0c484c337f32117402b388 digest: 4818e69aa28fed61e3610de48e90a9b7bd16022bea0c484c337f32117402b388
@@ -1797,7 +1845,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:55:00.083411409Z" created: "2026-04-09T10:30:54.284245834Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 8d00b2616d32f94551db3991bed7afe0694ea465207178c8b2f46d00a61d6395 digest: 8d00b2616d32f94551db3991bed7afe0694ea465207178c8b2f46d00a61d6395
@@ -1845,7 +1893,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:55:00.044292038Z" created: "2026-04-09T10:30:54.231871273Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 5add702006bef9f8896f57d54f21a8375ce3f846a40fae7376022b6c248bddc6 digest: 5add702006bef9f8896f57d54f21a8375ce3f846a40fae7376022b6c248bddc6
@@ -1893,7 +1941,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.93750335Z" created: "2026-04-09T10:30:54.103883009Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: bfb8e52b5b531c12222f6cb4abecb3350137082f6ce987ab84088da0a139cd4b digest: bfb8e52b5b531c12222f6cb4abecb3350137082f6ce987ab84088da0a139cd4b
@@ -1941,7 +1989,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.929255866Z" created: "2026-04-09T10:30:54.089977473Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: b3d228189c04786f753598682108aea5d91f911ddbb852fefcca97044eb09199 digest: b3d228189c04786f753598682108aea5d91f911ddbb852fefcca97044eb09199
@@ -1989,7 +2037,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.9219836Z" created: "2026-04-09T10:30:54.070422911Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: dfd4b6ce53f7d22fb2a6641fafd693d341e7c23eb591dc0aa3d101e07ecbefa7 digest: dfd4b6ce53f7d22fb2a6641fafd693d341e7c23eb591dc0aa3d101e07ecbefa7
@@ -2037,7 +2085,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-04-09T09:54:59.914897357Z" created: "2026-04-09T10:30:54.050880105Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: ef032ff33fb40cbe10ce4e4ce0ac4f96bb02835e1e31bc01ee87ff62320482b9 digest: ef032ff33fb40cbe10ce4e4ce0ac4f96bb02835e1e31bc01ee87ff62320482b9
@@ -2085,7 +2133,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: 1.0.0 appVersion: 1.0.0
created: "2026-04-09T09:54:59.907444422Z" created: "2026-04-09T10:30:54.043781289Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: c11710fcadc0182ba10713467ec5fb77672caabf1c7daddd95802a7940ce38c1 digest: c11710fcadc0182ba10713467ec5fb77672caabf1c7daddd95802a7940ce38c1
@@ -2133,7 +2181,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: 1.0.0 appVersion: 1.0.0
created: "2026-04-09T09:54:59.900327777Z" created: "2026-04-09T10:30:54.034739694Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 5565963e9fa91c8b0c58fdcd4955e4b038b799f713d21fa0521bebe693233920 digest: 5565963e9fa91c8b0c58fdcd4955e4b038b799f713d21fa0521bebe693233920
@@ -2181,7 +2229,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: 1.0.0 appVersion: 1.0.0
created: "2026-04-09T09:54:59.892132205Z" created: "2026-04-09T10:30:54.024859546Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: c74d5574e24dbe56fb5a1ece6213e2a57e4f4c10a2e65464490479aa335255e8 digest: c74d5574e24dbe56fb5a1ece6213e2a57e4f4c10a2e65464490479aa335255e8
@@ -2229,7 +2277,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: 1.0.0 appVersion: 1.0.0
created: "2026-04-09T09:54:59.885712099Z" created: "2026-04-09T10:30:54.01287175Z"
description: A Helm chart for deploying the Flow workflow engine platform with description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support SOC2/NIS2 compliance support
digest: 75fdf3bef90777328b4247d5881224518cd628418003151dd4f9dc4990e2d6ae digest: 75fdf3bef90777328b4247d5881224518cd628418003151dd4f9dc4990e2d6ae
@@ -2257,4 +2305,4 @@ entries:
urls: urls:
- https://git.kn.entit.eu/EntitAB/Helm-Charts/raw/branch/main/flow-0.3.1.tgz - https://git.kn.entit.eu/EntitAB/Helm-Charts/raw/branch/main/flow-0.3.1.tgz
version: 0.3.1 version: 0.3.1
generated: "2026-04-09T09:54:59.691904142Z" generated: "2026-04-09T10:30:53.708541839Z"