You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: notebooks/CLI.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,17 +39,17 @@ you will be prompted for your password and Okta credentials in a browser window
39
39
runai project set<my_project>
40
40
```
41
41
42
-
3. To run an `sydneyinformaticshub/dgx-interactive-gpu` container with an interactive terminal session including mounting your projects existing PVC in /scratch inside the container you can use the following command (be sure to replace everything in brackets `<...>` with values specific to your requirements):
42
+
3. To run an `sydneyinformaticshub/dgx-interactive-terminal` container with an interactive terminal session including mounting your projects existing PVC in /scratch inside the container you can use the following command (be sure to replace everything in brackets `<...>` with values specific to your requirements):
Here is a brief rundown of the arguments of the command above:
49
49
50
50
-`runai workspace submit <workspace-name>` will run a new workspace and give it the name specified in `<workspace-name>`
51
51
52
-
-`--image sydneyinformaticshub/dgx-interactive-gpu` will run the base Docker image located at `sydneyinformaticshub/dgx-interactive-gpu`, you can replace this image with your own, perhaps built yourself with extra package installs and using this image as a base
52
+
-`--image sydneyinformaticshub/dgx-interactive-terminal` will run the base Docker image located at `sydneyinformaticshub/dgx-interactive-terminal`, you can replace this image with your own, perhaps built yourself with extra package installs and using this image as a base
53
53
54
54
-`--gpu-devices-request 1 --cpu-core-request 1.0` requests 1 GPU and 1 CPU for the workflow. There are multiple options for selecting GPU and CPU RAM and devices, see [here](https://run-ai-docs.nvidia.com/self-hosted/2.22/reference/cli/runai/runai_workspace_submit) or use `runai wrkspace submit --help` for a full list of options
55
55
@@ -66,7 +66,7 @@ Using the CLI it is also possible to set up a workflow that persists in the back
66
66
To set this up follow the steps 1 and 2 above, then change the command in step 3 to:
Copy file name to clipboardExpand all lines: notebooks/data_transfer.md
+4-25Lines changed: 4 additions & 25 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,19 +6,19 @@ Here we assume you already have set up a [project](projects.md) and have some Pe
6
6
7
7
## Interactive data transfer to/from RDS from a web-browser
8
8
9
-
You can easily transfer data between your Persistent Volume Claim (PVC) and RDS from inside the Run:ai web browser interface. We have set up an [environment](environments.md) called `interactive_dt` for you to do this.
9
+
You can easily transfer data between your Persistent Volume Claim (PVC) and RDS from inside the Run:ai web browser interface. We have set up an [environment](environments.md) called `data-transfer` for you to do this.
10
10
11
-
To run the `interactive_dt` environment from a template:
11
+
To run the `data-transfer` environment from a template:
12
12
13
13
1. Log into the Run:ai dashboard at [gpu.sydney.edu.au](https://gpu.sydney.edu.au) and use Okta to login with your credentials via the "CONTINUE WITH SSO" sign in option.
14
14
15
15
2. Click 'workloads' in the left panel and then the blue 'new workload' icon in the top left of the workloads screen and select 'workspace'.
16
16
17
17

18
18
19
-
3. Select your project from the projects available and select the `interactive-data-transfer` template and give your workspace a name before clicking with your mouse cursor on CONTINUE.
19
+
3. Select your project from the projects available and select the `data-transfer` template and give your workspace a name before clicking with your mouse cursor on CONTINUE.
20
20
21
-
4. If you have selected the `interactive-data-transfer` template, you should now have pre-populated the required `interactive-dt` environment and the `data-transfer` compute resource fields on the following page. You can double check this now.
21
+
4. If you have selected the `data-transfer` template, you should now have pre-populated the required `data-transfer` environment and the `data-transfer` compute resource fields on the following page. You can double check this now.
22
22
23
23
5. Expand the `Data sources` box and select the PVC associated with your project from the list.
The above rsync will also perform integrity checking using a *checksum*, comparing the original and copied files to make sure they are identical.
66
66
67
67
During file transfer, for larger files, you can close the browser and leave things running in the background. You can then reconnect to check its status by logging back into the web UI at [gpu.sydney.edu.au](https://gpu.sydney.edu.au).
68
-
69
-
::: {.callout-warning}
70
-
71
-
# For early adopters
72
-
73
-
Until we have correct user IDs and group IDs for your unikey and project set up in the PVC and the running workflow, you will need to update the permissions of the mounted PVC as root to be able to read/write files from there. To do this:
74
-
75
-
1. Change to root
76
-
77
-
```bash
78
-
sudo su
79
-
```
80
-
81
-
2. Use chmod to set read and write for all on your mounted PVC space
82
-
83
-
```bash
84
-
chmod -R 666 <PVC_mount_point>
85
-
```
86
-
87
-
You must do these steps BEFORE running the `rsync` command above.
0 commit comments