2026.28 Infrastructure Changes
1 min read
Changes on Application environment
Change | Environment Variable Name | Application Default Value | Example | Required | Applications | Short Description |
|---|---|---|---|---|---|---|
Added |
| - |
| true |
| Identifies this service when evaluating per-service feature flags against |
Added |
| - |
| true |
| Internal URL used by assistants-core to reach |
Removed |
| - | - | - |
|
|
Required Backend Service Configuration database hook update
A new data migration hook has been added to the backend-service-configuration. The migration command in the migration hook in the default values of the service need to be adjusted.
// search for
cd /home/node/app/services/configuration-backend && pnpm exec prisma migrate deploy --config prisma.config.ts;
// replace with
cd /home/node/app/services/configuration-backend && pnpm exec prisma migrate deploy --config prisma.config.ts; cd /home/node/app/services/configuration-backend/dist; RUNNING_MODE=DATA_MIGRATION node --max-old-space-size=1000 /home/node/app/services/configuration-backend/dist/main.js;The final result should look like this in the default values of backend-service-configuration:
hooks:
migration:
enabled: true
command: |
cd /home/node/app/services/configuration-backend && pnpm exec prisma migrate deploy --config prisma.config.ts; cd /home/node/app/services/configuration-backend/dist; RUNNING_MODE=DATA_MIGRATION node --max-old-space-size=1000 /home/node/app/services/configuration-backend/dist/main.js;
resources:
requests:
cpu: 200m
memory: 600Mi
limits:
memory: 1000Mi
cpu: 500m