echo "Getting list of containers running under gVisor" runsc --root /run/containerd/runsc/k8s.io list echo "Getting the ID of the untrusted pod" POD_ID=$(crictl -r unix:///var/run/containerd/containerd.sock pods --name untrusted -q) echo "Getting the ID of the webserver container in the untrusted pod" CONTAINER_ID=$(crictl -r unix:///var/run/containerd/containerd.sock ps -p ${POD_ID} -q) echo "Displaying the processes running inside the webserver container" runsc --root /run/containerd/runsc/k8s.io ps ${CONTAINER_ID}