This commit is contained in:
Frostebite
2026-01-20 04:42:23 +00:00
parent ad5dd3b9c1
commit 9aa24e21f1
8 changed files with 527 additions and 47 deletions
Generated Vendored
+3 -1
View File
@@ -5193,7 +5193,9 @@ class KubernetesTaskRunner {
message += `\n\nNode Resources (${assignedNode.metadata.name}):\n Allocatable CPU: ${allocatable.cpu || 'unknown'}\n Allocatable Memory: ${allocatable.memory || 'unknown'}\n Allocatable Ephemeral Storage: ${allocatable['ephemeral-storage'] || 'unknown'}`;
// Check for taints that might prevent scheduling
if (assignedNode.spec?.taints && assignedNode.spec.taints.length > 0) {
const taints = assignedNode.spec.taints.map((t) => `${t.key}=${t.value}:${t.effect}`).join(', ');
const taints = assignedNode.spec.taints
.map((t) => `${t.key}=${t.value}:${t.effect}`)
.join(', ');
message += `\n Node Taints: ${taints}`;
}
}
Generated Vendored
+1 -1
View File
File diff suppressed because one or more lines are too long