Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the flags in data transfer docs #5371

Merged
merged 1 commit into from
Jan 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/howto/filesystem-management/data-transfer.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ export HUB_NAME=<hub_name>
1. **Create a pod on the cluster and mount the source and destination NFS servers.**

We can use the following deployer command to create a pod in the cluster with the two NFS servers mounted.
The current default NFS will be mounted automatically and we use `--extra-nfs-*` flags to mount the second NFS.
The current default NFS will be mounted automatically and we use `--additional-nfs-*` flags to mount the second NFS.

```bash
deployer exec root-homes $CLUSTER_NAME $HUB_NAME \
--extra-nfs-server=$SERVER_IP \
--extra-nfs-base-path="/" \
--extra-nfs-mount-path="dest-fs" \
--additional-nfs-server=$SERVER_IP \
--additional-nfs-base-path="/" \
--additional-nfs-mount-path="dest-fs" \
--persist
```

Expand Down