/**
* a deployment happens when a service is deployed
* tracks the status of a deployment
*/
export interfaceIDeployment {
id: string;
affectedServiceIds: string[];
usedImageId: string;
deploymentLog: string[];
status: 'scheduled' | 'running' | 'deployed' | 'failed';
}