From 2321b89ad1401bcb603e7e7ed6a05afb13397b61 Mon Sep 17 00:00:00 2001 From: Andrew Tran Date: Mon, 6 Dec 2021 10:08:42 -0600 Subject: [PATCH] make completed status green Signed-off-by: Andrew Tran --- plugins/kubernetes/src/utils/pod.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/plugins/kubernetes/src/utils/pod.tsx b/plugins/kubernetes/src/utils/pod.tsx index bfb40750cd..50cc983b9d 100644 --- a/plugins/kubernetes/src/utils/pod.tsx +++ b/plugins/kubernetes/src/utils/pod.tsx @@ -63,7 +63,13 @@ export const containerStatuses = (pod: V1Pod): ReactNode => { const renderCell = (reason: string | undefined) => ( Container: {next.name}} + value={ + reason === 'Completed' ? ( + Container: {next.name} + ) : ( + Container: {next.name} + ) + } subvalue={reason} />