Robert Kaussow
2a5e12dcad
All checks were successful
continuous-integration/drone/push Build is passing
34 lines
894 B
Python
34 lines
894 B
Python
import json
|
|
import os
|
|
|
|
import testinfra.utils.ansible_runner
|
|
|
|
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
|
os.environ["MOLECULE_INVENTORY_FILE"]
|
|
).get_hosts("all")
|
|
|
|
|
|
def test_k3s_running_and_enabled(host):
|
|
k3s = host.service("k3s")
|
|
assert k3s.is_running
|
|
assert k3s.is_enabled
|
|
|
|
|
|
def test_k3s_node_ready(host):
|
|
jsonpth = '{range .items[*]}{@.metadata.name}:{range @.status.conditions[?(@.type=="Ready")]}{@.type}={@.status};{end}{end}' # noqa
|
|
nodes = host.run(f"k3s kubectl get nodes -o jsonpath='{jsonpth}'").stdout
|
|
|
|
assert "rocky9-k3s:Ready=True;" in nodes
|
|
|
|
|
|
def test_k3s_cluster_ready(host):
|
|
cluster = host.run("k3s kubectl get --raw='/readyz'").stdout
|
|
|
|
assert cluster == "ok"
|
|
|
|
|
|
def test_k3s_cni(host):
|
|
cni = json.loads(host.file("/etc/cni/net.d/10-calico.conflist").content_string)
|
|
|
|
assert cni["plugins"][0]["type"] == "calico"
|