Add flow-0.10.86 and update documentation

This commit is contained in:
Gitea Actions
2026-05-13 15:39:13 +00:00
parent 19798022bf
commit 405caa4e69
6 changed files with 255 additions and 129 deletions

View File

@@ -81,7 +81,7 @@ helm install flow entit/flow \
| Parameter | Description | Default | | Parameter | Description | Default |
|-----------|-------------|---------| |-----------|-------------|---------|
| `global.namespace` | Namespace to install all Flow components (uses --namespace if not set) | `""` | | `global.namespace` | Namespace to install all Flow components (uses --namespace if not set) | `""` |
| `global.imageRegistry` | Container registry for all images | `cr.kn.entit.eu` | | `global.imageRegistry` | Container registry for all images | `entit.azurecr.io` |
| `global.imagePullSecrets` | Image pull secrets (list of existing secret names) | `[]` | | `global.imagePullSecrets` | Image pull secrets (list of existing secret names) | `[]` |
| `global.imageCredentials.enabled` | Enable creation of image pull secret from credentials | `false` | | `global.imageCredentials.enabled` | Enable creation of image pull secret from credentials | `false` |
| `global.imageCredentials.username` | Registry username | `""` | | `global.imageCredentials.username` | Registry username | `""` |
@@ -91,13 +91,13 @@ helm install flow entit/flow \
| `global.azureAd.clientId` | Azure AD application client ID | `""` | | `global.azureAd.clientId` | Azure AD application client ID | `""` |
| `global.database.provider` | Database provider (Postgres/SqlServer) | `Postgres` | | `global.database.provider` | Database provider (Postgres/SqlServer) | `Postgres` |
### Harbor Registry Authentication ### Azure Container Registry Authentication
The Flow images are hosted on Harbor at `cr.kn.entit.eu`. Harbor requires authentication to pull images even from public repositories. The Flow images are hosted on Azure Container Registry at `entit.azurecr.io`. ACR requires authentication to pull images even from public repositories.
#### Option 1: Auto-create Secret with Credentials (Recommended) #### Option 1: Auto-create Secret with Credentials (Recommended)
Pass Harbor credentials during installation to automatically create the registry secret: Pass ACR credentials during installation to automatically create the registry secret:
```bash ```bash
helm install flow entit/flow \ helm install flow entit/flow \
@@ -112,7 +112,7 @@ Or in your values file:
```yaml ```yaml
global: global:
imageRegistry: "cr.kn.entit.eu" imageRegistry: "entit.azurecr.io"
imageCredentials: imageCredentials:
enabled: true enabled: true
username: "" # Set via --set flag username: "" # Set via --set flag
@@ -126,7 +126,7 @@ If you prefer to manage the secret separately:
```bash ```bash
# Create the secret first # Create the secret first
kubectl create secret docker-registry flow-registry-credentials \ kubectl create secret docker-registry flow-registry-credentials \
--docker-server=cr.kn.entit.eu \ --docker-server=entit.azurecr.io \
--docker-username=$HARBOR_USER \ --docker-username=$HARBOR_USER \
--docker-password=$HARBOR_PASSWORD \ --docker-password=$HARBOR_PASSWORD \
-n flow -n flow

View File

@@ -10,17 +10,17 @@
# Or use your own deployments/operators. # Or use your own deployments/operators.
# #
# HARBOR CREDENTIALS: # HARBOR CREDENTIALS:
# Pass Harbor credentials during install: # Pass ACR credentials during install:
# helm install flow ./helm/flow -f values-dev.yaml \ # helm install flow ./helm/flow -f values-dev.yaml \
# --set global.imageCredentials.enabled=true \ # --set global.imageCredentials.enabled=true \
# --set global.imageCredentials.username=$HARBOR_USER \ # --set global.imageCredentials.username=$HARBOR_USER \
# --set global.imageCredentials.password=$HARBOR_PASSWORD # --set global.imageCredentials.password=$HARBOR_PASSWORD
global: global:
imageRegistry: "cr.kn.entit.eu" imageRegistry: "entit.azurecr.io"
# Harbor registry credentials - creates dockerconfigjson secret automatically # ACR credentials - creates dockerconfigjson secret automatically
# Harbor requires authentication even for public repositories # ACR requires authentication to pull images
# Enable and set credentials via --set flags during install: # Enable and set credentials via --set flags during install:
# --set global.imageCredentials.enabled=true # --set global.imageCredentials.enabled=true
# --set global.imageCredentials.username=$HARBOR_USER # --set global.imageCredentials.username=$HARBOR_USER
@@ -221,6 +221,12 @@ awsS3Activity:
awsSqsActivity: awsSqsActivity:
enabled: false enabled: false
databaseCdcActivity:
enabled: false
dataStoreActivity:
enabled: false
# External infrastructure - not deployed by this chart # External infrastructure - not deployed by this chart
rabbitmq: rabbitmq:
enabled: false enabled: false

View File

