underpost 3.2.12 → 3.2.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,235 @@
1
+ /**
2
+ * Runtime status contract and the in-pod internal status endpoint.
3
+ *
4
+ * Single source of truth for the Underpost runtime readiness signal (Phase 2 of
5
+ * the two-phase deployment monitor). The runtime publishes its lifecycle here;
6
+ * the CD-side monitor (`src/cli/monitor.js`) reads it over HTTP via
7
+ * `kubectl port-forward`. Kubernetes pod readiness (Phase 1) is owned by kubelet
8
+ * and is intentionally not modeled in this module.
9
+ *
10
+ * Cross-process contract:
11
+ * - In-pod, the canonical value lives in the underpost root env key
12
+ * `container-status`, written by `start.js`. For non-error phases it carries
13
+ * the namespaced form `<deployId>-<env>-<phase>`; a fatal fault collapses to
14
+ * the bare value `error`.
15
+ * - The internal HTTP server exposes that value (normalized to the bare
16
+ * contract phase) and never exposes secrets, env dumps, or configuration.
17
+ *
18
+ * @module src/server/runtime-status.js
19
+ * @namespace RuntimeStatus
20
+ */
21
+
22
+ import http from 'node:http';
23
+ import fs from 'fs-extra';
24
+ import dotenv from 'dotenv';
25
+ import Underpost from '../index.js';
26
+ import { loggerFactory } from './logger.js';
27
+
28
+ const logger = loggerFactory(import.meta);
29
+
30
+ /**
31
+ * Allowed runtime status contract values. These are the only Phase-2 signals
32
+ * the monitor reasons about.
33
+ * @memberof RuntimeStatus
34
+ */
35
+ const RUNTIME_STATUS = {
36
+ BUILD: 'build-deployment',
37
+ INIT: 'initializing-deployment',
38
+ RUNNING: 'running-deployment',
39
+ ERROR: 'error',
40
+ };
41
+
42
+ const CONTAINER_STATUS_KEY = 'container-status';
43
+ const INTERNAL_STATUS_PATH = '/_internal/status';
44
+ const INTERNAL_READY_PATH = '/_internal/ready';
45
+ const INTERNAL_HEALTH_PATH = '/_internal/health';
46
+
47
+ /**
48
+ * Resolves the internal status port. Defaults to the deployment base `PORT`
49
+ * (app instances bind `PORT + 1` upward, so the base port is free inside the
50
+ * pod). An explicit `UNDERPOST_INTERNAL_PORT` override wins.
51
+ * @memberof RuntimeStatus
52
+ * @returns {number|undefined}
53
+ */
54
+ const resolveInternalStatusPort = () => {
55
+ const raw = process.env.UNDERPOST_INTERNAL_PORT || process.env.PORT;
56
+ const port = parseInt(raw);
57
+ return Number.isNaN(port) ? undefined : port;
58
+ };
59
+
60
+ /**
61
+ * Single source of truth for the internal status port of a specific deployment,
62
+ * used identically by the in-pod server bind (`start.js`) and the CD-side
63
+ * monitor target (`monitor.js`) so the two can never disagree.
64
+ *
65
+ * Resolution order: `UNDERPOST_INTERNAL_PORT` override → the deployment's
66
+ * `.env.<env>` `PORT` → the ambient `PORT`.
67
+ *
68
+ * @memberof RuntimeStatus
69
+ * @param {string} deployId
70
+ * @param {string} env
71
+ * @returns {number|undefined}
72
+ */
73
+ const deployStatusPort = (deployId, env) => {
74
+ const override = parseInt(process.env.UNDERPOST_INTERNAL_PORT);
75
+ if (!Number.isNaN(override)) return override;
76
+ try {
77
+ const envPath = `./engine-private/conf/${deployId}/.env.${env}`;
78
+ if (fs.existsSync(envPath)) {
79
+ const port = parseInt(dotenv.parse(fs.readFileSync(envPath, 'utf8')).PORT);
80
+ if (!Number.isNaN(port)) return port;
81
+ }
82
+ } catch (_) {
83
+ /* fall through to ambient resolution */
84
+ }
85
+ return resolveInternalStatusPort();
86
+ };
87
+
88
+ /**
89
+ * Builds the `container-status` env value for a lifecycle phase.
90
+ * @memberof RuntimeStatus
91
+ */
92
+ const containerStatusValue = (deployId, env, phase) =>
93
+ phase === RUNTIME_STATUS.ERROR ? RUNTIME_STATUS.ERROR : `${deployId}-${env}-${phase}`;
94
+
95
+ /**
96
+ * Normalizes a raw `container-status` value to a bare contract phase.
97
+ * Strips the `<deployId>-<env>-` prefix; `error` and unknown/empty values are
98
+ * passed through (empty → undefined).
99
+ * @memberof RuntimeStatus
100
+ * @param {string} raw
101
+ * @returns {string|undefined}
102
+ */
103
+ const normalizeContainerStatus = (raw) => {
104
+ if (!raw || typeof raw !== 'string') return undefined;
105
+ const value = raw.trim();
106
+ if (!value || value === 'undefined' || value.toLowerCase().includes('empty')) return undefined;
107
+ if (value === RUNTIME_STATUS.ERROR) return RUNTIME_STATUS.ERROR;
108
+ for (const phase of [RUNTIME_STATUS.BUILD, RUNTIME_STATUS.INIT, RUNTIME_STATUS.RUNNING])
109
+ if (value.endsWith(`-${phase}`)) return phase;
110
+ return value;
111
+ };
112
+
113
+ /**
114
+ * Reads the current normalized runtime status from the env file.
115
+ * @memberof RuntimeStatus
116
+ * @returns {string|undefined}
117
+ */
118
+ const getRuntimeStatus = () =>
119
+ normalizeContainerStatus(Underpost.env.get(CONTAINER_STATUS_KEY, undefined, { disableLog: true }));
120
+
121
+ /**
122
+ * Minimal, secret-free payload served by the internal status endpoint and used
123
+ * by the monitor for failure classification and observability.
124
+ * @memberof RuntimeStatus
125
+ * @returns {{status: (string|null), deployId: (string|null), env: (string|null)}}
126
+ */
127
+ const runtimeStatusPayload = () => ({
128
+ status: getRuntimeStatus() ?? null,
129
+ deployId: process.env.DEPLOY_ID ?? null,
130
+ env: process.env.NODE_ENV ?? null,
131
+ });
132
+
133
+ /**
134
+ * Emits a structured, secret-free deployment transition event.
135
+ * @memberof RuntimeStatus
136
+ */
137
+ const emitRuntimeEvent = ({ deployId, env, phase }) => {
138
+ logger.info('runtime-status', {
139
+ deployId,
140
+ env,
141
+ phase: 'runtime',
142
+ status: phase,
143
+ timestamp: new Date().toISOString(),
144
+ });
145
+ };
146
+
147
+ /**
148
+ * Publishes a runtime lifecycle phase to the cross-process contract.
149
+ * @memberof RuntimeStatus
150
+ * @param {string} deployId
151
+ * @param {string} env
152
+ * @param {string} phase - One of {@link RUNTIME_STATUS}.
153
+ */
154
+ const setRuntimeStatus = (deployId, env, phase) => {
155
+ Underpost.env.set(CONTAINER_STATUS_KEY, containerStatusValue(deployId, env, phase));
156
+ emitRuntimeEvent({ deployId, env, phase });
157
+ };
158
+
159
+ let internalServer;
160
+
161
+ /**
162
+ * Starts the in-pod internal status server. Idempotent: repeated calls return
163
+ * the already-listening server. Exposes only the three internal endpoints and
164
+ * never serves secrets or configuration.
165
+ *
166
+ * GET /_internal/status → 200, `{status, deployId, env}` (monitor transport)
167
+ * GET /_internal/ready → 200 iff running-deployment, else 503 (readinessProbe)
168
+ * GET /_internal/health → 200 while the process is alive (livenessProbe)
169
+ *
170
+ * @memberof RuntimeStatus
171
+ * @param {number} [port]
172
+ * @returns {import('node:http').Server|undefined}
173
+ */
174
+ const startInternalStatusServer = (port = resolveInternalStatusPort()) => {
175
+ if (internalServer) return internalServer;
176
+ if (!port) {
177
+ logger.warn('Internal status server not started: no resolvable port');
178
+ return undefined;
179
+ }
180
+ const server = http.createServer((req, res) => {
181
+ const url = (req.url || '').split('?')[0];
182
+ const sendJson = (code, body) => {
183
+ res.writeHead(code, { 'Content-Type': 'application/json' });
184
+ res.end(JSON.stringify(body));
185
+ };
186
+ if (req.method !== 'GET') return sendJson(405, { error: 'method_not_allowed' });
187
+ switch (url) {
188
+ case INTERNAL_HEALTH_PATH:
189
+ return sendJson(200, { status: 'ok' });
190
+ case INTERNAL_READY_PATH:
191
+ return getRuntimeStatus() === RUNTIME_STATUS.RUNNING
192
+ ? sendJson(200, { status: RUNTIME_STATUS.RUNNING })
193
+ : sendJson(503, { status: getRuntimeStatus() ?? null });
194
+ case INTERNAL_STATUS_PATH:
195
+ return sendJson(200, runtimeStatusPayload());
196
+ default:
197
+ return sendJson(404, { error: 'not_found' });
198
+ }
199
+ });
200
+ server.on('error', (error) => logger.error('internal status server error', error?.message ?? error));
201
+ server.listen(port, () => logger.info(`Internal status endpoint listening on :${port}${INTERNAL_STATUS_PATH}`));
202
+ internalServer = server;
203
+ return internalServer;
204
+ };
205
+
206
+ /**
207
+ * Stops the internal status server if running. Returns a promise that resolves
208
+ * once the listener is closed. Primarily a test/teardown hook.
209
+ * @memberof RuntimeStatus
210
+ * @returns {Promise<void>}
211
+ */
212
+ const stopInternalStatusServer = () =>
213
+ new Promise((resolve) => {
214
+ if (!internalServer) return resolve();
215
+ const server = internalServer;
216
+ internalServer = undefined;
217
+ server.close(() => resolve());
218
+ });
219
+
220
+ export {
221
+ RUNTIME_STATUS,
222
+ CONTAINER_STATUS_KEY,
223
+ INTERNAL_STATUS_PATH,
224
+ INTERNAL_READY_PATH,
225
+ INTERNAL_HEALTH_PATH,
226
+ resolveInternalStatusPort,
227
+ deployStatusPort,
228
+ containerStatusValue,
229
+ normalizeContainerStatus,
230
+ getRuntimeStatus,
231
+ runtimeStatusPayload,
232
+ setRuntimeStatus,
233
+ startInternalStatusServer,
234
+ stopInternalStatusServer,
235
+ };
@@ -8,6 +8,7 @@ import fs from 'fs-extra';
8
8
  import { awaitDeployMonitor } from './conf.js';
