14 lines
346 B
TypeScript
14 lines
346 B
TypeScript
|
import * as plugins from '../plugins.js';
|
||
|
|
||
|
/**
|
||
|
* results from a DeploymentDirective
|
||
|
* tracks the status of a deployment
|
||
|
*/
|
||
|
export interface IDeployment {
|
||
|
id: string;
|
||
|
deploymentDirectiveId: string;
|
||
|
affectedServiceIds: string[];
|
||
|
usedImageId: string;
|
||
|
deploymentLog: string[];
|
||
|
status: 'scheduled' | 'running' | 'deployed' | 'failed';
|
||
|
}
|