@@ -2,7 +2,7 @@
# Use with: helm install flow ./helm/flow -f ./helm/flow/values-prod.yaml --namespace flow --create-namespace # Use with: helm install flow ./helm/flow -f ./helm/flow/values-prod.yaml --namespace flow --create-namespace
# #
# HARBOR CREDENTIALS: # HARBOR CREDENTIALS:
# Pass Harbor credentials during install: # Pass ACR credentials during install:
# helm install flow ./helm/flow -f values-prod.yaml \ # helm install flow ./helm/flow -f values-prod.yaml \
# --set global.imageCredentials.enabled=true \ # --set global.imageCredentials.enabled=true \
# --set global.imageCredentials.username=$HARBOR_USER \ # --set global.imageCredentials.username=$HARBOR_USER \
@@ -16,10 +16,10 @@ global:
# All resources will be created in this namespace for easy management and cleanup # All resources will be created in this namespace for easy management and cleanup
namespace: "flow" namespace: "flow"
imageRegistry: "cr.kn.entit.eu" imageRegistry: "entit.azurecr.io"
# Harbor registry credentials - creates dockerconfigjson secret automatically # ACR credentials - creates dockerconfigjson secret automatically
# Harbor requires authentication even for public repositories # ACR requires authentication to pull images
# Enable and set credentials via --set flags during install: # Enable and set credentials via --set flags during install:
# --set global.imageCredentials.enabled=true # --set global.imageCredentials.enabled=true
# --set global.imageCredentials.username=$HARBOR_USER # --set global.imageCredentials.username=$HARBOR_USER
@@ -525,6 +525,14 @@ m365Activity:
enabled: true enabled: true
replicaCount: 1 replicaCount: 1
databaseCdcActivity:
enabled: true
replicaCount: 1
dataStoreActivity:
enabled: true
replicaCount: 1
# ============================================================================= # =============================================================================
# Infrastructure - Disabled (using external managed services) # Infrastructure - Disabled (using external managed services)
# ============================================================================= # =============================================================================

View File

@@ -9,7 +9,7 @@ global:
namespace: "" namespace: ""
# -- Image registry for all Flow services # -- Image registry for all Flow services
imageRegistry: "cr.kn.entit.eu" imageRegistry: "entit.azurecr.io"
# -- Image pull secrets (list of existing secret names) # -- Image pull secrets (list of existing secret names)
imagePullSecrets: [] imagePullSecrets: []
@@ -25,9 +25,9 @@ global:
# Individual services can override this with their own image.pullPolicy # Individual services can override this with their own image.pullPolicy
pullPolicy: "IfNotPresent" pullPolicy: "IfNotPresent"
# -- Image registry credentials for private registries (e.g., Harbor) # -- Image registry credentials for private registries (e.g., ACR)
# When enabled, creates a dockerconfigjson secret for pulling images # When enabled, creates a dockerconfigjson secret for pulling images
# This is required for Harbor even for public repositories # This is required for ACR even for public repositories
imageCredentials: imageCredentials:
# -- Enable creation of image pull secret from credentials # -- Enable creation of image pull secret from credentials
enabled: false enabled: false
@@ -371,6 +371,7 @@ global:
aiAssistant: "http://{{ .Release.Name }}-ai-assistant.{{ .Release.Namespace }}.svc.cluster.local:80" aiAssistant: "http://{{ .Release.Name }}-ai-assistant.{{ .Release.Namespace }}.svc.cluster.local:80"
mcpServer: "http://{{ .Release.Name }}-mcp-server.{{ .Release.Namespace }}.svc.cluster.local:80" mcpServer: "http://{{ .Release.Name }}-mcp-server.{{ .Release.Namespace }}.svc.cluster.local:80"
configurationStore: "http://{{ .Release.Name }}-configuration-store.{{ .Release.Namespace }}.svc.cluster.local:80" configurationStore: "http://{{ .Release.Name }}-configuration-store.{{ .Release.Namespace }}.svc.cluster.local:80"
dataStore: "http://{{ .Release.Name }}-data-store.{{ .Release.Namespace }}.svc.cluster.local:80"
auditLog: "http://{{ .Release.Name }}-audit-log.{{ .Release.Namespace }}.svc.cluster.local:80" auditLog: "http://{{ .Release.Name }}-audit-log.{{ .Release.Namespace }}.svc.cluster.local:80"
templateStore: "http://{{ .Release.Name }}-template-store.{{ .Release.Namespace }}.svc.cluster.local:80" templateStore: "http://{{ .Release.Name }}-template-store.{{ .Release.Namespace }}.svc.cluster.local:80"
gitSync: "http://{{ .Release.Name }}-git-sync.{{ .Release.Namespace }}.svc.cluster.local:80" gitSync: "http://{{ .Release.Name }}-git-sync.{{ .Release.Namespace }}.svc.cluster.local:80"
@@ -986,6 +987,46 @@ configurationStore:
extraVolumeMounts: [] extraVolumeMounts: []
extraVolumes: [] extraVolumes: []
# -- Data Store service configuration (cross-workflow key-value store)
dataStore:
enabled: true
replicaCount: 1
image:
repository: flow/datastore
tag: ""
pullPolicy: IfNotPresent
service:
type: ClusterIP
port: 80
resources:
limits:
cpu: 500m
memory: 512Mi
requests:
cpu: 100m
memory: 256Mi
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 10
targetCPUUtilizationPercentage: 75
nodeSelector: {}
tolerations: []
affinity: {}
podDisruptionBudget:
enabled: false
maxUnavailable: 1
extraEnv: []
extraVolumeMounts: []
extraVolumes: []
# -- Template Store service configuration # -- Template Store service configuration
templateStore: templateStore:
enabled: true enabled: true
@@ -1589,6 +1630,21 @@ azureDevOpsActivity:
repository: flow/azuredevopsactivity repository: flow/azuredevopsactivity
tag: "" tag: ""
databaseCdcActivity:
enabled: true
replicaCount: 1
image:
repository: flow/databasecdcactivity
tag: ""
# -- Data Store Activity (cross-workflow key-value store)
dataStoreActivity:
enabled: true
replicaCount: 1
image:
repository: flow/datastoreactivity
tag: ""
# -- Container Activity Host # -- Container Activity Host
# Runs Docker containers as workflow activities (Python, Node, Go, etc.) # Runs Docker containers as workflow activities (Python, Node, Go, etc.)
containerActivity: containerActivity:
@@ -2232,6 +2288,10 @@ redis:
# -- Pod security context # -- Pod security context
podSecurityContext: podSecurityContext:
fsGroup: 1000 fsGroup: 1000
runAsNonRoot: true
runAsUser: 1000
seccompProfile:
type: RuntimeDefault
# -- Container security context # -- Container security context
securityContext: securityContext:
@@ -2242,6 +2302,8 @@ securityContext:
drop: drop:
- ALL - ALL
readOnlyRootFilesystem: true readOnlyRootFilesystem: true
seccompProfile:
type: RuntimeDefault
# -- Service account configuration # -- Service account configuration
serviceAccount: serviceAccount:
@@ -2735,6 +2797,8 @@ tls:
additionalDnsNames: [] additionalDnsNames: []
templateStore: templateStore:
additionalDnsNames: [] additionalDnsNames: []
dataStore:
additionalDnsNames: []
# ============================================================================= # =============================================================================
# Monitoring (Prometheus Operator + Grafana) # Monitoring (Prometheus Operator + Grafana)