9
9
  import { actionInitLog, loggerFactory } from './logger.js';
10
10
  import { shellCd, shellExec } from './process.js';
11
+ import { RUNTIME_STATUS, setRuntimeStatus, startInternalStatusServer, deployStatusPort } from './runtime-status.js';
11
12
  import Underpost from '../index.js';
12
13
  const logger = loggerFactory(import.meta);
13
14
 
@@ -147,9 +148,13 @@ class UnderpostStartUp {
147
148
  pullBundle: false,
148
149
  },
149
150
  ) {
150
- Underpost.env.set('container-status', `${deployId}-${env}-build-deployment`);
151
+ // Bring the internal status endpoint up first so Phase-2 readiness is
152
+ // observable through every lifecycle phase, including build and init. Bind
153
+ // the deployment-resolved port so it always matches the monitor's target.
154
+ startInternalStatusServer(deployStatusPort(deployId, env));
155
+ setRuntimeStatus(deployId, env, RUNTIME_STATUS.BUILD);
151
156
  if (options.build === true) await Underpost.start.build(deployId, env, options);
152
- Underpost.env.set('container-status', `${deployId}-${env}-initializing-deployment`);
157
+ setRuntimeStatus(deployId, env, RUNTIME_STATUS.INIT);
153
158
  if (options.run === true) await Underpost.start.run(deployId, env, options);
154
159
  },
