mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-01 13:09:31 +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}`);
|
||||
return;
|
||||
}
|
||||
const someReady = pods.find((pod) => pod.status.phase in ["Completed", "Running"]);
|
||||
const allReady = pods.every((pod) => pod.status.phase in ["Completed", "Running"]);
|
||||
const someReady = pods.find((pod) => ["Completed", "Running"].includes(pod.status.phase));
|
||||
const allReady = pods.every((pod) => ["Completed", "Running"].includes(pod.status.phase));
|
||||
let status = "down";
|
||||
if (allReady) {
|
||||
status = "running";
|
||||
|
Loading…
x
Reference in New Issue
Block a user