1{ lib, ... }:
2{
3 name = "cri-o";
4 meta.maintainers = lib.teams.podman.members;
5
6 nodes.crio = {
7 virtualisation.cri-o.enable = true;
8 };
9
10 testScript = ''
11 start_all()
12 crio.wait_for_unit("crio.service")
13 crio.succeed(
14 "critest --ginkgo.focus='Runtime info' --runtime-endpoint unix:///var/run/crio/crio.sock"
15 )
16 '';
17}