You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The test cluster has four nodes, but Cilium is deployed on only two, while the other two are reserved for extra tests. Which is equivalent to a two nodes cluster.
The echo-other-node pod is scheduled on chart-testing-worker, with a required anti-affinity targeting the client pod;
The client3 pod is scheduled on chart-testing-control-plane, with a required anti-affinity targeting the client pod;
Which makes it impossible to schedule the client pod, as both ready nodes are forbidden by the anti-affinity rules:
0/4 nodes are available: 2 node(s) didn''t match pod affinity/anti-affinity,
2 node(s) didn''t satisfy existing pods anti-affinity rules, 2 node(s) had
taint {node.kubernetes.io/not-ready: }, that the pod didn''t tolerate.
And in turn the client2 and echo-same-node pods are also unschedulable, because of the required affinity targeting the client pod.
The `client3 pod got recently introduced in #2183.
The text was updated successfully, but these errors were encountered:
Hit on a CI run: https://github.com/cilium/cilium-cli/actions/runs/7259322671/job/19826588396?pr=2194
The test cluster has four nodes, but Cilium is deployed on only two, while the other two are reserved for extra tests. Which is equivalent to a two nodes cluster.
Pods:
Specifically:
echo-other-node
pod is scheduled onchart-testing-worker
, with a required anti-affinity targeting theclient
pod;client3
pod is scheduled onchart-testing-control-plane
, with a required anti-affinity targeting theclient
pod;Which makes it impossible to schedule the
client
pod, as both ready nodes are forbidden by the anti-affinity rules:And in turn the
client2
andecho-same-node pods
are also unschedulable, because of the required affinity targeting theclient
pod.The `client3 pod got recently introduced in #2183.
The text was updated successfully, but these errors were encountered: