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
148 lines
2.6 KiB
YAML
148 lines
2.6 KiB
YAML
# Default values for email-service.
|
|
|
|
enabled: true
|
|
|
|
image:
|
|
repository: email-service
|
|
tag: latest
|
|
pullPolicy: IfNotPresent
|
|
is_private: false
|
|
credentials: ""
|
|
|
|
replicaCount: 1
|
|
|
|
rollingUpdate:
|
|
maxSurge: 1
|
|
maxUnavailable: 0
|
|
|
|
service:
|
|
type: ClusterIP
|
|
port: 8080
|
|
|
|
logLevel: info
|
|
|
|
app:
|
|
edition: enterprise
|
|
env: production
|
|
name: alga-psa
|
|
|
|
secretsProvider:
|
|
readChain: "env,filesystem"
|
|
writeProvider: "filesystem"
|
|
vault:
|
|
addr: ""
|
|
tokenSecret:
|
|
name: ""
|
|
key: ""
|
|
appSecretPath: "kv/data/app/secrets"
|
|
tenantSecretPathTemplate: "kv/data/tenants/{tenantId}/secrets"
|
|
|
|
imap:
|
|
providerRefreshMs: 60000
|
|
pollIntervalMs: 30000
|
|
leaseTtlMs: 120000
|
|
maxConnectionsPerTenant: 5
|
|
maxAttachmentBytes: 0
|
|
fetchDelayMs: 0
|
|
eventChannelByTenant: false
|
|
oauthAuthMechanism: XOAUTH2
|
|
tlsRejectUnauthorized: true
|
|
connectionTimeoutMs: 10000
|
|
maxEmailsPerSync: 5
|
|
socketKeepalive: true
|
|
timerJitterPct: 0.1
|
|
startupStaggerMs: 2000
|
|
reconnectJitterPct: 0.5
|
|
|
|
webhook:
|
|
url: ""
|
|
secretKeyRef:
|
|
name: ""
|
|
key: "IMAP_WEBHOOK_SECRET"
|
|
|
|
redis:
|
|
host: "redis.default.svc.cluster.local"
|
|
port: "6379"
|
|
passwordSecret:
|
|
name: "redis-credentials"
|
|
key: "REDIS_PASSWORD"
|
|
|
|
db:
|
|
type: postgres
|
|
host: "pgbouncer.default.svc.cluster.local"
|
|
port: "6432"
|
|
serverDatabase: "server"
|
|
user: "app_user_pgbouncer"
|
|
serverPasswordSecret:
|
|
name: "db-secrets"
|
|
key: "pgbouncer-password"
|
|
adminUser: "postgres"
|
|
adminPasswordSecret:
|
|
name: ""
|
|
key: ""
|
|
|
|
secrets:
|
|
nextauthSecret: "change-me-in-prod"
|
|
tokenSecretKey: "change-me-in-prod"
|
|
cryptoKey: "change-me-in-prod"
|
|
imapWebhookSecret: "change-me-in-prod"
|
|
|
|
vaultAgent:
|
|
enabled: false
|
|
role: email-service
|
|
secretPath: secret/data/alga-psa/email-service
|
|
sharedSecretPath: secret/data/alga-psa/shared
|
|
|
|
livenessProbe:
|
|
initialDelaySeconds: 20
|
|
periodSeconds: 30
|
|
timeoutSeconds: 10
|
|
failureThreshold: 3
|
|
successThreshold: 1
|
|
|
|
readinessProbe:
|
|
initialDelaySeconds: 10
|
|
periodSeconds: 10
|
|
timeoutSeconds: 5
|
|
failureThreshold: 3
|
|
successThreshold: 1
|
|
|
|
resources:
|
|
limits:
|
|
cpu: 500m
|
|
memory: 512Mi
|
|
requests:
|
|
cpu: 100m
|
|
memory: 256Mi
|
|
|
|
autoscaling:
|
|
enabled: false
|
|
minReplicas: 1
|
|
maxReplicas: 3
|
|
targetCPUUtilizationPercentage: 70
|
|
targetMemoryUtilizationPercentage: 80
|
|
|
|
podDisruptionBudget:
|
|
enabled: false
|
|
minAvailable: 1
|
|
|
|
podAnnotations: {}
|
|
podLabels: {}
|
|
podSecurityContext: {}
|
|
securityContext: {}
|
|
nodeSelector: {}
|
|
tolerations: []
|
|
affinity: {}
|
|
|
|
extraEnv: []
|
|
extraVolumes: []
|
|
extraVolumeMounts: []
|
|
|
|
namespace: ""
|
|
|
|
serviceAccount:
|
|
create: true
|
|
name: ""
|
|
annotations: {}
|
|
automountServiceAccountToken: true
|