mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-20 21:16:19 +01:00
Fix: correct k8s job status check
This commit is contained in:
parent
eccd96a775
commit
5d531b11e7
@ -48,8 +48,8 @@ export default async function handler(req, res) {
|
|||||||
logger.error(`no pods found with namespace=${namespace} and labelSelector=${labelSelector}`);
|
logger.error(`no pods found with namespace=${namespace} and labelSelector=${labelSelector}`);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const someReady = pods.find((pod) => ["Completed", "Running"].includes(pod.status.phase));
|
const someReady = pods.find((pod) => ["Succeeded", "Running"].includes(pod.status.phase));
|
||||||
const allReady = pods.every((pod) => ["Completed", "Running"].includes(pod.status.phase));
|
const allReady = pods.every((pod) => ["Succeeded", "Running"].includes(pod.status.phase));
|
||||||
let status = "down";
|
let status = "down";
|
||||||
if (allReady) {
|
if (allReady) {
|
||||||
status = "running";
|
status = "running";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user