2020-08-23 15:08:10 +01:00
|
|
|
# This test runs CRI-O and verifies via critest
|
|
|
|
import ./make-test-python.nix ({ pkgs, ... }: {
|
|
|
|
name = "cri-o";
|
2022-06-25 23:15:00 +01:00
|
|
|
meta.maintainers = with pkgs.lib; teams.podman.members;
|
2020-08-23 15:08:10 +01:00
|
|
|
|
|
|
|
nodes = {
|
|
|
|
crio = {
|
|
|
|
virtualisation.cri-o.enable = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
testScript = ''
|
|
|
|
start_all()
|
|
|
|
crio.wait_for_unit("crio.service")
|
|
|
|
crio.succeed(
|
|
|
|
"critest --ginkgo.focus='Runtime info' --runtime-endpoint unix:///var/run/crio/crio.sock"
|
|
|
|
)
|
|
|
|
'';
|
|
|
|
})
|