chore(core): 🔧 Update deployment orchestrator configuration for new CI/CD pipeline integration
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
parent
01ee4b7f95
commit
1e1a052fed
1 changed files with 2 additions and 2 deletions
|
|
@ -517,7 +517,7 @@ export class DeploymentOrchestrator {
|
|||
}> {
|
||||
// Individual deployment: use its first URL (health check)
|
||||
if (manifest.deployment.type !== 'group') {
|
||||
const urls = manifest.orchestration.urls ?? [];
|
||||
const urls = manifest.orchestration?.urls ?? [];
|
||||
if (urls.length === 0) return [];
|
||||
return [{
|
||||
...urls[0],
|
||||
|
|
@ -534,7 +534,7 @@ export class DeploymentOrchestrator {
|
|||
for (const id of this.deploymentRegistry.getAll()) {
|
||||
const dep = this.deploymentRegistry.get(id);
|
||||
if (!dep || dep.deployment.type === 'group') continue;
|
||||
if (!dep.orchestration.urls?.length) continue;
|
||||
if (!dep.orchestration?.urls?.length) continue;
|
||||
|
||||
urls.push({
|
||||
...dep.orchestration.urls[0],
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue