Add settings service to deploy map and health monitor

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
jtricerolph 2026-07-01 19:23:25 +00:00
parent 1d5b345ea4
commit b120fbf44e
2 changed files with 2 additions and 0 deletions

View file

@ -11,5 +11,6 @@ export const deployMap = {
'rates': { host: '10.10.10.115', path: '/opt/rates' }, 'rates': { host: '10.10.10.115', path: '/opt/rates' },
'portal': { host: '10.10.10.102', path: '/opt/portal' }, 'portal': { host: '10.10.10.102', path: '/opt/portal' },
'auth': { host: '10.10.10.101', path: '/opt/auth' }, 'auth': { host: '10.10.10.101', path: '/opt/auth' },
'settings': { host: '10.10.10.116', path: '/opt/settings' },
// 'management' intentionally omitted — can't redeploy the container managing deploys // 'management' intentionally omitted — can't redeploy the container managing deploys
} }

View file

@ -26,6 +26,7 @@ const healthMap = {
'housekeeping': { host: '10.10.10.114', port: 3080 }, 'housekeeping': { host: '10.10.10.114', port: 3080 },
'forecasting': { host: '10.10.10.113', port: 3080 }, 'forecasting': { host: '10.10.10.113', port: 3080 },
'rates': { host: '10.10.10.115', port: 3080 }, 'rates': { host: '10.10.10.115', port: 3080 },
'settings': { host: '10.10.10.116', port: 3080 },
} }
function verifySignature(body, signature) { function verifySignature(body, signature) {