mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-01 21:13:39 +01:00
Fix: correct k8s service status check (#3753)
This commit is contained in:
parent
d6188e52fe
commit
407376b3b7
@ -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) => pod.status.phase in ["Completed", "Running"]);
|
const someReady = pods.find((pod) => ["Completed", "Running"].includes(pod.status.phase));
|
||||||
const allReady = pods.every((pod) => pod.status.phase in ["Completed", "Running"]);
|
const allReady = pods.every((pod) => ["Completed", "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