Suspendedremoval display in Frontend
All checks were successful
Build and Push / build (push) Successful in 1m28s

This commit is contained in:
2026-05-01 21:39:16 +02:00
parent a79d0defa4
commit b12bca8818
3 changed files with 82 additions and 12 deletions

View File

@@ -134,6 +134,15 @@ export interface PiecedTenant {
name: string;
namespace?: string;
creationTimestamp?: string;
/**
* Set by the API server when something issues a Delete on the CR.
* The CR continues to exist while finalizers run cleanup; once
* they all remove themselves, the API server permanently removes
* the CR. Used by the portal's status sync to detect tenants
* being torn down — the customer should see "Deleted" rather
* than "Ready" while the cleanup runs.
*/
deletionTimestamp?: string;
labels?: Record<string, string>;
annotations?: Record<string, string>;
};