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 |
|-----------|-------------|---------|
| `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.imageCredentials.enabled` | Enable creation of image pull secret from credentials | `false` |
| `global.imageCredentials.username` | Registry username | `""` |
@@ -91,13 +91,13 @@ helm install flow entit/flow \
| `global.azureAd.clientId` | Azure AD application client ID | `""` |
| `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)
Pass Harbor credentials during installation to automatically create the registry secret:
Pass ACR credentials during installation to automatically create the registry secret:
```bash
helm install flow entit/flow \
@@ -112,7 +112,7 @@ Or in your values file:
```yaml
global:
imageRegistry: "cr.kn.entit.eu"
imageRegistry: "entit.azurecr.io"
imageCredentials:
enabled: true
username: "" # Set via --set flag
@@ -126,7 +126,7 @@ If you prefer to manage the secret separately:
```bash
# Create the secret first
kubectl create secret docker-registry flow-registry-credentials \
--docker-server=cr.kn.entit.eu \
--docker-server=entit.azurecr.io \
--docker-username=$HARBOR_USER \
--docker-password=$HARBOR_PASSWORD \
-n flow