at 25.11-pre 493 B view raw
1# This test runs CRI-O and verifies via critest 2import ./make-test-python.nix ( 3 { pkgs, ... }: 4 { 5 name = "cri-o"; 6 meta.maintainers = with pkgs.lib; teams.podman.members; 7 8 nodes = { 9 crio = { 10 virtualisation.cri-o.enable = true; 11 }; 12 }; 13 14 testScript = '' 15 start_all() 16 crio.wait_for_unit("crio.service") 17 crio.succeed( 18 "critest --ginkgo.focus='Runtime info' --runtime-endpoint unix:///var/run/crio/crio.sock" 19 ) 20 ''; 21 } 22)