We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a892b00 commit 03b9ef3Copy full SHA for 03b9ef3
e2e-tests/functions
@@ -1389,11 +1389,11 @@ deploy_chaos_mesh() {
1389
container_runtime="containerd"
1390
socket_path="/run/containerd/containerd.sock"
1391
elif [[ $current_runtime == 'docker' ]]; then
1392
- container_runtime=docker
1393
- socket_path=/var/run/docker.sock
+ container_runtime="docker"
+ socket_path="/var/run/docker.sock"
1394
elif [[ $current_runtime == 'cri-o' ]]; then
1395
- container_runtime=crio
1396
- socket_path=/var/run/crio/crio.sock
+ container_runtime="crio"
+ socket_path="/var/run/crio/crio.sock"
1397
else
1398
echo "Unknown runtime: $current_runtime"
1399
exit 1
0 commit comments