Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: check label_selector child targets with load_balancer_status filter #552

Merged
merged 3 commits into from
Aug 16, 2024
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
35 changes: 22 additions & 13 deletions plugins/filter/all.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,29 +11,38 @@ def load_balancer_status(load_balancer: dict, *args, **kwargs) -> Literal["unkno
"""
Return the status of a Load Balancer based on its targets.
"""
try:
result = "healthy"
for target in load_balancer["targets"]:
target_health_status = target.get("health_status")

# Report missing health status as unknown
if not target_health_status:
result = "unknown"
continue
def targets_status(targets: list) -> Literal["unknown", "unhealthy", "healthy"]:
result = "healthy"

for health_status in target_health_status:
status = health_status.get("status")
if status == "healthy":
continue
for target in targets:
# Label selector targets have child targets that must be checked
if target["type"] == "label_selector":
status = targets_status(target["targets"])
if status == "unhealthy":
return "unhealthy"

if status in (None, "unknown"):
result = "unknown"
continue

continue

# Report missing health status as unknown
if not target.get("health_status"):
return "unknown"

for health_status in target.get("health_status"):
status = health_status.get("status")
if status == "unhealthy":
return "unhealthy"

if status in (None, "unknown"):
result = "unknown"

return result

try:
return targets_status(load_balancer["targets"])
except Exception as exc:
raise AnsibleFilterError(f"load_balancer_status - {to_native(exc)}", orig_exc=exc) from exc

Expand Down
8 changes: 4 additions & 4 deletions tests/integration/targets/filter_all/tasks/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
ansible.builtin.set_fact:
load_balancer_status_healthy: >-
{{ { "targets": [
{"health_status": [{"status": "healthy"}]},
{"health_status": [{"status": "healthy"}]},
{ "type": "server", "health_status": [{ "status": "healthy" }]},
{ "type": "label_selector", "targets": [{ "type": "server", "health_status": [{ "status": "healthy" }] }]}
]} | hetzner.hcloud.load_balancer_status }}

load_balancer_status_healthy_and_unhealthy: >-
{{ { "targets": [
{"health_status": [{"status": "healthy"}, {"status": "unhealthy"}]},
{"health_status": [{"status": "healthy"}, {"status": "healthy"}]},
{ "type": "server", "health_status": [{ "status": "healthy" }, { "status": "unhealthy" }]},
{ "type": "label_selector", "targets": [{ "type": "server", "health_status": [{ "status": "healthy" }, { "status": "unhealthy" }] }]}
]} | hetzner.hcloud.load_balancer_status }}

- name: Verify filter load_balancer_status
Expand Down
64 changes: 32 additions & 32 deletions tests/unit/filter/test_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,39 +4,39 @@

from plugins.filter.all import load_balancer_status


def _lb_target_server(status: str) -> dict:
return {"type": "server", "health_status": [{"status": status}]}


def _lb_target_label_selector(status: str) -> dict:
return {"type": "label_selector", "targets": [_lb_target_server(status)]}


LOAD_BALANCER_STATUS_TEST_CASES = (
({"targets": [{"health_status": []}]}, "unknown"),
({"targets": [{"health_status": [{}]}]}, "unknown"),
({"targets": [{"health_status": [{"status": "unknown"}]}]}, "unknown"),
({"targets": [{"health_status": [{"status": "unhealthy"}]}]}, "unhealthy"),
({"targets": [{"health_status": [{"status": "healthy"}]}]}, "healthy"),
(
{
"targets": [
{"health_status": [{"status": "healthy"}]},
{"health_status": [{"status": "healthy"}]},
]
},
"healthy",
),
(
{
"targets": [
{"health_status": [{"status": "healthy"}, {"status": "unhealthy"}]},
{"health_status": [{"status": "healthy"}, {"status": "unknown"}]},
]
},
"unhealthy",
),
(
{
"targets": [
{"health_status": [{"status": "healthy"}]},
{"health_status": [{"status": "unhealthy"}]},
]
},
"unhealthy",
),
({"targets": [{"type": "server", "health_status": []}]}, "unknown"),
({"targets": [{"type": "server", "health_status": [{}]}]}, "unknown"),
({"targets": [_lb_target_server("healthy")]}, "healthy"),
({"targets": [_lb_target_server("unhealthy")]}, "unhealthy"),
({"targets": [_lb_target_server("unknown")]}, "unknown"),
({"targets": [_lb_target_label_selector("healthy"), _lb_target_server("healthy")]}, "healthy"),
({"targets": [_lb_target_label_selector("healthy"), _lb_target_server("unhealthy")]}, "unhealthy"),
({"targets": [_lb_target_label_selector("healthy"), _lb_target_server("unknown")]}, "unknown"),
({"targets": [_lb_target_label_selector("unhealthy"), _lb_target_server("healthy")]}, "unhealthy"),
({"targets": [_lb_target_label_selector("unhealthy"), _lb_target_server("unhealthy")]}, "unhealthy"),
({"targets": [_lb_target_label_selector("unhealthy"), _lb_target_server("unknown")]}, "unhealthy"),
({"targets": [_lb_target_label_selector("unknown"), _lb_target_server("healthy")]}, "unknown"),
({"targets": [_lb_target_label_selector("unknown"), _lb_target_server("unhealthy")]}, "unhealthy"),
({"targets": [_lb_target_label_selector("unknown"), _lb_target_server("unknown")]}, "unknown"),
({"targets": [_lb_target_server("healthy"), _lb_target_label_selector("healthy")]}, "healthy"),
({"targets": [_lb_target_server("healthy"), _lb_target_label_selector("unhealthy")]}, "unhealthy"),
({"targets": [_lb_target_server("healthy"), _lb_target_label_selector("unknown")]}, "unknown"),
({"targets": [_lb_target_server("unhealthy"), _lb_target_label_selector("healthy")]}, "unhealthy"),
({"targets": [_lb_target_server("unhealthy"), _lb_target_label_selector("unhealthy")]}, "unhealthy"),
({"targets": [_lb_target_server("unhealthy"), _lb_target_label_selector("unknown")]}, "unhealthy"),
({"targets": [_lb_target_server("unknown"), _lb_target_label_selector("healthy")]}, "unknown"),
({"targets": [_lb_target_server("unknown"), _lb_target_label_selector("unhealthy")]}, "unhealthy"),
({"targets": [_lb_target_server("unknown"), _lb_target_label_selector("unknown")]}, "unknown"),
)


Expand Down