diff --git a/src/commands/compute/deploy.ts b/src/commands/compute/deploy.ts index 54288f8..3664a91 100644 --- a/src/commands/compute/deploy.ts +++ b/src/commands/compute/deploy.ts @@ -142,6 +142,7 @@ export function registerComputeDeployCommand(computeCmd: Command): void { const verb = existing ? 'updated' : 'deployed'; outputSuccess(`Service "${service.name}" ${verb} [${service.status}]`); if (service.endpointUrl) console.log(` Endpoint: ${service.endpointUrl}`); + if (service.port !== undefined) console.log(` Port: ${service.port} (container must listen on this port)`); } await reportCliUsage('cli.compute.deploy', true); return; @@ -269,6 +270,7 @@ export function registerComputeDeployCommand(computeCmd: Command): void { const verb = existing ? 'updated' : 'deployed'; outputSuccess(`Service "${service.name}" ${verb} [${service.status}]`); if (service.endpointUrl) console.log(` Endpoint: ${service.endpointUrl}`); + if (service.port !== undefined) console.log(` Port: ${service.port} (container must listen on this port)`); console.log(` Image: ${imageRef} (built remotely; no local image to clean up)`); } diff --git a/src/commands/compute/update.ts b/src/commands/compute/update.ts index 9596e39..358a4d6 100644 --- a/src/commands/compute/update.ts +++ b/src/commands/compute/update.ts @@ -131,6 +131,8 @@ export function registerComputeUpdateCommand(computeCmd: Command): void { outputJson(service); } else { outputSuccess(`Service "${service.name}" updated [${service.status}]`); + if (service.endpointUrl) console.log(` Endpoint: ${service.endpointUrl}`); + if (service.port !== undefined) console.log(` Port: ${service.port} (container must listen on this port)`); } await reportCliUsage('cli.compute.update', true); } catch (err) {