-
- {title || (
-
- Replica {smallReplicaName(replica.name)}
-
- )}
-
- {status || (
-
- )}
-
-
- {duration ||
- (replica.startTime ? (
+}: OverviewProps) => {
+ return (
+ <>
+
+
+
+ {title || (
+
+ Replica {smallReplicaName(replica.name)}
+
+ )}
+
+ {status || (
+
+ )}
+
+
+ {duration || (
<>
)}
>
- ) : (
- 'waiting'
- ))}
-
-
- {replica.resources && (
-
- )}
+ )}
+
+
+ {replica.resources && (
+
+ )}
+
-
-
-
- >
-);
+
+
+ >
+ );
+};
type RepliceLogProps = {
isCollapsibleLog?: boolean;
diff --git a/src/store/radix-api.ts b/src/store/radix-api.ts
index 7bab2aaf0..d9718c481 100644
--- a/src/store/radix-api.ts
+++ b/src/store/radix-api.ts
@@ -2481,8 +2481,6 @@ export type ReplicaSummary = {
resources?: ResourceRequirements;
/** RestartCount count of restarts of a component container inside a pod */
restartCount?: number;
- /** The time at which the batch job's pod startedAt */
- startTime?: string;
/** StatusMessage provides message describing the status of a component container inside a pod */
statusMessage?: string;
/** Pod type
@@ -3116,11 +3114,8 @@ export type ScheduledBatchSummary = {
ended?: string;
/** Jobs within the batch of ScheduledJobSummary */
jobList?: ScheduledJobSummary[];
- /** Deprecated: Message of a status, if any, of the job */
- message?: string;
/** Name of the scheduled batch */
name: string;
- replica?: ReplicaSummary;
/** Started timestamp */
started?: string;
/** Status of the job