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: tools/pytorchjob-generator/chart/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,10 +15,10 @@ customize the Jobs generated by the tool.
15
15
16
16
| Key | Type | Default | Description |
17
17
|-----|------|---------|-------------|
18
-
| namespace | string | must be provided by user | The Kubernetes namespace in which the Job will run. |
19
18
| jobName | string | must be provided by user | Name of the Job. Will be the name of the AppWrapper and the PyTorchJob. |
19
+
| namespace | string |`nil`| Namespace in which to run the Job. If unspecified, the namespace will be inferred using normal Helm/Kubernetes mechanisms when the Job is submitted. |
20
20
| queueName | string |`"default-queue"`| Name of the local queue to which the Job will be submitted. |
21
-
| priority | string |`"default-priority"`| Type of priority for the job (choose from: "default-priority", "low-priority" or "high-priority"). WARNING: "high-priority" jobs need to be approved (We're watching you...)! |
21
+
| priority | string |`"default-priority"`| Type of priority for the job (choose from: "default-priority", "low-priority" or "high-priority"). |
22
22
| customLabels | array |`nil`| Optional array of custom labels to add to all the resources created by the Job (the PyTorchJob, the PodGroup, and the AppWrapper). |
23
23
| containerImage | string | must be provided by the user | Image used for creating the Job's containers (needs to have all the applications your job may need) |
24
24
| imagePullSecrets | array |`nil`| List of image-pull-secrets to be used for pulling containerImages |
Copy file name to clipboardExpand all lines: tools/pytorchjob-generator/chart/values.yaml
+5-6Lines changed: 5 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -2,21 +2,20 @@
2
2
# Job Metadata
3
3
####################
4
4
5
-
# -- (string) The Kubernetes namespace in which the Job will run.
6
-
# @default -- must be provided by user
7
-
# @section -- Job Metadata
8
-
namespace:
9
-
10
5
# -- (string) Name of the Job. Will be the name of the AppWrapper and the PyTorchJob.
11
6
# @default -- must be provided by user
12
7
# @section -- Job Metadata
13
8
jobName:
14
9
10
+
# -- (string) Namespace in which to run the Job. If unspecified, the namespace will be inferred using normal Helm/Kubernetes mechanisms when the Job is submitted.
11
+
# @section -- Job Metadata
12
+
namespace:
13
+
15
14
# -- (string) Name of the local queue to which the Job will be submitted.
16
15
# @section -- Job Metadata
17
16
queueName: "default-queue"
18
17
19
-
# -- (string) Type of priority for the job (choose from: "default-priority", "low-priority" or "high-priority"). WARNING: "high-priority" jobs need to be approved (We're watching you...)!
18
+
# -- (string) Type of priority for the job (choose from: "default-priority", "low-priority" or "high-priority").
0 commit comments