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: docs/admin/admin-ui-setup/project-setup.md
+48-1Lines changed: 48 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -100,14 +100,14 @@ To view a project policy:
100
100
* Default
101
101
* Source
102
102
103
-
104
103
## Other Project Properties
105
104
106
105
### Download Project Table
107
106
108
107
You can download the Projects table to a CSV file. Downloading a CSV can provide a snapshot history of your projects over the course of time, and help with compliance tracking. All the columns that are selected (displayed) in the table will be downloaded to the file.
109
108
110
109
To download the Projects table to a CSV:
110
+
111
111
1. Open *Projects*.
112
112
2. From the *Columns* icon, select the columns you would like to have displayed in the table.
113
113
3. Click on the ellipsis labeled *More*, and download the CSV.
@@ -229,6 +229,53 @@ To set a duration limit for Training Jobs:
229
229
230
230
The setting only takes effect for Jobs that have started after the duration has been changed.
231
231
232
+
## Setting Run:ai as default scheduler per Project/Namespace
233
+
234
+
By default, Kubernetes will use its native scheduler to schedule any type of submitted workload. However, Kubernetes also provides a standard way to use other schedulers such as Run:ai. This is done by adding to the submitted container workload’s YAML file:
235
+
236
+
`schedulerName: runai-scheduler`
237
+
238
+
There may be cases where you cannot change the YAML file and still want to use the Run:ai Scheduler to schedule those workloads. For these cases, another option is to configure the Run:ai Scheduler as the default scheduler for a specific namespace (Project). This will now make any workload type that is submitted to that namespace (Project) use the Run:ai scheduler. To configure this, add the following annotation on the namespace itself:
239
+
240
+
`runai/enforce-scheduler-name: true`
241
+
242
+
### Example
243
+
244
+
To annotate a project named `proj-a`, use the following command:
0 commit comments