Add flow-0.10.17 and update documentation
This commit is contained in:
@@ -119,7 +119,7 @@ redisActivity:
|
||||
blobStorageActivity:
|
||||
enabled: false
|
||||
|
||||
queueActivity:
|
||||
storageQueueActivity:
|
||||
enabled: false
|
||||
|
||||
cosmosDbActivity:
|
||||
@@ -176,6 +176,33 @@ awsS3Activity:
|
||||
awsSqsActivity:
|
||||
enabled: false
|
||||
|
||||
m365Activity:
|
||||
enabled: false
|
||||
|
||||
rabbitmqActivity:
|
||||
enabled: false
|
||||
|
||||
kafkaActivity:
|
||||
enabled: false
|
||||
|
||||
serviceBusActivity:
|
||||
enabled: false
|
||||
|
||||
keyVaultActivity:
|
||||
enabled: false
|
||||
|
||||
eventHubActivity:
|
||||
enabled: false
|
||||
|
||||
eventGridActivity:
|
||||
enabled: false
|
||||
|
||||
awsS3Activity:
|
||||
enabled: false
|
||||
|
||||
awsSqsActivity:
|
||||
enabled: false
|
||||
|
||||
# External infrastructure - not deployed by this chart
|
||||
rabbitmq:
|
||||
enabled: false
|
||||
|
||||
@@ -38,6 +38,21 @@ global:
|
||||
clientSecret: "" # Set via --set or external secret
|
||||
scopes: "access_as_user"
|
||||
|
||||
# ==========================================================================
|
||||
# Keycloak Authentication (alternative or dual-auth with Azure AD)
|
||||
# ==========================================================================
|
||||
# Enable Keycloak to use it as the identity provider instead of or alongside
|
||||
# Azure AD. When both azureAd and keycloak are enabled, dual-auth mode is
|
||||
# active and tokens from either provider are accepted.
|
||||
keycloak:
|
||||
enabled: false # Set to true to enable Keycloak authentication
|
||||
realm: "flow"
|
||||
frontendClientId: "flow-frontend"
|
||||
backendClientId: "flow-backend"
|
||||
backendClientSecret: "" # Set via --set or external secret
|
||||
adminUsername: "admin"
|
||||
adminPassword: "" # Set via --set or external secret
|
||||
|
||||
# ==========================================================================
|
||||
# External PostgreSQL (Managed Service)
|
||||
# ==========================================================================
|
||||
@@ -331,7 +346,7 @@ blobStorageActivity:
|
||||
enabled: true
|
||||
replicaCount: 2
|
||||
|
||||
queueActivity:
|
||||
storageQueueActivity:
|
||||
enabled: true
|
||||
replicaCount: 2
|
||||
|
||||
@@ -411,6 +426,64 @@ m365Activity:
|
||||
enabled: true
|
||||
replicaCount: 1
|
||||
|
||||
rabbitmqActivity:
|
||||
enabled: true
|
||||
replicaCount: 2
|
||||
|
||||
kafkaActivity:
|
||||
enabled: true
|
||||
replicaCount: 2
|
||||
|
||||
serviceBusActivity:
|
||||
enabled: true
|
||||
replicaCount: 2
|
||||
|
||||
# =============================================================================
|
||||
# Keycloak - Disabled by default for production (enable via global.keycloak)
|
||||
# =============================================================================
|
||||
# When global.keycloak.enabled is true, the chart deploys a Keycloak instance.
|
||||
# For production, consider using an external managed Keycloak instead:
|
||||
# keycloak:
|
||||
# external: true
|
||||
# host: "keycloak.your-domain.com"
|
||||
keycloak:
|
||||
enabled: true
|
||||
command: "start"
|
||||
ingress:
|
||||
enabled: true
|
||||
className: nginx
|
||||
annotations:
|
||||
nginx.ingress.kubernetes.io/ssl-redirect: "true"
|
||||
cert-manager.io/cluster-issuer: letsencrypt-prod
|
||||
hosts:
|
||||
- host: auth.flow.your-domain.com
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
tls:
|
||||
- secretName: flow-keycloak-tls
|
||||
hosts:
|
||||
- auth.flow.your-domain.com
|
||||
resources:
|
||||
limits:
|
||||
cpu: 1000m
|
||||
memory: 1Gi
|
||||
requests:
|
||||
cpu: 250m
|
||||
memory: 512Mi
|
||||
|
||||
awsS3Activity:
|
||||
enabled: true
|
||||
replicaCount: 1
|
||||
|
||||
awsSqsActivity:
|
||||
enabled: true
|
||||
replicaCount: 1
|
||||
|
||||
m365Activity:
|
||||
enabled: true
|
||||
replicaCount: 1
|
||||
|
||||
# =============================================================================
|
||||
# Infrastructure - Disabled (using external managed services)
|
||||
# =============================================================================
|
||||
|
||||
@@ -67,6 +67,15 @@ global:
|
||||
# -- Keycloak authentication configuration
|
||||
# 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.
|
||||
#
|
||||
# DATABASE:
|
||||
# Internal PostgreSQL (default): The chart automatically creates a "keycloak"
|
||||
# database and user in the shared PostgreSQL instance. No manual setup needed.
|
||||
#
|
||||
# External PostgreSQL: You must pre-create the database and user:
|
||||
# CREATE ROLE keycloak WITH LOGIN PASSWORD 'your-password';
|
||||
# CREATE DATABASE keycloak OWNER keycloak;
|
||||
# Then set keycloak.database.host/password below (or use existingSecret).
|
||||
keycloak:
|
||||
# -- Enable Keycloak as an identity provider
|
||||
enabled: false
|
||||
@@ -1129,9 +1138,32 @@ m365Activity:
|
||||
|
||||
# -- Keycloak internal deployment configuration
|
||||
# Only used when global.keycloak.enabled=true and global.keycloak.external=false
|
||||
# ==========================================================================
|
||||
# Keycloak Internal Deployment
|
||||
# ==========================================================================
|
||||
# Controls the Keycloak pod deployed by this chart.
|
||||
# Set keycloak.enabled=false when using an external Keycloak (global.keycloak.external=true).
|
||||
#
|
||||
# DATABASE CONNECTION:
|
||||
# Keycloak needs its own PostgreSQL database. How this works depends on your setup:
|
||||
#
|
||||
# 1. Internal PostgreSQL (postgresql.enabled=true, default):
|
||||
# The chart automatically creates the "keycloak" database, user, and password
|
||||
# inside the shared PostgreSQL instance. Nothing to configure — it just works.
|
||||
#
|
||||
# 2. External PostgreSQL (global.database.postgres.external=true):
|
||||
# Keycloak connects to your external PostgreSQL using the host/port from
|
||||
# global.database.postgres (unless overridden with keycloak.database.host/port).
|
||||
# You MUST pre-create the database and user manually:
|
||||
# CREATE ROLE keycloak WITH LOGIN PASSWORD 'your-password';
|
||||
# CREATE DATABASE keycloak OWNER keycloak;
|
||||
# Then set keycloak.database.password (or existingSecret) to match.
|
||||
#
|
||||
# 3. Dedicated database host for Keycloak:
|
||||
# Set keycloak.database.host to point Keycloak at a different PostgreSQL
|
||||
# instance than the one used by the rest of Flow.
|
||||
keycloak:
|
||||
# -- Enable internal Keycloak deployment
|
||||
# Set to false when using an external Keycloak instance (global.keycloak.external=true)
|
||||
enabled: true
|
||||
|
||||
image:
|
||||
@@ -1149,28 +1181,35 @@ keycloak:
|
||||
# Set to "start-dev" for local development without TLS
|
||||
command: "start"
|
||||
|
||||
# -- Keycloak uses the shared Flow PostgreSQL database by default.
|
||||
# When using the chart's internal PostgreSQL, the keycloak database. user, and
|
||||
# password are created automatically by the PostgreSQL init script.
|
||||
# When using external PostgreSQL, you must pre-create the database and user
|
||||
# and provide the connection details below.
|
||||
# -- Keycloak PostgreSQL database connection
|
||||
# When internal PostgreSQL is used, these are auto-provisioned by the init script.
|
||||
# When external PostgreSQL is used, you must set host and password.
|
||||
database:
|
||||
# -- Use a separate database instance for Keycloak (set to true for dedicated DB)
|
||||
# -- Use a completely separate database instance for Keycloak
|
||||
# When true, the init script does NOT create the keycloak DB in shared PostgreSQL.
|
||||
# You must provide keycloak.database.host pointing to the dedicated instance.
|
||||
dedicated: false
|
||||
# -- Database vendor (postgres or dev-mem for ephemeral dev mode)
|
||||
vendor: "postgres"
|
||||
# -- Database name (auto-created in the shared PostgreSQL instance)
|
||||
# -- Database name
|
||||
database: "keycloak"
|
||||
# -- Database username
|
||||
username: "keycloak"
|
||||
# -- Database password (ignored if existingSecret is set)
|
||||
# -- Database password
|
||||
# For internal PostgreSQL: leave empty to auto-generate. The same password is used
|
||||
# to create the DB role and to connect from Keycloak (stored in the keycloak secret).
|
||||
# For external PostgreSQL: set this to the password of the pre-created role.
|
||||
password: ""
|
||||
# -- Use existing secret for password
|
||||
# -- Use an existing Kubernetes secret for the database password
|
||||
existingSecret: ""
|
||||
existingSecretKey: "keycloak-db-password"
|
||||
# -- Override database host (auto-resolved from shared PostgreSQL if empty)
|
||||
# -- Database host override
|
||||
# Leave empty to auto-resolve:
|
||||
# - Internal PG: uses the chart's PostgreSQL service (e.g. <release>-postgresql-primary)
|
||||
# - External PG: uses global.database.postgres.host
|
||||
# Set explicitly to point Keycloak at a different host.
|
||||
host: ""
|
||||
# -- Override database port
|
||||
# -- Database port override (0 = use the same port as global.database.postgres.port)
|
||||
port: 0
|
||||
|
||||
# -- Extra environment variables for Keycloak
|
||||
@@ -1188,6 +1227,11 @@ keycloak:
|
||||
# -- Keycloak HTTP port (internal, before proxy)
|
||||
httpPort: 8080
|
||||
|
||||
# -- Keycloak management port (health/metrics endpoints)
|
||||
# Since Keycloak 24+, health and metrics are served on a separate management
|
||||
# interface. Default: 9000. Probes must target this port, not httpPort.
|
||||
managementPort: 9000
|
||||
|
||||
# -- Enable health and metrics endpoints
|
||||
health:
|
||||
enabled: true
|
||||
|
||||
BIN
flow-0.10.17.tgz
Normal file
BIN
flow-0.10.17.tgz
Normal file
Binary file not shown.
142
index.yaml
142
index.yaml
@@ -21,7 +21,55 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.369264629Z"
|
||||
created: "2026-04-09T09:54:59.801399489Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: caa9c07c8904bbee8cfeeeb6a66d57724f35947d7d3b01fcd6d1bf061558bf88
|
||||
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.17.tgz
|
||||
version: 0.10.17
|
||||
- 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-09T09:54:59.789069882Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 0c916c5c1a026dd8eeba177bb5dce741b437b063dcb157bc2abf0e2ccabe8521
|
||||
@@ -69,7 +117,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.357949741Z"
|
||||
created: "2026-04-09T09:54:59.767222812Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 191fbbf448de97dda6c15c5f0102c2b9db56b41ef28e25b325d6f1edee08785d
|
||||
@@ -117,7 +165,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.340033393Z"
|
||||
created: "2026-04-09T09:54:59.753270637Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 71841bb3ce7556d0e8ea533d4f56b57890d9cc388654f9d28b74494a415c5848
|
||||
@@ -165,7 +213,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.332757258Z"
|
||||
created: "2026-04-09T09:54:59.744634469Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: df41a3ef0562c731099ee1be8620bd703a3a785bd6ca129468df2239026a0970
|
||||
@@ -213,7 +261,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.321882134Z"
|
||||
created: "2026-04-09T09:54:59.731114926Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 8fb34c031d6ba4b5200375c0daf728f3a28d7ba9d4935e3732a6d4264ebc9aed
|
||||
@@ -261,7 +309,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.307539806Z"
|
||||
created: "2026-04-09T09:54:59.720500631Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 1952bb7626ea52aa941404c3dfc7cb7f12f57c1cf2d81a91383a06cd4bde9dcb
|
||||
@@ -309,7 +357,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.298166906Z"
|
||||
created: "2026-04-09T09:54:59.710764061Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 3314e0ba1ec2b5d156a786f8cafd3a41798e4ac083d989698be7ffc0101d7399
|
||||
@@ -357,7 +405,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.434747752Z"
|
||||
created: "2026-04-09T09:54:59.876622661Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 0c8685db8bd4bb17f676d2fb32114359984d09059f0a44aaebedb6d0b62ffc7c
|
||||
@@ -405,7 +453,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.42664494Z"
|
||||
created: "2026-04-09T09:54:59.867060955Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 55d3004291c914f4c746c5ec3ee9e61aa1a4b54575e74c73960247f26b125616
|
||||
@@ -453,7 +501,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.417386632Z"
|
||||
created: "2026-04-09T09:54:59.85763698Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 48bf48d2a2a7685fc5769ba4ccabd146ca776a3cdecc323a0f99d5db26522a0a
|
||||
@@ -501,7 +549,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.408629261Z"
|
||||
created: "2026-04-09T09:54:59.846854543Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 7ddd94720f2c20f97abab17481d68ebedff49f06d15a7a918a9dba707c388339
|
||||
@@ -549,7 +597,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.400718943Z"
|
||||
created: "2026-04-09T09:54:59.836891779Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 105f563f05d39ae7f9334ea9685c0979c382ca79a08ec1e5d044d5de0fd12d09
|
||||
@@ -597,7 +645,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.392494613Z"
|
||||
created: "2026-04-09T09:54:59.828135455Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 1d96ec58a6734f8b2252dc2c3dd2b8d98ff5f719172e260b76381ad47aab121b
|
||||
@@ -645,7 +693,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.386292901Z"
|
||||
created: "2026-04-09T09:54:59.817977451Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: fab126027bc75451d96e2bb012647f50ef311a2793ee7e794b401523a98419ee
|
||||
@@ -693,7 +741,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.375414885Z"
|
||||
created: "2026-04-09T09:54:59.808778328Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 95c026ff401fe147f746dd6350782b6e56d0cc5b9ba59bfd9ab56e0c4142b6c3
|
||||
@@ -741,7 +789,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.287944552Z"
|
||||
created: "2026-04-09T09:54:59.699578546Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: a0810efaef2db788c4f377c25bd44fa5aedb1c385231760655423cfadce47576
|
||||
@@ -789,7 +837,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.689179019Z"
|
||||
created: "2026-04-09T09:55:00.141612357Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: cb61a6b8a9710a67ba182c81cff5628e7b35f01604eb1c9b1bb22cbc594745c9
|
||||
@@ -837,7 +885,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.628596835Z"
|
||||
created: "2026-04-09T09:55:00.073001405Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: d8f862669db5e2786a05880de6952de473945dd645af5ee233f5584d9b8db6be
|
||||
@@ -885,7 +933,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.615114375Z"
|
||||
created: "2026-04-09T09:55:00.061878659Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 4db89c3a0c51d99e40e33eeed7c9b43c5a505579944219ec7fc1cc26a6d33ca1
|
||||
@@ -933,7 +981,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.601345992Z"
|
||||
created: "2026-04-09T09:55:00.051350275Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: f6fe90537c4ad8827abbdabad6ad628dcdd202bc48b3371929559c6bccfd71f5
|
||||
@@ -981,7 +1029,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.566199887Z"
|
||||
created: "2026-04-09T09:55:00.033397791Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 6cee54664d41af7cefefceac70a7f141753d46a388d0bd27fe8810e73428391a
|
||||
@@ -1029,7 +1077,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.560099266Z"
|
||||
created: "2026-04-09T09:55:00.025887452Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: b4f3c6bf205a5664c5bf85769ecda0e9bf235115f6e09d5db022dadc87c60f3c
|
||||
@@ -1077,7 +1125,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.550955285Z"
|
||||
created: "2026-04-09T09:55:00.016751164Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 74fa58c368e95bb540c05bc50c5897652524a75fe76db7ee71c371d29715691b
|
||||
@@ -1125,7 +1173,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.544899076Z"
|
||||
created: "2026-04-09T09:55:00.008879516Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 60cef3943125ca385024b5a1666bd6e3ca3df2965d4cfa32947af8f66da8d137
|
||||
@@ -1173,7 +1221,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.536506987Z"
|
||||
created: "2026-04-09T09:54:59.998688099Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: f9f8bc1a12e5c8bccd5d2ffbf67ab584ac86e6156354ff9cefb17043af4965fa
|
||||
@@ -1221,7 +1269,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.530637974Z"
|
||||
created: "2026-04-09T09:54:59.989766166Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 79145955a5c79591c263c827b77c3c4a7e245d7c0d727d9af725a780cf2ddf23
|
||||
@@ -1269,7 +1317,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.517400888Z"
|
||||
created: "2026-04-09T09:54:59.975797698Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: fc3576aff90b5e0583f8a41ce410cbbbec1f4741e0e642667ff409a1a3f585a5
|
||||
@@ -1317,7 +1365,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.509480142Z"
|
||||
created: "2026-04-09T09:54:59.961182435Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: d87e315aca50e32bfc84a563e29895ff316a06f04fe13828fdca10402bfafc99
|
||||
@@ -1365,7 +1413,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.503022672Z"
|
||||
created: "2026-04-09T09:54:59.953622505Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: f8a000364fc8ef1ae891db85d99a7ceeb6e82e1d20b91f00126c3f27a93c8a69
|
||||
@@ -1413,7 +1461,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.49674855Z"
|
||||
created: "2026-04-09T09:54:59.944648048Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 166f938bd541d801f3b94287113635d1ed717ecaa87311100a1d0f5c394c58dc
|
||||
@@ -1461,7 +1509,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.681228253Z"
|
||||
created: "2026-04-09T09:55:00.134377622Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 78e737cfe7e6ebdf17c31781b75b201512a6372388df328f7dad2c1a78811a38
|
||||
@@ -1509,7 +1557,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.675026615Z"
|
||||
created: "2026-04-09T09:55:00.125784656Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 5c921b121b2af0bf51e905efc4f7c550ba28e23586d647ed1e81a3193855c4ac
|
||||
@@ -1557,7 +1605,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.667887986Z"
|
||||
created: "2026-04-09T09:55:00.118840162Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: fa0a2037e79a90e75579d5acf7b8529266a2ae36255756115769db52327075d9
|
||||
@@ -1605,7 +1653,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.660760227Z"
|
||||
created: "2026-04-09T09:55:00.109663648Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 9bcd19ab45c0cefe5ede00b0e914a34b06245f858761d7ce586ca309a00f4161
|
||||
@@ -1653,7 +1701,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.654850519Z"
|
||||
created: "2026-04-09T09:55:00.101979295Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 698f8f60438a54a05aa9c6f593198242226e9ffa8f6175effc8d020fff0b7098
|
||||
@@ -1701,7 +1749,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.646028965Z"
|
||||
created: "2026-04-09T09:55:00.09065237Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 4818e69aa28fed61e3610de48e90a9b7bd16022bea0c484c337f32117402b388
|
||||
@@ -1749,7 +1797,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.63964406Z"
|
||||
created: "2026-04-09T09:55:00.083411409Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 8d00b2616d32f94551db3991bed7afe0694ea465207178c8b2f46d00a61d6395
|
||||
@@ -1797,7 +1845,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.581769567Z"
|
||||
created: "2026-04-09T09:55:00.044292038Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 5add702006bef9f8896f57d54f21a8375ce3f846a40fae7376022b6c248bddc6
|
||||
@@ -1845,7 +1893,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.48927304Z"
|
||||
created: "2026-04-09T09:54:59.93750335Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: bfb8e52b5b531c12222f6cb4abecb3350137082f6ce987ab84088da0a139cd4b
|
||||
@@ -1893,7 +1941,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.482821036Z"
|
||||
created: "2026-04-09T09:54:59.929255866Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: b3d228189c04786f753598682108aea5d91f911ddbb852fefcca97044eb09199
|
||||
@@ -1941,7 +1989,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.476132977Z"
|
||||
created: "2026-04-09T09:54:59.9219836Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: dfd4b6ce53f7d22fb2a6641fafd693d341e7c23eb591dc0aa3d101e07ecbefa7
|
||||
@@ -1989,7 +2037,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
created: "2026-04-09T08:37:55.469209251Z"
|
||||
created: "2026-04-09T09:54:59.914897357Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: ef032ff33fb40cbe10ce4e4ce0ac4f96bb02835e1e31bc01ee87ff62320482b9
|
||||
@@ -2037,7 +2085,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: 1.0.0
|
||||
created: "2026-04-09T08:37:55.463382885Z"
|
||||
created: "2026-04-09T09:54:59.907444422Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: c11710fcadc0182ba10713467ec5fb77672caabf1c7daddd95802a7940ce38c1
|
||||
@@ -2085,7 +2133,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: 1.0.0
|
||||
created: "2026-04-09T08:37:55.455420283Z"
|
||||
created: "2026-04-09T09:54:59.900327777Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 5565963e9fa91c8b0c58fdcd4955e4b038b799f713d21fa0521bebe693233920
|
||||
@@ -2133,7 +2181,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: 1.0.0
|
||||
created: "2026-04-09T08:37:55.449899016Z"
|
||||
created: "2026-04-09T09:54:59.892132205Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: c74d5574e24dbe56fb5a1ece6213e2a57e4f4c10a2e65464490479aa335255e8
|
||||
@@ -2181,7 +2229,7 @@ entries:
|
||||
image: redis:7-alpine
|
||||
apiVersion: v2
|
||||
appVersion: 1.0.0
|
||||
created: "2026-04-09T08:37:55.439895245Z"
|
||||
created: "2026-04-09T09:54:59.885712099Z"
|
||||
description: A Helm chart for deploying the Flow workflow engine platform with
|
||||
SOC2/NIS2 compliance support
|
||||
digest: 75fdf3bef90777328b4247d5881224518cd628418003151dd4f9dc4990e2d6ae
|
||||
@@ -2209,4 +2257,4 @@ entries:
|
||||
urls:
|
||||
- https://git.kn.entit.eu/EntitAB/Helm-Charts/raw/branch/main/flow-0.3.1.tgz
|
||||
version: 0.3.1
|
||||
generated: "2026-04-09T08:37:55.278986176Z"
|
||||
generated: "2026-04-09T09:54:59.691904142Z"
|
||||
|
||||
Reference in New Issue
Block a user