0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-19 16:40:32 +03:00
nixpkgs/nixos/tests/cri-o.nix
2025-07-04 20:59:41 +08:00

17 lines
348 B
Nix

{ lib, ... }:
{
name = "cri-o";
meta.maintainers = lib.teams.podman.members;
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"
)
'';
}