Hi! I'm using the following command to test out CRI-O:
sudo ~/go/bin/bucketbench run -b examples/crio.yaml
It gives the following error:
ERRO[0008] Command failed with error: error during bench validate: Driver validation: error creating test container: rpc error: code = Unknown desc = cri-o configured with systemd cgroup manager, but did not receive slice as parent: default
I was able to fix the error by changing
|
"cgroup_parent": "default", |
from
default to
default.slice, but this probably only applies to people using the systemd cgroup manager and would break anyone using cgroupfs.
Hi! I'm using the following command to test out CRI-O:
sudo ~/go/bin/bucketbench run -b examples/crio.yamlIt gives the following error:
I was able to fix the error by changing
bucketbench/contrib/sandbox_config.json
Line 36 in 4c8d0c2
defaulttodefault.slice, but this probably only applies to people using the systemd cgroup manager and would break anyone using cgroupfs.