From b120fbf44e54f30164972dda11a99a00a8fdb2df Mon Sep 17 00:00:00 2001 From: jtricerolph Date: Wed, 1 Jul 2026 19:23:25 +0000 Subject: [PATCH] Add settings service to deploy map and health monitor Co-Authored-By: Claude Sonnet 4.6 --- updater/deploy-map.js | 1 + updater/src/index.js | 1 + 2 files changed, 2 insertions(+) diff --git a/updater/deploy-map.js b/updater/deploy-map.js index 3ffb595..550f0e1 100644 --- a/updater/deploy-map.js +++ b/updater/deploy-map.js @@ -11,5 +11,6 @@ export const deployMap = { 'rates': { host: '10.10.10.115', path: '/opt/rates' }, 'portal': { host: '10.10.10.102', path: '/opt/portal' }, '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 } diff --git a/updater/src/index.js b/updater/src/index.js index 0f0bd96..9febe22 100644 --- a/updater/src/index.js +++ b/updater/src/index.js @@ -26,6 +26,7 @@ const healthMap = { 'housekeeping': { host: '10.10.10.114', port: 3080 }, 'forecasting': { host: '10.10.10.113', port: 3080 }, 'rates': { host: '10.10.10.115', port: 3080 }, + 'settings': { host: '10.10.10.116', port: 3080 }, } function verifySignature(body, signature) {