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 21e2fea commit bfa5063Copy full SHA for bfa5063
docs/source/user_guide/jobs/tabs/quick_start_job.rst
@@ -24,6 +24,13 @@
24
.with_shape_config_details(memory_in_gbs=16, ocpus=1)
25
# Minimum/Default block storage size is 50 (GB).
26
.with_block_storage_size(50)
27
+ # A maximum number of 5 file systems are allowed to be mounted for a job.
28
+ .with_storage_mount(
29
+ {
30
+ "src" : "<mount_target_ip_address>@<export_path>",
31
+ "dest" : "<destination_directory_name>"
32
+ }
33
+ )
34
)
35
.with_runtime(
36
PythonRuntime()
@@ -59,6 +66,9 @@
59
66
ocpus: 1
60
67
shapeName: VM.Standard.E3.Flex
61
68
subnetId: <subnet_ocid>
69
+ storageMount:
70
+ - src: <mount_target_ip_address>@<export_path>
71
+ dest: <destination_directory_name>
62
72
runtime:
63
73
kind: runtime
64
74
type: python
0 commit comments