feat(manager.registry): Add external registry management

This commit is contained in:
2024-12-28 21:39:44 +01:00
parent 7654d780b1
commit da7b866f23
7 changed files with 56 additions and 2 deletions

View File

@ -0,0 +1,12 @@
import * as plugins from '../plugins.js';
export interface IExternalRegistry {
id: string;
data: {
type: 'docker' | 'npm';
name: string;
url: string;
username: string;
password: string;
};
}

View File

@ -4,6 +4,10 @@ export interface IImage {
id: string;
data: {
name: string;
external?: {
externalRegistryId: string;
imageName: string;
}
description: string;
versions: Array<{
versionString: string;

View File

@ -4,6 +4,7 @@ export * from './config.js';
export * from './deployment.js';
export * from './docker.js';
export * from './event.js';
export * from './externalregistry.js';
export * from './image.js';
export * from './secretbundle.js';
export * from './secretgroup.js'