feat: update Deployment interface with replicas, stages, new statuses
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -28,7 +28,11 @@ export interface Deployment {
|
||||
appId: string;
|
||||
appVersionId: string;
|
||||
environmentId: string;
|
||||
status: 'STARTING' | 'RUNNING' | 'FAILED' | 'STOPPED';
|
||||
status: 'STOPPED' | 'STARTING' | 'RUNNING' | 'DEGRADED' | 'STOPPING' | 'FAILED';
|
||||
targetState: string;
|
||||
deploymentStrategy: string;
|
||||
replicaStates: { index: number; containerId: string; containerName: string; status: string; oomKilled?: boolean }[];
|
||||
deployStage: string | null;
|
||||
containerId: string | null;
|
||||
containerName: string | null;
|
||||
errorMessage: string | null;
|
||||
|
||||
Reference in New Issue
Block a user