From c5c23763940bdc4d16104849ec6c03fb7af0b317 Mon Sep 17 00:00:00 2001 From: Greg Schohn Date: Tue, 1 Oct 2024 12:26:18 -0400 Subject: [PATCH] Remove all dependencies from the migration-console stack That means that the console can come up and be used for diagnostics if the other stacks/clusters don't properly deploy. Signed-off-by: Greg Schohn --- .../cdk/opensearch-service-migration/lib/stack-composer.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/deployment/cdk/opensearch-service-migration/lib/stack-composer.ts b/deployment/cdk/opensearch-service-migration/lib/stack-composer.ts index 9f52bc8a8..ee3c3dcac 100644 --- a/deployment/cdk/opensearch-service-migration/lib/stack-composer.ts +++ b/deployment/cdk/opensearch-service-migration/lib/stack-composer.ts @@ -621,8 +621,7 @@ export class StackComposer { }) // To enable the Migration Console to make requests to other service endpoints with services, // it must be deployed after any connected services - this.addDependentStacks(migrationConsoleStack, [captureProxyESStack, captureProxyStack, elasticsearchStack, - openSearchStack, osContainerStack, migrationStack, kafkaBrokerStack]) + this.addDependentStacks(migrationConsoleStack, [migrationStack]) this.stacks.push(migrationConsoleStack) }