feat(external-registry): Implement CRUD operations and connection verification for external registries

This commit is contained in:
2025-09-10 08:24:55 +00:00
parent 73505d1ed8
commit 01d877f7ed
7 changed files with 805 additions and 45 deletions

View File

@@ -137,6 +137,7 @@ export class Cloudly {
// start the managers
this.imageManager.start();
this.externalRegistryManager.start();
}
/**
@@ -149,5 +150,6 @@ export class Cloudly {
await this.secretManager.stop();
await this.serviceManager.stop();
await this.deploymentManager.stop();
await this.externalRegistryManager.stop();
}
}