Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz Source: /opt/alga-psa on psa.joliet.tech
157 lines
3.4 KiB
YAML
157 lines
3.4 KiB
YAML
# Default values for workflow-worker.
|
|
# This is a YAML-formatted file.
|
|
# Declare variables to be passed into your templates.
|
|
|
|
# Enable/disable the workflow worker deployment
|
|
enabled: true
|
|
|
|
# Image configuration
|
|
image:
|
|
# Generic default; override in your env-specific values
|
|
repository: workflow-worker
|
|
tag: latest
|
|
pullPolicy: IfNotPresent
|
|
# Optional private registry settings; override per environment
|
|
is_private: false
|
|
credentials: ""
|
|
|
|
# Number of replicas
|
|
replicaCount: 1
|
|
|
|
# Rolling update configuration
|
|
rollingUpdate:
|
|
maxSurge: 1
|
|
maxUnavailable: 0
|
|
|
|
# Service configuration (used for health/metrics only)
|
|
service:
|
|
type: ClusterIP
|
|
port: 4000
|
|
|
|
# Logging configuration
|
|
logLevel: info
|
|
|
|
# Worker configuration
|
|
workflow:
|
|
distributedMode: true
|
|
redis:
|
|
# Generic cluster-local Redis service (override as needed)
|
|
host: "redis.default.svc.cluster.local"
|
|
port: "6379"
|
|
passwordSecret:
|
|
# Normalized to match root chart's redis secret
|
|
# Default matches internal Redis secret created by root chart
|
|
name: "redis-credentials"
|
|
key: "REDIS_PASSWORD"
|
|
streamPrefix: "workflow:events:"
|
|
consumerGroup: "workflow-workers"
|
|
batchSize: 10
|
|
idleTimeoutMs: 60000
|
|
pollIntervalMs: 300000
|
|
concurrencyLimit: 5
|
|
maxRetries: 3
|
|
healthCheckIntervalMs: 30000
|
|
metricsReportingIntervalMs: 60000
|
|
|
|
# Database configuration
|
|
db:
|
|
# Database type and connection details
|
|
type: postgres
|
|
# Generic cluster-local PgBouncer/Postgres service (override as needed)
|
|
host: "pgbouncer.default.svc.cluster.local"
|
|
port: "6432"
|
|
serverDatabase: "server"
|
|
user: "app_user_pgbouncer"
|
|
serverPasswordSecret:
|
|
name: "db-secrets"
|
|
key: "pgbouncer-password"
|
|
# Optional admin user and secret (rendered only if provided)
|
|
adminUser: "postgres"
|
|
adminPasswordSecret:
|
|
name: ""
|
|
key: ""
|
|
|
|
# Application configuration
|
|
applicationUrl: "https://algapsa.com"
|
|
|
|
# Secrets (used when Vault is disabled)
|
|
secrets:
|
|
nextauthSecret: "change-me-in-prod"
|
|
tokenSecretKey: "change-me-in-prod"
|
|
cryptoKey: "change-me-in-prod"
|
|
|
|
# Vault configuration for secret management (optional)
|
|
vault:
|
|
enabled: false
|
|
role: workflow-worker
|
|
secretPath: secret/data/alga-psa/workflow-worker
|
|
|
|
# Health check probe configuration
|
|
livenessProbe:
|
|
enabled: true
|
|
initialDelaySeconds: 30
|
|
periodSeconds: 30
|
|
timeoutSeconds: 10
|
|
failureThreshold: 3
|
|
successThreshold: 1
|
|
|
|
readinessProbe:
|
|
enabled: true
|
|
initialDelaySeconds: 15
|
|
periodSeconds: 10
|
|
timeoutSeconds: 5
|
|
failureThreshold: 3
|
|
successThreshold: 1
|
|
|
|
# Resource limits and requests
|
|
resources:
|
|
limits:
|
|
cpu: 1000m
|
|
memory: 1Gi
|
|
requests:
|
|
cpu: 200m
|
|
memory: 512Mi
|
|
|
|
# Horizontal Pod Autoscaler configuration
|
|
autoscaling:
|
|
enabled: true
|
|
minReplicas: 1
|
|
maxReplicas: 5
|
|
targetCPUUtilizationPercentage: 70
|
|
targetMemoryUtilizationPercentage: 80
|
|
|
|
# Pod Disruption Budget configuration
|
|
podDisruptionBudget:
|
|
enabled: true
|
|
minAvailable: 1
|
|
|
|
# Pod annotations/labels
|
|
podAnnotations: {}
|
|
podLabels: {}
|
|
|
|
# Pod security context
|
|
podSecurityContext: {}
|
|
|
|
# Security context
|
|
securityContext: {}
|
|
|
|
# Scheduling
|
|
nodeSelector: {}
|
|
tolerations: []
|
|
affinity: {}
|
|
|
|
# Additional env/volumes if needed
|
|
extraEnv: []
|
|
extraVolumes: []
|
|
extraVolumeMounts: []
|
|
|
|
# Namespace override (leave empty to use release namespace)
|
|
namespace: ""
|
|
|
|
# ServiceAccount configuration (generic defaults to avoid nil lookups)
|
|
serviceAccount:
|
|
create: true
|
|
name: ""
|
|
annotations: {}
|
|
automountServiceAccountToken: true
|