diff --git a/frontend/public/module/k8s/pods.ts b/frontend/public/module/k8s/pods.ts index 4362af63fac..17230639be7 100644 --- a/frontend/public/module/k8s/pods.ts +++ b/frontend/public/module/k8s/pods.ts @@ -182,6 +182,10 @@ export const podPhase = (pod): PodPhase => { return 'Terminating'; } + if (pod.status.reason === 'Evicted') { + return 'Evicted'; + } + let initializing = false; let phase = pod.status.phase || pod.status.reason;