Skip to content

Commit 6fc8d97

Browse files
authored
allow queue-name label to be disabled (#91)
1 parent c990de5 commit 6fc8d97

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

tools/pytorchjob-generator/chart/templates/appwrapper.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,13 @@ metadata:
7676
{{- if .Values.deletionOnFailureGracePeriodDuration }}
7777
workload.codeflare.dev.appwrapper/deletionOnFailureGracePeriodDuration: "{{ .Values.deletionOnFailureGracePeriodDuration }}"
7878
{{- end }}
79+
{{- if or .Values.queueName .Values.customLabels }}
7980
labels:
81+
{{- if .Values.queueName }}
8082
kueue.x-k8s.io/queue-name: {{ .Values.queueName }}
83+
{{- end }}
8184
{{- include "mlbatch.customLabels" . | indent 8 }}
85+
{{- end }}
8286
spec:
8387
components:
8488
- template:

tools/pytorchjob-generator/chart/tests/helloworld_test.yaml

+8-1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,13 @@ tests:
7171
- isEmpty:
7272
path: spec.components[0].template.spec.pytorchReplicaSpecs.Worker.template.spec.containers[0].volumeMounts
7373

74+
- it: queueName can be disabled
75+
set:
76+
queueName:
77+
asserts:
78+
- notExists:
79+
path: metadata.labels
80+
7481
- it: Enabling sshGitConfig injects the envvars, volumes, and volumeMounts
7582
set:
7683
sshGitCloneConfig.secretName: my-git-secret
@@ -157,7 +164,7 @@ tests:
157164
workload.codeflare.dev.appwrapper/forcefulDeletionGracePeriodDuration: "19s"
158165
workload.codeflare.dev.appwrapper/deletionOnFailureGracePeriodDuration: "2s"
159166

160-
- it: Setting jsut one tolerance annotation
167+
- it: Setting just one tolerance annotation
161168
set:
162169
deletionOnFailureGracePeriodDuration: "6h"
163170
asserts:

tools/pytorchjob-generator/chart/values.schema.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@
1010
"properties": {
1111
"namespace": { "$ref": "#/$defs/rfc1123Label" },
1212
"jobName": { "type": "string" },
13-
"queueName": { "$ref": "#/$defs/rfc1123Label" },
13+
"queueName": { "oneOf": [
14+
{ "type": "null" },
15+
{ "$ref": "#/$defs/rfc1123Label" }
16+
]},
1417
"priority": { "type": "string", "enum": [ "default-priority", "low-priority", "high-priority" ] },
1518
"customLabels": { "oneOf": [
1619
{ "type": "null" },

0 commit comments

Comments
 (0)