UNPKG

@serve.zone/interfaces

Version:

interfaces for working with containers

12 lines (11 loc) 294 B
/** * a deployment happens when a service is deployed * tracks the status of a deployment */ export interface IDeployment { id: string; affectedServiceIds: string[]; usedImageId: string; deploymentLog: string[]; status: 'scheduled' | 'running' | 'deployed' | 'failed'; }