From e892e82fb5f55dc0c77feed51a36a06624d7035d Mon Sep 17 00:00:00 2001 From: Sarah Gibson Date: Fri, 20 Dec 2024 10:20:19 +0000 Subject: [PATCH] Clarify pod reattchment steps --- docs/howto/filesystem-management/data-transfer.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/howto/filesystem-management/data-transfer.md b/docs/howto/filesystem-management/data-transfer.md index 150348ac6..9c4fab6ea 100644 --- a/docs/howto/filesystem-management/data-transfer.md +++ b/docs/howto/filesystem-management/data-transfer.md @@ -71,7 +71,11 @@ export HUB_NAME= You can regain access to the pod created for the data transfer using: ```bash -kubectl --namespace $HUB_NAME attach -i ${CLUSTER_NAME}-root-home-shell +# Creates a new bash process within the pod +kubectl --namespace $HUB_NAME exec -it ${CLUSTER_NAME}-root-home-shell -- /bin/bash + +# Reattaches to the running screen process which is running the rsync process +screen -r ``` ## Switching the NFS servers over