Skip to content

Commit

Permalink
Clarify pod reattchment steps
Browse files Browse the repository at this point in the history
  • Loading branch information
sgibson91 committed Dec 20, 2024
1 parent 27a5fcf commit 4c386fa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/howto/filesystem-management/data-transfer.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,11 @@ export HUB_NAME=<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
Expand Down

0 comments on commit 4c386fa

Please sign in to comment.