BIN
flow-0.10.86.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-05-06T14:19:02.734710384Z" created: "2026-05-13T15:39:12.523425302Z"
description: A Helm chart for deploying the Flow workflow engine platform with
SOC2/NIS2 compliance support
digest: ea6e4c4d90b9b4d4327c16bd7aff02680d0864738d4b2a35d2fddf673fb28b5f
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.86.tgz
version: 0.10.86
- 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-05-13T15:39:12.509943085Z"
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: ad3773c7057058394fd679fc03b39255b52d3f37826adf476b9f6d1f9f9ef2bf digest: ad3773c7057058394fd679fc03b39255b52d3f37826adf476b9f6d1f9f9ef2bf
@@ -69,7 +117,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.721727246Z" created: "2026-05-13T15:39:12.49720494Z"
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: 1be9f6a8943373b8cc41791251a006f47aab5ceb4d278e0a7750cd677e876a5a digest: 1be9f6a8943373b8cc41791251a006f47aab5ceb4d278e0a7750cd677e876a5a
@@ -117,7 +165,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.708280827Z" created: "2026-05-13T15:39:12.485379514Z"
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: 65c2561f4cd6a9a41c0e571e19fe4ca6453a6f14a5eba5d3394d16267aaf5db6 digest: 65c2561f4cd6a9a41c0e571e19fe4ca6453a6f14a5eba5d3394d16267aaf5db6
@@ -165,7 +213,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.696079575Z" created: "2026-05-13T15:39:12.473928965Z"
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: 12fa8c5d7ad855ec6e360c8e6479b9b98b6f8e6b29d5e9313b369a41748c6b96 digest: 12fa8c5d7ad855ec6e360c8e6479b9b98b6f8e6b29d5e9313b369a41748c6b96
@@ -213,7 +261,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.684052711Z" created: "2026-05-13T15:39:12.462602136Z"
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: 09a5053da330bd4df2a68322db7dc251f9ca34f4ca7cf79337c15dacc2ff064e digest: 09a5053da330bd4df2a68322db7dc251f9ca34f4ca7cf79337c15dacc2ff064e
@@ -261,7 +309,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.67196704Z" created: "2026-05-13T15:39:12.451217059Z"
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: c2fecbc8d6ea49b71d2fd00ea7d58db7c343402df7b9692c1dbf4bcf9edc9d43 digest: c2fecbc8d6ea49b71d2fd00ea7d58db7c343402df7b9692c1dbf4bcf9edc9d43
@@ -309,7 +357,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.651885256Z" created: "2026-05-13T15:39:12.432537236Z"
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: ce6bfc0f3e1a22b1e6abd60ee03c5c9ea66470006e46ac8d7581449d30c30fcb digest: ce6bfc0f3e1a22b1e6abd60ee03c5c9ea66470006e46ac8d7581449d30c30fcb
@@ -357,7 +405,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.638164851Z" created: "2026-05-13T15:39:12.421741874Z"
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: 8ffec233c497850b94f974fd8fd7abe75996a2b187c41a72d1a30b74a154b08d digest: 8ffec233c497850b94f974fd8fd7abe75996a2b187c41a72d1a30b74a154b08d
@@ -405,7 +453,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.625543032Z" created: "2026-05-13T15:39:12.409763538Z"
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: b5e1fca5cb70fc72eec432cb085be1fa57a1709523c1536eafe7f791cd11efdd digest: b5e1fca5cb70fc72eec432cb085be1fa57a1709523c1536eafe7f791cd11efdd
@@ -453,7 +501,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.614385181Z" created: "2026-05-13T15:39:12.398718521Z"
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: c67f851db8323a238827c447af97a84232383028b2c5f7a06e04c750f02d4b31 digest: c67f851db8323a238827c447af97a84232383028b2c5f7a06e04c750f02d4b31
@@ -501,7 +549,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.603070234Z" created: "2026-05-13T15:39:12.38798138Z"
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: 5a8f01b5e2b54a92c275961fb3781d7037c37a9177740cd84c3694656e7321f7 digest: 5a8f01b5e2b54a92c275961fb3781d7037c37a9177740cd84c3694656e7321f7
@@ -549,7 +597,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.592220251Z" created: "2026-05-13T15:39:12.376478625Z"
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: 7625d6f613df13ab039eeb65b701d2cf50a847e87ee46705a10c571456834c4e digest: 7625d6f613df13ab039eeb65b701d2cf50a847e87ee46705a10c571456834c4e
@@ -597,7 +645,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.580174969Z" created: "2026-05-13T15:39:12.366092941Z"
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: b70a60965c9f0ea75691260737a924a37fa22469c25ac9287ffb04942dee703c digest: b70a60965c9f0ea75691260737a924a37fa22469c25ac9287ffb04942dee703c
@@ -645,7 +693,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.568302865Z" created: "2026-05-13T15:39:12.355382092Z"
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: 40f9439e9ea430fd617bc6638d8f9c372ecfb7a017b6fb58455ae518f734d152 digest: 40f9439e9ea430fd617bc6638d8f9c372ecfb7a017b6fb58455ae518f734d152
@@ -693,7 +741,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.55650125Z" created: "2026-05-13T15:39:12.343593541Z"
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: abff1acaca01e202486fab43b756ea913a629a13c47b47ba099c67c66ae2f4ee digest: abff1acaca01e202486fab43b756ea913a629a13c47b47ba099c67c66ae2f4ee
@@ -741,7 +789,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.54510262Z" created: "2026-05-13T15:39:12.33176877Z"
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: 93df1472d88da234c43476bb41d28b8c02129443f541c9fc5147bd9ceda9d880 digest: 93df1472d88da234c43476bb41d28b8c02129443f541c9fc5147bd9ceda9d880
@@ -789,7 +837,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.525833898Z" created: "2026-05-13T15:39:12.310986398Z"
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: 5557b8bbf65417e0fbb15d0e922757afa1fbb31c54edf5d6674cda5daafc7163 digest: 5557b8bbf65417e0fbb15d0e922757afa1fbb31c54edf5d6674cda5daafc7163
@@ -837,7 +885,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.513848946Z" created: "2026-05-13T15:39:12.299734724Z"
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: c52c2d1df98241a216446f62116844b444c6e1c6590fb4c2f4b48060e6aba690 digest: c52c2d1df98241a216446f62116844b444c6e1c6590fb4c2f4b48060e6aba690
@@ -885,7 +933,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.501599349Z" created: "2026-05-13T15:39:12.289258522Z"
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: afd5f1a75a89d24db58562101bcc0f733638968ebfb17717fc4d02e3caf4ab7e digest: afd5f1a75a89d24db58562101bcc0f733638968ebfb17717fc4d02e3caf4ab7e
@@ -933,7 +981,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.489758108Z" created: "2026-05-13T15:39:12.278156293Z"
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: 0756b4dc6ce3643d6e3e80e041364c965de5acd5a9f925b7e01e0a22fc8bd781 digest: 0756b4dc6ce3643d6e3e80e041364c965de5acd5a9f925b7e01e0a22fc8bd781
@@ -981,7 +1029,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.478827592Z" created: "2026-05-13T15:39:12.268179254Z"
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: 1726d02c9ec32f56df4384fb94871886a87733a34d723119cba7b21492341817 digest: 1726d02c9ec32f56df4384fb94871886a87733a34d723119cba7b21492341817
@@ -1029,7 +1077,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.467077907Z" created: "2026-05-13T15:39:12.257622402Z"
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: 208af49640ce46f8d8538aa133a705ad53e98ab91218dfced2b6fb5a5bfbd0b4 digest: 208af49640ce46f8d8538aa133a705ad53e98ab91218dfced2b6fb5a5bfbd0b4
@@ -1077,7 +1125,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.454837071Z" created: "2026-05-13T15:39:12.246708528Z"
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: d336d174e49bc5122101e4b8e678582b045d9fa157da52dee420823dea8e9cf2 digest: d336d174e49bc5122101e4b8e678582b045d9fa157da52dee420823dea8e9cf2
@@ -1125,7 +1173,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.444076087Z" created: "2026-05-13T15:39:12.236839967Z"
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: a54703c8ad9f94e8d674d39db1781335ab5d3780d7e3bfe416f70fb7c4c97cc6 digest: a54703c8ad9f94e8d674d39db1781335ab5d3780d7e3bfe416f70fb7c4c97cc6
@@ -1173,7 +1221,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.434251315Z" created: "2026-05-13T15:39:12.227001559Z"
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: 531742bab1f81b0ac90540a7c86d0f40d4626e8e59bc1488ec2337daafbcc40a digest: 531742bab1f81b0ac90540a7c86d0f40d4626e8e59bc1488ec2337daafbcc40a
@@ -1221,7 +1269,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.413338397Z" created: "2026-05-13T15:39:12.207033998Z"
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: 4cd100b5b81df4092b7c5417234c07d85dba97d399e63a7d0fb68e4e83e125d5 digest: 4cd100b5b81df4092b7c5417234c07d85dba97d399e63a7d0fb68e4e83e125d5
@@ -1269,7 +1317,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.402354715Z" created: "2026-05-13T15:39:12.196589915Z"
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: a345e6d0b852b52271e1e19b971bce2c19d24cdc08aa6d13195b024027dc64aa digest: a345e6d0b852b52271e1e19b971bce2c19d24cdc08aa6d13195b024027dc64aa
@@ -1317,7 +1365,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.390559668Z" created: "2026-05-13T15:39:12.185635585Z"
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: 21618e603c772223a9dcf3006849a9f2f3c048efb98a3ac4e6367a4a3c30c659 digest: 21618e603c772223a9dcf3006849a9f2f3c048efb98a3ac4e6367a4a3c30c659
@@ -1365,7 +1413,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.381348249Z" created: "2026-05-13T15:39:12.176278728Z"
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: e26b4009fb428dc6f26161a4e44f58812855ed0413212437d0eaec5eb68d2548 digest: e26b4009fb428dc6f26161a4e44f58812855ed0413212437d0eaec5eb68d2548
@@ -1413,7 +1461,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.370369189Z" created: "2026-05-13T15:39:12.166085294Z"
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: 8a4f25b91bfa11b1435cf84f71a29f243d668b257f8eff1c79382ab3004a43b6 digest: 8a4f25b91bfa11b1435cf84f71a29f243d668b257f8eff1c79382ab3004a43b6
@@ -1461,7 +1509,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.359781026Z" created: "2026-05-13T15:39:12.156063914Z"
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: 9775e6f86de15f45ebb79e43dac24b808f18812109405f4710ff9cc3b9f6e914 digest: 9775e6f86de15f45ebb79e43dac24b808f18812109405f4710ff9cc3b9f6e914
@@ -1509,7 +1557,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.344260465Z" created: "2026-05-13T15:39:12.146105729Z"
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: 59d19b0d1293d19485614b80b2a60adf479c2cfef26cf222e45879c0ffb69370 digest: 59d19b0d1293d19485614b80b2a60adf479c2cfef26cf222e45879c0ffb69370
@@ -1557,7 +1605,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.334711645Z" created: "2026-05-13T15:39:12.135234335Z"
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: 670612d5f2ef3362e57447894ce7ab65638d597b0bdd079af94f35ea0e4632db digest: 670612d5f2ef3362e57447894ce7ab65638d597b0bdd079af94f35ea0e4632db
@@ -1605,7 +1653,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.323353496Z" created: "2026-05-13T15:39:12.126167203Z"
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: 92f52993ee2a1e5370c6790016cf8de19eff531dafdf17b12f45f955069d00a5 digest: 92f52993ee2a1e5370c6790016cf8de19eff531dafdf17b12f45f955069d00a5
@@ -1653,7 +1701,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.311988169Z" created: "2026-05-13T15:39:12.115491294Z"
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: cb0e6e9a202c0f72fe538d4bcc270666253f37a4c893cf6086cf4517c066b4cb digest: cb0e6e9a202c0f72fe538d4bcc270666253f37a4c893cf6086cf4517c066b4cb
@@ -1701,7 +1749,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.292404407Z" created: "2026-05-13T15:39:12.097394576Z"
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: 2fe7c77172f96dca2918289715e2b893b1ff48a00bac6d4c42a21ed885de857c digest: 2fe7c77172f96dca2918289715e2b893b1ff48a00bac6d4c42a21ed885de857c
@@ -1749,7 +1797,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.279177583Z" created: "2026-05-13T15:39:12.088577147Z"
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: ccab33cc600e213e2c53e3e0ed655458124ad07c374bcaf45494a209a1be3062 digest: ccab33cc600e213e2c53e3e0ed655458124ad07c374bcaf45494a209a1be3062
@@ -1797,7 +1845,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.268886711Z" created: "2026-05-13T15:39:12.07785307Z"
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: b74a18a8159cbacbb428ca248ae144119b20a6c150c784f6936cc913469319c0 digest: b74a18a8159cbacbb428ca248ae144119b20a6c150c784f6936cc913469319c0
@@ -1845,7 +1893,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.25877103Z" created: "2026-05-13T15:39:12.067149838Z"
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: 9dea1e70895455e21efd64587131913cb139ad55e221660d439b0e94abae14af digest: 9dea1e70895455e21efd64587131913cb139ad55e221660d439b0e94abae14af
@@ -1893,7 +1941,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.248044304Z" created: "2026-05-13T15:39:12.058126756Z"
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: e61fa00a67adf14306909beec134bdbe82d46d859c84ef28d5eb9ac4570eba14 digest: e61fa00a67adf14306909beec134bdbe82d46d859c84ef28d5eb9ac4570eba14
@@ -1941,7 +1989,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.237356676Z" created: "2026-05-13T15:39:12.0486973Z"
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: ba4a7c3f5c8e4735adf780722cadf8c3b574d991fab862af1ecdf563ac9e8806 digest: ba4a7c3f5c8e4735adf780722cadf8c3b574d991fab862af1ecdf563ac9e8806
@@ -1989,7 +2037,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.226331051Z" created: "2026-05-13T15:39:12.038741061Z"
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: 95c0b3546f3d26820493b3e24656965b8dc5abcb7580c1ccf43f0240aa58dcac digest: 95c0b3546f3d26820493b3e24656965b8dc5abcb7580c1ccf43f0240aa58dcac
@@ -2037,7 +2085,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.216217198Z" created: "2026-05-13T15:39:12.028265195Z"
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: 34250fa073fa1654442e1d4a39035620234fee494f4761ac8322f0f8b1fb3e7a digest: 34250fa073fa1654442e1d4a39035620234fee494f4761ac8322f0f8b1fb3e7a
@@ -2085,7 +2133,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.197078313Z" created: "2026-05-13T15:39:12.010275176Z"
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: 9656a6644bde851b2809a60d1319ffa3d346020d4bc4cb8cae53e5c62271b8d8 digest: 9656a6644bde851b2809a60d1319ffa3d346020d4bc4cb8cae53e5c62271b8d8
@@ -2133,7 +2181,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.187902545Z" created: "2026-05-13T15:39:11.998563302Z"
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: 820f62a98c8d98a40edefba2572887948e2e0ffe6ba99a42f838af3ed14dcc2b digest: 820f62a98c8d98a40edefba2572887948e2e0ffe6ba99a42f838af3ed14dcc2b
@@ -2181,7 +2229,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.177575947Z" created: "2026-05-13T15:39:11.987243669Z"
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: eee3b12920fc0f35cfc814bc5bcf0706d4679e9804bee55199d501c37fee70c8 digest: eee3b12920fc0f35cfc814bc5bcf0706d4679e9804bee55199d501c37fee70c8
@@ -2229,7 +2277,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.166375247Z" created: "2026-05-13T15:39:11.975842878Z"
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: a23c6261ae8cd193aebdb72df9d35a083be26a7a33088be2470d672229f80d42 digest: a23c6261ae8cd193aebdb72df9d35a083be26a7a33088be2470d672229f80d42
@@ -2277,7 +2325,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.156315892Z" created: "2026-05-13T15:39:11.966832763Z"
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: 22afc31c31d35c2e4c36c712962671a2ccc54709cb2060abf6a89d55ff361f72 digest: 22afc31c31d35c2e4c36c712962671a2ccc54709cb2060abf6a89d55ff361f72
@@ -2325,7 +2373,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.147298667Z" created: "2026-05-13T15:39:11.956892996Z"
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: c980916bd5dbcbf65863d8b57ce21cc778f08d801cc1918d7224f841cea86da8 digest: c980916bd5dbcbf65863d8b57ce21cc778f08d801cc1918d7224f841cea86da8
@@ -2373,7 +2421,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.136814177Z" created: "2026-05-13T15:39:11.947068689Z"
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: b93c8da506317e6bee1a8e19f46ce01ab5a0b3aada7710e2ff6b8f61d6350d5d digest: b93c8da506317e6bee1a8e19f46ce01ab5a0b3aada7710e2ff6b8f61d6350d5d
@@ -2421,7 +2469,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.126550724Z" created: "2026-05-13T15:39:11.937550985Z"
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: ff5e6235b25fe7242f63d8afd78f627c60e3d1bb69592dbddce6eee9a45f3e50 digest: ff5e6235b25fe7242f63d8afd78f627c60e3d1bb69592dbddce6eee9a45f3e50
@@ -2469,7 +2517,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.116260457Z" created: "2026-05-13T15:39:11.92883349Z"
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: 4b8954825559e70fbc28293328b241ed2e2910f0f20d7755ecce95d82c4eece0 digest: 4b8954825559e70fbc28293328b241ed2e2910f0f20d7755ecce95d82c4eece0
@@ -2517,7 +2565,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.098275068Z" created: "2026-05-13T15:39:11.908472126Z"
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: a7de5cf5469e4db81a2731a81202b54610a96c76f64f43a746f0766954a4ce1d digest: a7de5cf5469e4db81a2731a81202b54610a96c76f64f43a746f0766954a4ce1d
@@ -2565,7 +2613,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.089319375Z" created: "2026-05-13T15:39:11.897894802Z"
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: c6f2ecbcbbafc13c8c273cff83ad46ae24bb970dbffc796251177b0fa44f6ece digest: c6f2ecbcbbafc13c8c273cff83ad46ae24bb970dbffc796251177b0fa44f6ece
@@ -2613,7 +2661,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.079094429Z" created: "2026-05-13T15:39:11.8880514Z"
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: 826a32fd887c0b521fabe04e76a34b52c1835ebc63e143f4cbbcf44b5f9699ec digest: 826a32fd887c0b521fabe04e76a34b52c1835ebc63e143f4cbbcf44b5f9699ec
@@ -2661,7 +2709,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.068986349Z" created: "2026-05-13T15:39:11.874696553Z"
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: 94008828da57208105a9f750647f5924f8fd65ffe1add151207bf6e3b1e15f66 digest: 94008828da57208105a9f750647f5924f8fd65ffe1add151207bf6e3b1e15f66
@@ -2709,7 +2757,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.058361121Z" created: "2026-05-13T15:39:11.864521136Z"
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: 3e2699c2b2baa16b850be2f3dcbed466a0eb7afba0383054e64bce42f41db398 digest: 3e2699c2b2baa16b850be2f3dcbed466a0eb7afba0383054e64bce42f41db398
@@ -2757,7 +2805,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.047295032Z" created: "2026-05-13T15:39:11.854560782Z"
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: 9a76c1bbb91e31667f1b48afee162fc2ed6a48e304e60d692d9e72f6f3677900 digest: 9a76c1bbb91e31667f1b48afee162fc2ed6a48e304e60d692d9e72f6f3677900
@@ -2805,7 +2853,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.036501895Z" created: "2026-05-13T15:39:11.845887929Z"
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: c85f1810198f7e0e4de892da935ff76dff61dfd32f031f369086a2cc202ab70d digest: c85f1810198f7e0e4de892da935ff76dff61dfd32f031f369086a2cc202ab70d
@@ -2853,7 +2901,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.025492548Z" created: "2026-05-13T15:39:11.836059186Z"
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: 9429ecd201b60bddb58d719f82a81690f10fdfe8ca8ecd545206dbee8d46a09e digest: 9429ecd201b60bddb58d719f82a81690f10fdfe8ca8ecd545206dbee8d46a09e
@@ -2901,7 +2949,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.014535025Z" created: "2026-05-13T15:39:11.826171837Z"
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: 1bf97c1652740195f1256f9be898824c06632eee587e91fdb2db3161bdec3da5 digest: 1bf97c1652740195f1256f9be898824c06632eee587e91fdb2db3161bdec3da5
@@ -2949,7 +2997,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.005132954Z" created: "2026-05-13T15:39:11.815870967Z"
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: 07a2441b1be707bbf9de214e3eb76d11fc88e214c94ade70e7ede86cd0561323 digest: 07a2441b1be707bbf9de214e3eb76d11fc88e214c94ade70e7ede86cd0561323
@@ -2997,7 +3045,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:01.980837521Z" created: "2026-05-13T15:39:11.79844461Z"
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: f0a67e64059ea6968969fbb4812cf4502db581feb22123cc20c719862c5c585e digest: f0a67e64059ea6968969fbb4812cf4502db581feb22123cc20c719862c5c585e
@@ -3045,7 +3093,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:01.969318449Z" created: "2026-05-13T15:39:11.788608474Z"
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: 4dddb89d9d25037600528790e925c4cd33701501279d03658bce937c17242282 digest: 4dddb89d9d25037600528790e925c4cd33701501279d03658bce937c17242282
@@ -3093,7 +3141,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:01.95556188Z" created: "2026-05-13T15:39:11.779591792Z"
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
@@ -3141,7 +3189,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:01.94425709Z" created: "2026-05-13T15:39:11.769935518Z"
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
@@ -3189,7 +3237,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:01.935805697Z" created: "2026-05-13T15:39:11.759436393Z"
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
@@ -3237,7 +3285,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:01.924814319Z" created: "2026-05-13T15:39:11.747370966Z"
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
@@ -3285,7 +3333,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:01.913377295Z" created: "2026-05-13T15:39:11.738566519Z"
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
@@ -3333,7 +3381,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:01.904958824Z" created: "2026-05-13T15:39:11.728869754Z"
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
@@ -3381,7 +3429,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:01.894526331Z" created: "2026-05-13T15:39:11.719502573Z"
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
@@ -3429,7 +3477,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:01.885091451Z" created: "2026-05-13T15:39:11.710494621Z"
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
@@ -3477,7 +3525,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.74310153Z" created: "2026-05-13T15:39:12.531974305Z"
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
@@ -3525,7 +3573,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.660438279Z" created: "2026-05-13T15:39:12.440520418Z"
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
@@ -3573,7 +3621,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.533858368Z" created: "2026-05-13T15:39:12.319592203Z"
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
@@ -3621,7 +3669,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.421761546Z" created: "2026-05-13T15:39:12.216118548Z"
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
@@ -3669,7 +3717,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.301152179Z" created: "2026-05-13T15:39:12.105115643Z"
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
@@ -3717,7 +3765,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.20547221Z" created: "2026-05-13T15:39:12.017485068Z"
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
@@ -3765,7 +3813,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.106428771Z" created: "2026-05-13T15:39:11.918450668Z"
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
@@ -3813,7 +3861,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:01.99238138Z" created: "2026-05-13T15:39:11.807112109Z"
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
@@ -3861,7 +3909,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:01.875751742Z" created: "2026-05-13T15:39:11.701538088Z"
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
@@ -3909,7 +3957,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:03.002025951Z" created: "2026-05-13T15:39:12.745597801Z"
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
@@ -3957,7 +4005,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.926507795Z" created: "2026-05-13T15:39:12.690011197Z"
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
@@ -4005,7 +4053,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.914850643Z" created: "2026-05-13T15:39:12.683364691Z"
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
@@ -4053,7 +4101,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.905173186Z" created: "2026-05-13T15:39:12.673818205Z"
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
@@ -4101,7 +4149,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.884448667Z" created: "2026-05-13T15:39:12.658464974Z"
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
@@ -4149,7 +4197,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.877583853Z" created: "2026-05-13T15:39:12.651970928Z"
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
@@ -4197,7 +4245,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.866680639Z" created: "2026-05-13T15:39:12.644143842Z"
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
@@ -4245,7 +4293,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.859642571Z" created: "2026-05-13T15:39:12.637226906Z"
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
@@ -4293,7 +4341,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.851165615Z" created: "2026-05-13T15:39:12.629698869Z"
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
@@ -4341,7 +4389,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.841928418Z" created: "2026-05-13T15:39:12.622617188Z"
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
@@ -4389,7 +4437,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.833702312Z" created: "2026-05-13T15:39:12.615477687Z"
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
@@ -4437,7 +4485,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.82731602Z" created: "2026-05-13T15:39:12.607442291Z"
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
@@ -4485,7 +4533,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.819306143Z" created: "2026-05-13T15:39:12.600844664Z"
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
@@ -4533,7 +4581,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.812446136Z" created: "2026-05-13T15:39:12.592962695Z"
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
@@ -4581,7 +4629,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.99196905Z" created: "2026-05-13T15:39:12.739050567Z"
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
@@ -4629,7 +4677,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.980239925Z" created: "2026-05-13T15:39:12.732185179Z"
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
@@ -4677,7 +4725,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.972872007Z" created: "2026-05-13T15:39:12.725594527Z"
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
@@ -4725,7 +4773,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.965620224Z" created: "2026-05-13T15:39:12.717818438Z"
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
@@ -4773,7 +4821,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.95503515Z" created: "2026-05-13T15:39:12.711543938Z"
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
@@ -4821,7 +4869,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.943509601Z" created: "2026-05-13T15:39:12.704227281Z"
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
@@ -4869,7 +4917,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.936677473Z" created: "2026-05-13T15:39:12.697878379Z"
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
@@ -4917,7 +4965,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.893740583Z" created: "2026-05-13T15:39:12.666366853Z"
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
@@ -4965,7 +5013,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.804113253Z" created: "2026-05-13T15:39:12.585385217Z"
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
@@ -5013,7 +5061,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.797180559Z" created: "2026-05-13T15:39:12.578769687Z"
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
@@ -5061,7 +5109,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.787433322Z" created: "2026-05-13T15:39:12.571997384Z"
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
@@ -5109,7 +5157,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: latest appVersion: latest
created: "2026-05-06T14:19:02.781326491Z" created: "2026-05-13T15:39:12.565773644Z"
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
@@ -5157,7 +5205,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: 1.0.0 appVersion: 1.0.0
created: "2026-05-06T14:19:02.772971304Z" created: "2026-05-13T15:39:12.558003302Z"
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
@@ -5205,7 +5253,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: 1.0.0 appVersion: 1.0.0
created: "2026-05-06T14:19:02.765991123Z" created: "2026-05-13T15:39:12.551646693Z"
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
@@ -5253,7 +5301,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: 1.0.0 appVersion: 1.0.0
created: "2026-05-06T14:19:02.757909088Z" created: "2026-05-13T15:39:12.544467711Z"
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
@@ -5301,7 +5349,7 @@ entries:
image: redis:7-alpine image: redis:7-alpine
apiVersion: v2 apiVersion: v2
appVersion: 1.0.0 appVersion: 1.0.0
created: "2026-05-06T14:19:02.751573261Z" created: "2026-05-13T15:39:12.538425411Z"
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
@@ -5329,4 +5377,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-05-06T14:19:01.868004811Z" generated: "2026-05-13T15:39:11.693583315Z"