Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions newsfragments/595.internal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Tests : Dont check services matching labels against terminating pods.
5 changes: 5 additions & 0 deletions tests/integration/test_networking.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ async def test_services_have_matching_labels(
label_selectors = {label: value for label, value in service.spec.selector.items()}

async for pod in kube_client.list(Pod, namespace=generated_data.ess_namespace, labels=label_selectors):
if pod.status and pod.status.phase == "Terminating":
Comment thread
gaelgatelement marked this conversation as resolved.
continue # Skip terminating pods
assert service.metadata, f"Encountered a service without metadata : {service}"
assert pod.metadata, f"Encountered a pod without metadata : {pod}"
assert pod.metadata.labels, f"Encountered a pod without labels : {pod}"
Expand All @@ -55,6 +57,9 @@ async def test_services_have_matching_labels(
assert label.replace("k8s.element.io/target-", "app.kubernetes.io/") in pod.metadata.labels
assert value.startswith(
pod.metadata.labels[label.replace("k8s.element.io/target-", "app.kubernetes.io/")]
), (
f"{pod.metadata.name} does not have the correct label {label}={value} "
f"(pod status phase : {pod.status.phase if pod.status else 'N/A'}"
)


Expand Down
Loading