Skip to content

Commit 0fd06ea

Browse files
committed
Update runtime.rst
1 parent 017e271 commit 0fd06ea

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

docs/source/user_guide/jobs/runtime.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,27 @@ by passing the ``uri`` to the ``with_custom_conda()`` method, for example:
5656
For more details on custom conda environment, see
5757
`Publishing a Conda Environment to an Object Storage Bucket in Your Tenancy <https://docs.oracle.com/en-us/iaas/data-science/using/conda_publishs_object.htm>`__.
5858

59+
Environment Variables
60+
=====================
5961

62+
63+
CLI Arguments
64+
=============
65+
66+
67+
Override Configuration
68+
======================
69+
70+
When you call ``job.run()``, a new job run will be started with the configuration defined in the **job**.
71+
You may want to override the configuration with custom variables. For example,
72+
you can customize job run display name, override command line argument, specify additional environment variables,
73+
and add free form tags:
74+
75+
.. code-block:: python3
76+
77+
job_run = job.run(
78+
name="<my_job_run_name>",
79+
args="new_arg --new_key new_val",
80+
env_var={"new_env": "new_val"},
81+
freeform_tags={"new_tag": "new_tag_val"}
82+
)

0 commit comments

Comments
 (0)