mirror of
https://github.com/techno-tim/k3s-ansible.git
synced 2026-08-08 23:13:19 +02:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 21f7317ab8 | |||
| fcdbf68ba3 |
@@ -1,15 +1,20 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
"""Regression test for the MetalLB namespace existence check.
|
"""Regression test for the MetalLB converge checks.
|
||||||
|
|
||||||
The "Test metallb-system namespace" task in
|
The MetalLB tasks in roles/k3s_server_post/tasks/metallb.yml must actually
|
||||||
roles/k3s_server_post/tasks/metallb.yml must actually verify the namespace
|
verify resources through an explicit kubectl get, and must retry on a
|
||||||
exists. A previous version ran `k3s kubectl -n metallb-system` with no
|
transient kube API error while MetalLB converges.
|
||||||
subcommand, which only printed a usage page and always exited 0, so the task
|
|
||||||
always succeeded even when the namespace did not exist (issue #350).
|
|
||||||
|
|
||||||
This test loads the real task and asserts the command performs an explicit
|
The "Test metallb-system namespace" task previously ran `k3s kubectl -n
|
||||||
`get namespace metallb-system`, which returns non-zero when the namespace is
|
metallb-system` with no subcommand, which only printed a usage page and always
|
||||||
absent.
|
exited 0, so it always succeeded even when the namespace did not exist (issue
|
||||||
|
#350). It must instead run an explicit `get namespace metallb-system`, which
|
||||||
|
returns non-zero when the namespace is absent.
|
||||||
|
|
||||||
|
An explicit get actually contacts the API server, so these tasks need the same
|
||||||
|
retry wiring as their siblings (register, until rc == 0, retries, delay). A
|
||||||
|
bare get with no retry would otherwise abort the converge play on a transient
|
||||||
|
kube API error while MetalLB converges.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
@@ -27,9 +32,53 @@ def repo_root():
|
|||||||
|
|
||||||
|
|
||||||
def fail(message):
|
def fail(message):
|
||||||
raise SystemExit(
|
raise SystemExit("MetalLB namespace test failed: " + message)
|
||||||
"MetalLB namespace test failed: " + message
|
|
||||||
)
|
|
||||||
|
def find_task(tasks, name):
|
||||||
|
for entry in tasks:
|
||||||
|
if entry.get("name") == name:
|
||||||
|
return entry
|
||||||
|
fail("could not find the '{0}' task".format(name))
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
def command_text(task):
|
||||||
|
cmd = task.get("ansible.builtin.command")
|
||||||
|
if not cmd:
|
||||||
|
cmd = task.get("command")
|
||||||
|
if not cmd:
|
||||||
|
fail("task does not use ansible.builtin.command")
|
||||||
|
return cmd if isinstance(cmd, str) else " ".join(cmd)
|
||||||
|
|
||||||
|
|
||||||
|
def check_explicit_get(task, name, needle):
|
||||||
|
text = command_text(task)
|
||||||
|
if needle not in text:
|
||||||
|
fail(
|
||||||
|
"command does not run '{0}'; the task would only print usage and "
|
||||||
|
"never verify the resource (got: {1!r})".format(needle, text)
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def check_retry_wiring(task, name):
|
||||||
|
# The sibling k3s_server_post metallb tasks retry kubectl because the kube
|
||||||
|
# API can briefly be unavailable while MetalLB converges. Without the same
|
||||||
|
# retry, a transient API error aborts the whole converge play.
|
||||||
|
if not task.get("register"):
|
||||||
|
fail(
|
||||||
|
"{0} does not register a result; without retry wiring a transient "
|
||||||
|
"kube API error aborts the converge play".format(name)
|
||||||
|
)
|
||||||
|
if not isinstance(task.get("until"), str) or "rc == 0" not in task["until"]:
|
||||||
|
fail(
|
||||||
|
"{0} does not retry on rc == 0; the kube API can transiently fail "
|
||||||
|
"while MetalLB converges and abort the play".format(name)
|
||||||
|
)
|
||||||
|
if task.get("retries") is None:
|
||||||
|
fail("{0} is missing retries".format(name))
|
||||||
|
if task.get("delay") is None:
|
||||||
|
fail("{0} is missing delay".format(name))
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
@@ -39,31 +88,18 @@ def main():
|
|||||||
with open(task_file, encoding="utf-8") as handle:
|
with open(task_file, encoding="utf-8") as handle:
|
||||||
tasks = yaml.safe_load(handle)
|
tasks = yaml.safe_load(handle)
|
||||||
|
|
||||||
task = None
|
namespace_task = find_task(tasks, "Test metallb-system namespace")
|
||||||
for entry in tasks:
|
|
||||||
if entry.get("name") == "Test metallb-system namespace":
|
|
||||||
task = entry
|
|
||||||
break
|
|
||||||
if task is None:
|
|
||||||
fail("could not find the 'Test metallb-system namespace' task")
|
|
||||||
|
|
||||||
cmd = task.get("ansible.builtin.command")
|
|
||||||
if not cmd:
|
|
||||||
cmd = task.get("command")
|
|
||||||
if not cmd:
|
|
||||||
fail("task does not use ansible.builtin.command")
|
|
||||||
|
|
||||||
command_text = cmd if isinstance(cmd, str) else " ".join(cmd)
|
|
||||||
|
|
||||||
# A bare `-n metallb-system` with no subcommand prints kubectl usage and
|
# A bare `-n metallb-system` with no subcommand prints kubectl usage and
|
||||||
# always exits 0, so it never proves the namespace exists. The fix must
|
# always exits 0, so it never proves the namespace exists. The fix must
|
||||||
# use an explicit get.
|
# use an explicit get.
|
||||||
if "get namespace metallb-system" not in command_text:
|
check_explicit_get(namespace_task, "Test metallb-system namespace",
|
||||||
fail(
|
"get namespace metallb-system")
|
||||||
"command does not run 'get namespace metallb-system'; "
|
check_retry_wiring(namespace_task, "Test metallb-system namespace")
|
||||||
"the task would only print usage and never verify the namespace "
|
|
||||||
"(got: {0!r})".format(command_text)
|
webhook_task = find_task(tasks, "Test metallb-system webhook-service endpoint")
|
||||||
)
|
check_explicit_get(webhook_task, "Test metallb-system webhook-service endpoint",
|
||||||
|
"get endpoints")
|
||||||
|
check_retry_wiring(webhook_task, "Test metallb-system webhook-service endpoint")
|
||||||
|
|
||||||
print("MetalLB namespace check regression test passed")
|
print("MetalLB namespace check regression test passed")
|
||||||
|
|
||||||
|
|||||||
@@ -42,6 +42,12 @@
|
|||||||
ansible.builtin.command: >-
|
ansible.builtin.command: >-
|
||||||
{{ k3s_kubectl_binary | default('k3s kubectl') }} get namespace metallb-system
|
{{ k3s_kubectl_binary | default('k3s kubectl') }} get namespace metallb-system
|
||||||
changed_when: false
|
changed_when: false
|
||||||
|
# The kube API can briefly return ServiceUnavailable while MetalLB converges,
|
||||||
|
# which would otherwise abort the whole converge play on a transient error.
|
||||||
|
register: metallb_namespace_result
|
||||||
|
until: metallb_namespace_result.rc == 0
|
||||||
|
retries: "{{ download_retries }}"
|
||||||
|
delay: "{{ download_delay }}"
|
||||||
with_items: "{{ groups[group_name_master | default('master')] }}"
|
with_items: "{{ groups[group_name_master | default('master')] }}"
|
||||||
run_once: true
|
run_once: true
|
||||||
|
|
||||||
@@ -99,6 +105,12 @@
|
|||||||
ansible.builtin.command: >-
|
ansible.builtin.command: >-
|
||||||
{{ k3s_kubectl_binary | default('k3s kubectl') }} -n metallb-system get endpoints {{ metallb_webhook_service_name }}
|
{{ k3s_kubectl_binary | default('k3s kubectl') }} -n metallb-system get endpoints {{ metallb_webhook_service_name }}
|
||||||
changed_when: false
|
changed_when: false
|
||||||
|
# The kube API can briefly return ServiceUnavailable while MetalLB converges,
|
||||||
|
# which would otherwise abort the whole converge play on a transient error.
|
||||||
|
register: metallb_webhook_result
|
||||||
|
until: metallb_webhook_result.rc == 0
|
||||||
|
retries: "{{ download_retries }}"
|
||||||
|
delay: "{{ download_delay }}"
|
||||||
with_items: "{{ groups[group_name_master | default('master')] }}"
|
with_items: "{{ groups[group_name_master | default('master')] }}"
|
||||||
run_once: true
|
run_once: true
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user