155
160
  /**
@@ -201,7 +206,7 @@ class UnderpostStartUp {
201
206
  const makeDeployCallback = (cmd) => (code, out, msg) => {
202
207
  if (code !== 0) {
203
208
  logger.error(`Deployment process exited with code ${code}`, { cmd, msg });
204
- Underpost.env.set('container-status', 'error');
209
+ setRuntimeStatus(deployId, env, RUNTIME_STATUS.ERROR);
205
210
  }
206
211
  };
207
212
  if (fs.existsSync(`./engine-private/replica`)) {
@@ -211,18 +216,22 @@ class UnderpostStartUp {
211
216
  shellExec(`node bin env ${replica} ${env}`);
212
217
  const replicaCmd = `npm ${runCmd} ${replica}`;
213
218
  shellExec(replicaCmd, { async: true, callback: makeDeployCallback(replicaCmd) });
214
- await awaitDeployMonitor();
219
+ const result = await awaitDeployMonitor();
220
+ if (result !== true) {
221
+ setRuntimeStatus(deployId, env, RUNTIME_STATUS.ERROR);
222
+ return;
223
+ }
215
224
  }
216
225
  }
217
226
  shellExec(`node bin env ${deployId} ${env}`);
218
227
  const deployCmd = `npm ${runCmd} ${deployId}`;
219
228
  shellExec(deployCmd, { async: true, callback: makeDeployCallback(deployCmd) });
220
- await awaitDeployMonitor(true);
221
- if (Underpost.env.get('container-status') !== 'error') {
229
+ const result = await awaitDeployMonitor(true);
230
+ if (result === true) {
222
231
  if (env === 'production' && Underpost.env.isInsideContainer()) Underpost.secret.globalSecretClean();
223
- Underpost.env.set('container-status', `${deployId}-${env}-running-deployment`);
232
+ setRuntimeStatus(deployId, env, RUNTIME_STATUS.RUNNING);
224
233
  } else {
225
- Underpost.env.set('container-status', 'error');
234
+ setRuntimeStatus(deployId, env, RUNTIME_STATUS.ERROR);
226
235
  }
227
236
  },
228
237
  };
@@ -0,0 +1,223 @@
1
+ /**
2
+ * @module deploy-monitor.test
3
+ * @description End-to-end test of the two-phase deployment readiness contract
4
+ * between the in-pod runtime (`start.js` / `runtime-status.js`) and the CD-runner
5
+ * monitor (`Underpost.monitor.monitorReadyRunner`), exercised as real OS
6
+ * processes coordinating through the shared underpost env file and a real HTTP
7
+ * internal status endpoint.
8
+ *
9
+ * Contract under test:
10
+ *
11
+ * - The in-pod runtime publishes only `container-status` (Phase 2) and serves
12
+ * it over `GET /_internal/status`. It never propagates an exit code.
13
+ *
14
+ * - monitorReadyRunner (CD runner) confirms BOTH phases before exiting 0:
15
+ * Phase 1 — Kubernetes pod `Ready` condition (kubectl get pod -o json).
16
+ * Phase 2 — runtime `running-deployment` read over HTTP via
17
+ * `kubectl port-forward` to the internal endpoint.
18
+ * It throws (→ exit 1) on explicit runtime `error`, and returns (→ exit 0)
19
+ * only once both phases are satisfied.
20
+ *
21
+ * The cluster surface is supplied by fake `sudo`/`kubectl` binaries on PATH:
22
+ * - `get pods` / `get pod -o json` report one pod whose Ready condition is
23
+ * driven by FAKE_POD_READY.
24
+ * - `port-forward` is a no-op sleep; the monitor's HTTP GET reaches a REAL
25
+ * internal status server bound in this test process (localPort == port),
26
+ * which reads the same env file the runtime writes.
27
+ *
28
+ * The env file is redirected under a temp `npm_config_prefix`, so the test
29
+ * needs no cluster, no root, and never touches the machine's global install.
30
+ *
31
+ * Uses 'chai' for assertions.
32
+ */
33
+
34
+ import { expect } from 'chai';
35
+ import fs from 'fs-extra';
36
+ import os from 'node:os';
37
+ import path from 'node:path';
38
+ import { fileURLToPath, pathToFileURL } from 'node:url';
39
+ import Underpost from '../src/index.js';
40
+ import { shellExec } from '../src/server/process.js';
41
+ import { startInternalStatusServer, stopInternalStatusServer } from '../src/server/runtime-status.js';
42
+
43
+ const node = process.execPath;
44
+ const repoRoot = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '..');
45
+
46
+ const DEPLOY_ID = 'dd-test';
47
+ const ENV = 'production';
48
+ const TRAFFIC = 'green';
49
+ const POD_NAME = `${DEPLOY_ID}-${ENV}-${TRAFFIC}-pod`;
50
+ const RUNNING_STATUS = `${DEPLOY_ID}-${ENV}-running-deployment`;
51
+ const INIT_STATUS = `${DEPLOY_ID}-${ENV}-initializing-deployment`;
52
+ const BUILD_STATUS = `${DEPLOY_ID}-${ENV}-build-deployment`;
53
+
54
+ const INTERNAL_PORT = 39517; // internal status endpoint (real server bound here)
55
+ const CLOSED_PORT = 39518; // no server — used to force a transport failure
56
+
57
+ describe('Deploy monitor — two-phase state machine (e2e, real HTTP transport)', function () {
58
+ this.timeout(60000);
59
+
60
+ let prevPrefix;
61
+ let tmpPrefix;
62
+ let fakeBinDir;
63
+ let envFile;
64
+ let monitorScriptPath;
65
+
66
+ before(() => {
67
+ prevPrefix = process.env.npm_config_prefix;
68
+ tmpPrefix = fs.mkdtempSync(path.join(os.tmpdir(), 'underpost-e2e-'));
69
+ process.env.npm_config_prefix = tmpPrefix;
70
+
71
+ Underpost.env.set('container-status', 'init');
72
+ const npmRoot = shellExec('npm root -g', { stdout: true, silent: true, disableLog: true }).trim();
73
+ envFile = path.join(npmRoot, 'underpost', '.env');
74
+
75
+ // Real in-pod internal status server: serves container-status from the same
76
+ // env file the runtime writes. Bound in this test process; the monitor's
77
+ // port-forward tunnel (localPort == INTERNAL_PORT) resolves straight to it.
78
+ process.env.UNDERPOST_INTERNAL_PORT = String(INTERNAL_PORT);
79
+ startInternalStatusServer(INTERNAL_PORT);
80
+
81
+ fakeBinDir = path.join(tmpPrefix, 'fakebin');
82
+ fs.ensureDirSync(fakeBinDir);
83
+
84
+ const sudoPath = path.join(fakeBinDir, 'sudo');
85
+ fs.writeFileSync(
86
+ sudoPath,
87
+ `#!/usr/bin/env bash
88
+ while [[ "$1" == -* || "$1" == "--" ]]; do shift; done
89
+ exec "$@"
90
+ `,
91
+ );
92
+
93
+ const kubectlPath = path.join(fakeBinDir, 'kubectl');
94
+ fs.writeFileSync(
95
+ kubectlPath,
96
+ `#!/usr/bin/env bash
97
+ verb="$1"; kind="$2"
98
+ if [[ "$verb" == "get" && "$kind" == "pods" ]]; then
99
+ printf 'NAME READY STATUS RESTARTS AGE\\n'
100
+ printf '%s 1/1 Running 0 1m\\n' "$POD_NAME"
101
+ exit 0
102
+ fi
103
+ if [[ "$verb" == "get" && "$kind" == "pod" ]]; then
104
+ printf '{"status":{"conditions":[{"type":"Ready","status":"%s"}]}}\\n' "\${FAKE_POD_READY:-True}"
105
+ exit 0
106
+ fi
107
+ if [[ "$verb" == "port-forward" ]]; then
108
+ sleep 30
109
+ exit 0
110
+ fi
111
+ exit 0
112
+ `,
113
+ );
114
+ fs.chmodSync(sudoPath, 0o755);
115
+ fs.chmodSync(kubectlPath, 0o755);
116
+
117
+ monitorScriptPath = path.join(tmpPrefix, 'monitor-ready.mjs');
118
+ fs.writeFileSync(
119
+ monitorScriptPath,
120
+ `import Underpost from ${JSON.stringify(pathToFileURL(path.join(repoRoot, 'src/index.js')).href)};
121
+ try {
122
+ await Underpost.monitor.monitorReadyRunner(${JSON.stringify(DEPLOY_ID)}, ${JSON.stringify(ENV)}, ${JSON.stringify(
123
+ TRAFFIC,
124
+ )}, [], 'default');
125
+ process.exit(0);
126
+ } catch (_) {
127
+ process.exit(1);
128
+ }
129
+ `,
130
+ );
131
+ });
132
+
133
+ after(async () => {
134
+ await stopInternalStatusServer();
135
+ delete process.env.UNDERPOST_INTERNAL_PORT;
136
+ if (prevPrefix === undefined) delete process.env.npm_config_prefix;
137
+ else process.env.npm_config_prefix = prevPrefix;
138
+ fs.removeSync(tmpPrefix);
139
+ });
140
+
141
+ beforeEach(() => {
142
+ // Deploy in flight: app not yet reporting running.
143
+ Underpost.env.set('container-status', INIT_STATUS);
144
+ });
145
+
146
+ // Spawns the real monitorReadyRunner with the fake cluster on PATH; resolves
147
+ // with its exit code. `overrides` inject deterministic timing / target port.
148
+ const spawnMonitor = (overrides = {}) =>
149
+ new Promise((resolve) => {
150
+ const envVars = {
151
+ PATH: `${fakeBinDir}:${process.env.PATH}`,
152
+ UNDERPOST_ENV_FILE: envFile,
153
+ POD_NAME,
154
+ npm_config_prefix: tmpPrefix,
155
+ UNDERPOST_INTERNAL_PORT: String(INTERNAL_PORT),
156
+ // Pin the tunnel's local port so the no-op fake port-forward + the real
157
+ // internal server (bound to INTERNAL_PORT in this process) resolve to the
158
+ // same address the monitor's HTTP GET targets.
159
+ UNDERPOST_PF_LOCAL_PORT: String(INTERNAL_PORT),
160
+ UNDERPOST_MONITOR_DELAY_MS: '100',
161
+ UNDERPOST_MONITOR_MAX_ITERATIONS: '60',
162
+ UNDERPOST_PF_ATTEMPTS: '3',
163
+ FAKE_POD_READY: 'True',
164
+ ...overrides,
165
+ };
166
+ const prefix = Object.entries(envVars)
167
+ .map(([k, v]) => `${k}="${v}"`)
168
+ .join(' ');
169
+ shellExec(`${prefix} ${node} ${monitorScriptPath}`, {
170
+ async: true,
171
+ silent: true,
172
+ disableLog: true,
173
+ callback: (code) => resolve(code),
174
+ });
175
+ });
176
+
177
+ it('success: both phases satisfied → monitor exits 0', async () => {
178
+ Underpost.env.set('container-status', RUNNING_STATUS);
179
+ const code = await spawnMonitor({ FAKE_POD_READY: 'True' });
180
+ expect(code).to.equal(0);
181
+ });
182
+
183
+ it('runtime failure: container-status=error → monitor exits 1', async () => {
184
+ const monitorExit = spawnMonitor({ FAKE_POD_READY: 'True' });
185
+ Underpost.env.set('container-status', 'error');
186
+ expect(await monitorExit).to.equal(1);
187
+ });
188
+
189
+ it('readiness mismatch: runtime running but pod not Ready → never succeeds (exits 1)', async () => {
190
+ // Phase 2 satisfied, Phase 1 not: success requires BOTH, so it must time out.
191
+ Underpost.env.set('container-status', RUNNING_STATUS);
192
+ const code = await spawnMonitor({ FAKE_POD_READY: 'False', UNDERPOST_MONITOR_MAX_ITERATIONS: '4' });
193
+ expect(code).to.equal(1);
194
+ });
195
+
196
+ it('transport failure: endpoint unreachable is never success (exits 1)', async () => {
197
+ // Point the monitor at a port with no internal server; the HTTP read always
198
+ // fails, so runtime readiness is never confirmed and the monitor times out.
199
+ Underpost.env.set('container-status', RUNNING_STATUS);
200
+ const code = await spawnMonitor({
201
+ UNDERPOST_INTERNAL_PORT: String(CLOSED_PORT),
202
+ UNDERPOST_PF_LOCAL_PORT: String(CLOSED_PORT),
203
+ UNDERPOST_MONITOR_MAX_ITERATIONS: '3',
204
+ });
205
+ expect(code).to.equal(1);
206
+ });
207
+
208
+ it('timeout: runtime stuck initializing → monitor exits 1', async () => {
209
+ Underpost.env.set('container-status', INIT_STATUS);
210
+ const code = await spawnMonitor({ FAKE_POD_READY: 'True', UNDERPOST_MONITOR_MAX_ITERATIONS: '4' });
211
+ expect(code).to.equal(1);
212
+ });
213
+
214
+ it('regression: advanced pod whose runtime status falls back → monitor exits 1', async () => {
215
+ // Pod advances past build, then its reported status regresses (pod restart);
216
+ // the monitor must treat this as a failure rather than wait it out.
217
+ Underpost.env.set('container-status', INIT_STATUS);
218
+ const monitorExit = spawnMonitor({ FAKE_POD_READY: 'False', UNDERPOST_MONITOR_MAX_ITERATIONS: '120' });
219
+ await new Promise((r) => setTimeout(r, 1500));
220
+ Underpost.env.set('container-status', BUILD_STATUS);
221
+ expect(await monitorExit).to.equal(1);
222
+ });
223
+ });