Hello @tamama3
Typically, when encountering the error message "Failed to exec command in pod command terminated with exit code 137," it indicates that the process was unable to finish due to insufficient resources allocated to the pod.
As an initial troubleshooting step to address this issue, attempt to modify the resource limits for the restore pod in your recovery cluster by utilizing the following parameter in the helm command.
for example:
--set genericVolumeSnapshot.resources.requests.cpu=100m
--set genericVolumeSnapshot.resources.requests.memory=800Mi
--set genericVolumeSnapshot.resources.limits.cpu=1200m
--set genericVolumeSnapshot.resources.limits.memory=4000Mi
Here is a full example, you need to replace the K10 version
helm upgrade k10 kasten/k10 --namespace=kasten-io --reuse-values --set genericVolumeSnapshot.resources.requests.cpu=100m \
--set genericVolumeSnapshot.resources.requests.memory=800Mi \
--set genericVolumeSnapshot.resources.limits.cpu=1200m \
--set genericVolumeSnapshot.resources.limits.memory=4000Mi \
--version=<CURRENT_VERSION>