feat: update Deployment interface with replicas, stages, new statuses

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-08 20:29:33 +02:00
parent 6e444a414d
commit 7e0536b5b3

View File

@@ -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;