We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93c7749 commit 21e2feaCopy full SHA for 21e2fea
docs/source/user_guide/jobs/tabs/infra_config.rst
@@ -22,6 +22,13 @@
22
.with_shape_config_details(memory_in_gbs=16, ocpus=1)
23
# Minimum/Default block storage size is 50 (GB).
24
.with_block_storage_size(50)
25
+ # A maximum number of 5 file systems are allowed to be mounted for a job.
26
+ .with_storage_mount(
27
+ {
28
+ "src" : "<mount_target_ip_address>@<export_path>",
29
+ "dest" : "<destination_directory_name>"
30
+ }
31
+ )
32
)
33
34
.. code-tab:: yaml
@@ -40,3 +47,6 @@
40
47
ocpus: 1
41
48
shapeName: VM.Standard.E3.Flex
42
49
subnetId: <subnet_ocid>
50
+ storageMount:
51
+ - src: <mount_target_ip_address>@<export_path>
52
+ dest: <destination_directory_name>
0 commit comments