-
Notifications
You must be signed in to change notification settings - Fork 988
Expand file tree
/
Copy pathtrainjob_test.go
More file actions
420 lines (402 loc) · 18.6 KB
/
Copy pathtrainjob_test.go
File metadata and controls
420 lines (402 loc) · 18.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
/*
Copyright 2024 The Kubeflow Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package webhooks
import (
"github.com/onsi/ginkgo/v2"
"github.com/onsi/gomega"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/apimachinery/pkg/util/intstr"
"k8s.io/utils/ptr"
"sigs.k8s.io/controller-runtime/pkg/client"
trainer "github.com/kubeflow/trainer/v2/pkg/apis/trainer/v1alpha1"
"github.com/kubeflow/trainer/v2/pkg/constants"
testingutil "github.com/kubeflow/trainer/v2/pkg/util/testing"
"github.com/kubeflow/trainer/v2/test/integration/framework"
"github.com/kubeflow/trainer/v2/test/util"
)
var _ = ginkgo.Describe("TrainJob Webhook", ginkgo.Ordered, func() {
var ns *corev1.Namespace
var trainingRuntime *trainer.TrainingRuntime
var clusterTrainingRuntime *trainer.ClusterTrainingRuntime
runtimeName := "training-runtime"
jobName := "train-job"
ginkgo.BeforeAll(func() {
fwk = &framework.Framework{}
cfg = fwk.Init()
ctx, k8sClient = fwk.RunManager(cfg, false)
})
ginkgo.AfterAll(func() {
fwk.Teardown()
})
ginkgo.BeforeEach(func() {
ns = &corev1.Namespace{
TypeMeta: metav1.TypeMeta{
APIVersion: corev1.SchemeGroupVersion.String(),
Kind: "Namespace",
},
ObjectMeta: metav1.ObjectMeta{
GenerateName: "trainjob-webhook-",
},
}
gomega.Expect(k8sClient.Create(ctx, ns)).To(gomega.Succeed())
baseRuntimeWrapper := testingutil.MakeTrainingRuntimeWrapper(ns.Name, runtimeName)
baseClusterRuntimeWrapper := testingutil.MakeClusterTrainingRuntimeWrapper(runtimeName)
trainingRuntime = baseRuntimeWrapper.RuntimeSpec(
testingutil.MakeTrainingRuntimeSpecWrapper(
testingutil.MakeTrainingRuntimeWrapper(ns.Name, runtimeName).Spec).Obj()).Obj()
clusterTrainingRuntime = baseClusterRuntimeWrapper.RuntimeSpec(
testingutil.MakeTrainingRuntimeSpecWrapper(
testingutil.MakeClusterTrainingRuntimeWrapper(runtimeName).Spec).Obj()).Obj()
gomega.Expect(k8sClient.Create(ctx, trainingRuntime)).To(gomega.Succeed())
gomega.Expect(k8sClient.Create(ctx, clusterTrainingRuntime)).To(gomega.Succeed())
gomega.Eventually(func(g gomega.Gomega) {
g.Expect(k8sClient.Get(ctx, client.ObjectKeyFromObject(trainingRuntime), trainingRuntime)).Should(gomega.Succeed())
}, util.Timeout, util.Interval).Should(gomega.Succeed())
gomega.Eventually(func(g gomega.Gomega) {
g.Expect(k8sClient.Get(ctx, client.ObjectKeyFromObject(clusterTrainingRuntime), clusterTrainingRuntime)).Should(gomega.Succeed())
}, util.Timeout, util.Interval).Should(gomega.Succeed())
})
ginkgo.AfterEach(func() {
gomega.Expect(k8sClient.DeleteAllOf(ctx, &trainer.TrainJob{}, client.InNamespace(ns.Name))).To(gomega.Succeed())
gomega.Expect(k8sClient.DeleteAllOf(ctx, &trainer.TrainingRuntime{}, client.InNamespace(ns.Name))).To(gomega.Succeed())
gomega.Expect(k8sClient.DeleteAllOf(ctx, &trainer.ClusterTrainingRuntime{})).To(gomega.Succeed())
})
ginkgo.When("Creating TrainJob", func() {
ginkgo.DescribeTable("Validate TrainJob on creation", func(trainJob func() *trainer.TrainJob, errorMatcher gomega.OmegaMatcher) {
gomega.Expect(k8sClient.Create(ctx, trainJob())).Should(errorMatcher)
},
ginkgo.Entry("Should succeed in creating trainJob with namespace scoped trainingRuntime",
func() *trainer.TrainJob {
return testingutil.MakeTrainJobWrapper(ns.Name, jobName).
RuntimeRef(trainer.GroupVersion.WithKind(trainer.TrainingRuntimeKind), runtimeName).
Obj()
},
gomega.Succeed()),
ginkgo.Entry("Should fail in creating trainJob referencing trainingRuntime not present in the namespace",
func() *trainer.TrainJob {
return testingutil.MakeTrainJobWrapper(ns.Name, jobName).
RuntimeRef(trainer.GroupVersion.WithKind(trainer.TrainingRuntimeKind), "invalid").
Obj()
},
testingutil.BeForbiddenError()),
ginkgo.Entry("Should succeed in creating trainJob with namespace scoped trainingRuntime",
func() *trainer.TrainJob {
return testingutil.MakeTrainJobWrapper(ns.Name, jobName).
RuntimeRef(trainer.GroupVersion.WithKind(trainer.ClusterTrainingRuntimeKind), runtimeName).
Obj()
},
gomega.Succeed()),
ginkgo.Entry("Should fail in creating trainJob with pre-trained model config when referencing a trainingRuntime without an initializer",
func() *trainer.TrainJob {
newContainers := []corev1.Container{}
// TODO (andreyvelich): Refactor this test to check ancestor label.
job := &trainingRuntime.Spec.Template.Spec.ReplicatedJobs[1]
for _, container := range job.Template.Spec.Template.Spec.Containers {
if container.Name != constants.ModelInitializer {
newContainers = append(newContainers, container)
}
}
job.Template.Spec.Template.Spec.Containers = newContainers
gomega.Expect(k8sClient.Update(ctx, trainingRuntime)).To(gomega.Succeed())
return testingutil.MakeTrainJobWrapper(ns.Name, jobName).
RuntimeRef(trainer.GroupVersion.WithKind(trainer.TrainingRuntimeKind), runtimeName).
Initializer(
testingutil.MakeTrainJobInitializerWrapper().
ModelInitializer(
testingutil.MakeTrainJobModelInitializerWrapper().
StorageUri("hf://trainjob-model").
Obj(),
).
Obj(),
).
Obj()
},
testingutil.BeForbiddenError()),
ginkgo.Entry("Should fail in creating trainJob with dataset initializer when referencing a trainingRuntime without an initializer",
func() *trainer.TrainJob {
newContainers := []corev1.Container{}
job := &trainingRuntime.Spec.Template.Spec.ReplicatedJobs[0]
for _, container := range job.Template.Spec.Template.Spec.Containers {
if container.Name != constants.DatasetInitializer {
newContainers = append(newContainers, container)
}
}
job.Template.Spec.Template.Spec.Containers = newContainers
gomega.Expect(k8sClient.Update(ctx, trainingRuntime)).To(gomega.Succeed())
return testingutil.MakeTrainJobWrapper(ns.Name, jobName).
RuntimeRef(trainer.GroupVersion.WithKind(trainer.TrainingRuntimeKind), runtimeName).
Initializer(
testingutil.MakeTrainJobInitializerWrapper().
DatasetInitializer(
testingutil.MakeTrainJobDatasetInitializerWrapper().
StorageUri("hf://trainjob-model").
Obj(),
).
Obj(),
).
Obj()
},
testingutil.BeForbiddenError()),
ginkgo.Entry("Should succeed in creating trainJob with dataset initializer when referencing a ClusterTrainingRuntime with an initializer",
func() *trainer.TrainJob {
return testingutil.MakeTrainJobWrapper(ns.Name, jobName).
RuntimeRef(trainer.GroupVersion.WithKind(trainer.ClusterTrainingRuntimeKind), runtimeName).
Initializer(
testingutil.MakeTrainJobInitializerWrapper().
DatasetInitializer(
testingutil.MakeTrainJobDatasetInitializerWrapper().
StorageUri("hf://trainjob-model").
Obj(),
).
Obj(),
).
Obj()
},
gomega.Succeed()),
ginkgo.Entry("Should fail in creating trainJob with invalid trainer config for mpi runtime",
func() *trainer.TrainJob {
trainingRuntime.Spec.MLPolicy = &trainer.MLPolicy{MLPolicySource: trainer.MLPolicySource{MPI: &trainer.MPIMLPolicySource{}}}
gomega.Expect(k8sClient.Update(ctx, trainingRuntime)).To(gomega.Succeed())
return testingutil.MakeTrainJobWrapper(ns.Name, jobName).
RuntimeRef(trainer.GroupVersion.WithKind(trainer.TrainingRuntimeKind), runtimeName).
Trainer(&trainer.Trainer{NumProcPerNode: ptr.To(intstr.FromString("invalid"))}).
Obj()
},
testingutil.BeForbiddenError()),
ginkgo.Entry("Should fail in creating trainJob with invalid trainer config for torch runtime",
func() *trainer.TrainJob {
trainingRuntime.Spec.MLPolicy = &trainer.MLPolicy{MLPolicySource: trainer.MLPolicySource{Torch: &trainer.TorchMLPolicySource{}}}
gomega.Expect(k8sClient.Update(ctx, trainingRuntime)).To(gomega.Succeed())
return testingutil.MakeTrainJobWrapper(ns.Name, jobName).
RuntimeRef(trainer.GroupVersion.WithKind(trainer.TrainingRuntimeKind), runtimeName).
Trainer(&trainer.Trainer{NumProcPerNode: ptr.To(intstr.FromString("invalid"))}).
Obj()
},
testingutil.BeForbiddenError()),
ginkgo.Entry("Should succeed in creating trainJob with valid trainer config for torch runtime",
func() *trainer.TrainJob {
trainingRuntime.Spec.MLPolicy = &trainer.MLPolicy{MLPolicySource: trainer.MLPolicySource{Torch: &trainer.TorchMLPolicySource{}}}
gomega.Expect(k8sClient.Update(ctx, trainingRuntime)).To(gomega.Succeed())
return testingutil.MakeTrainJobWrapper(ns.Name, jobName).
RuntimeRef(trainer.GroupVersion.WithKind(trainer.TrainingRuntimeKind), runtimeName).
Trainer(&trainer.Trainer{NumProcPerNode: ptr.To(intstr.FromString("auto"))}).
Obj()
},
gomega.Succeed()),
ginkgo.Entry("Should fail in creating trainJob with trainer config having envs with reserved env names",
func() *trainer.TrainJob {
trainingRuntime.Spec.MLPolicy = &trainer.MLPolicy{MLPolicySource: trainer.MLPolicySource{Torch: &trainer.TorchMLPolicySource{}}}
gomega.Expect(k8sClient.Update(ctx, trainingRuntime)).To(gomega.Succeed())
return testingutil.MakeTrainJobWrapper(ns.Name, jobName).
RuntimeRef(trainer.GroupVersion.WithKind(trainer.TrainingRuntimeKind), runtimeName).
Trainer(&trainer.Trainer{NumProcPerNode: ptr.To(intstr.FromString("auto")), Env: []corev1.EnvVar{{Name: "PET_NODE_RANK", Value: "1"}}}).
Obj()
},
testingutil.BeForbiddenError()),
)
})
})
var _ = ginkgo.Describe("TrainJob marker validations and defaulting", ginkgo.Ordered, func() {
var ns *corev1.Namespace
var (
trainingRuntime *trainer.TrainingRuntime
clusterTrainingRuntime *trainer.ClusterTrainingRuntime
)
ginkgo.BeforeAll(func() {
fwk = &framework.Framework{}
cfg = fwk.Init()
ctx, k8sClient = fwk.RunManager(cfg, false)
})
ginkgo.AfterAll(func() {
fwk.Teardown()
})
ginkgo.BeforeEach(func() {
ns = &corev1.Namespace{
TypeMeta: metav1.TypeMeta{
APIVersion: corev1.SchemeGroupVersion.String(),
Kind: "Namespace",
},
ObjectMeta: metav1.ObjectMeta{
GenerateName: "trainjob-marker-",
},
}
gomega.Expect(k8sClient.Create(ctx, ns)).To(gomega.Succeed())
baseRuntimeWrapper := testingutil.MakeTrainingRuntimeWrapper(ns.Name, "testing")
baseClusterRuntimeWrapper := testingutil.MakeClusterTrainingRuntimeWrapper("testing")
trainingRuntime = baseRuntimeWrapper.RuntimeSpec(
testingutil.MakeTrainingRuntimeSpecWrapper(
testingutil.MakeTrainingRuntimeWrapper(ns.Name, "testing").Spec).Obj()).Obj()
clusterTrainingRuntime = baseClusterRuntimeWrapper.RuntimeSpec(
testingutil.MakeTrainingRuntimeSpecWrapper(
testingutil.MakeClusterTrainingRuntimeWrapper("testing").Spec).Obj()).Obj()
gomega.Expect(k8sClient.Create(ctx, trainingRuntime)).To(gomega.Succeed())
gomega.Expect(k8sClient.Create(ctx, clusterTrainingRuntime)).To(gomega.Succeed())
gomega.Eventually(func(g gomega.Gomega) {
g.Expect(k8sClient.Get(ctx, client.ObjectKeyFromObject(trainingRuntime), trainingRuntime)).Should(gomega.Succeed())
}, util.Timeout, util.Interval).Should(gomega.Succeed())
gomega.Eventually(func(g gomega.Gomega) {
g.Expect(k8sClient.Get(ctx, client.ObjectKeyFromObject(clusterTrainingRuntime), clusterTrainingRuntime)).Should(gomega.Succeed())
}, util.Timeout, util.Interval).Should(gomega.Succeed())
})
ginkgo.AfterAll(func() {
fwk.Teardown()
})
ginkgo.AfterEach(func() {
gomega.Expect(k8sClient.DeleteAllOf(ctx, &trainer.TrainJob{}, client.InNamespace(ns.Name))).Should(gomega.Succeed())
gomega.Expect(k8sClient.DeleteAllOf(ctx, &trainer.TrainingRuntime{}, client.InNamespace(ns.Name))).To(gomega.Succeed())
gomega.Expect(k8sClient.DeleteAllOf(ctx, &trainer.ClusterTrainingRuntime{})).To(gomega.Succeed())
})
ginkgo.When("Creating TrainJob", func() {
ginkgo.DescribeTable("Validate TrainJob on creation", func(trainJob func() *trainer.TrainJob, errorMatcher gomega.OmegaMatcher) {
gomega.Expect(k8sClient.Create(ctx, trainJob())).Should(errorMatcher)
},
ginkgo.Entry("Should succeed to create TrainJob with 'managedBy: trainer.kubeflow.org/trainjob-controller'",
func() *trainer.TrainJob {
return testingutil.MakeTrainJobWrapper(ns.Name, "managed-by-trainjob-controller").
ManagedBy("trainer.kubeflow.org/trainjob-controller").
RuntimeRef(trainer.GroupVersion.WithKind(trainer.TrainingRuntimeKind), "testing").
Obj()
},
gomega.Succeed()),
ginkgo.Entry("Should succeed to create TrainJob with 'managedBy: kueue.x-k8s.io/multukueue'",
func() *trainer.TrainJob {
return testingutil.MakeTrainJobWrapper(ns.Name, "managed-by-trainjob-controller").
ManagedBy("kueue.x-k8s.io/multikueue").
RuntimeRef(trainer.GroupVersion.WithKind(trainer.TrainingRuntimeKind), "testing").
Obj()
},
gomega.Succeed()),
ginkgo.Entry("Should fail to create TrainJob with invalid managedBy",
func() *trainer.TrainJob {
return testingutil.MakeTrainJobWrapper(ns.Name, "invalid-managed-by").
ManagedBy("invalid").
RuntimeRef(trainer.GroupVersion.WithKind(trainer.TrainingRuntimeKind), "testing").
Obj()
},
testingutil.BeInvalidError()),
ginkgo.Entry("Should fail in creating trainJob with podSpecOverrides have duplicated targetJob",
func() *trainer.TrainJob {
return testingutil.MakeTrainJobWrapper(ns.Name, "invalid-pod-spec-overrides").
RuntimeRef(trainer.GroupVersion.WithKind(trainer.TrainingRuntimeKind), "testing").
PodSpecOverrides([]trainer.PodSpecOverride{
{
TargetJobs: []trainer.PodSpecOverrideTargetJob{{Name: "node"}},
ServiceAccountName: ptr.To("custom-sa"),
},
{
TargetJobs: []trainer.PodSpecOverrideTargetJob{{Name: "node"}},
ServiceAccountName: ptr.To("custom-sa-two"),
},
}).
Obj()
},
testingutil.BeForbiddenError()),
)
ginkgo.DescribeTable("Defaulting TrainJob on creation", func(trainJob func() *trainer.TrainJob, wantTrainJob func() *trainer.TrainJob) {
created := trainJob()
gomega.Expect(k8sClient.Create(ctx, created)).Should(gomega.Succeed())
gomega.Expect(created).Should(gomega.BeComparableTo(wantTrainJob(), util.IgnoreObjectMetadata))
},
ginkgo.Entry("Should succeed to default suspend=false",
func() *trainer.TrainJob {
return testingutil.MakeTrainJobWrapper(ns.Name, "null-suspend").
ManagedBy("kueue.x-k8s.io/multikueue").
RuntimeRef(trainer.SchemeGroupVersion.WithKind(trainer.ClusterTrainingRuntimeKind), "testing").
Obj()
},
func() *trainer.TrainJob {
return testingutil.MakeTrainJobWrapper(ns.Name, "null-suspend").
ManagedBy("kueue.x-k8s.io/multikueue").
RuntimeRef(trainer.SchemeGroupVersion.WithKind(trainer.ClusterTrainingRuntimeKind), "testing").
Suspend(false).
Obj()
}),
ginkgo.Entry("Should succeed to default managedBy=trainer.kubeflow.org/trainjob-controller",
func() *trainer.TrainJob {
return testingutil.MakeTrainJobWrapper(ns.Name, "null-managed-by").
RuntimeRef(trainer.SchemeGroupVersion.WithKind(trainer.TrainingRuntimeKind), "testing").
Suspend(true).
Obj()
},
func() *trainer.TrainJob {
return testingutil.MakeTrainJobWrapper(ns.Name, "null-managed-by").
ManagedBy("trainer.kubeflow.org/trainjob-controller").
RuntimeRef(trainer.SchemeGroupVersion.WithKind(trainer.TrainingRuntimeKind), "testing").
Suspend(true).
Obj()
}),
ginkgo.Entry("Should succeed to default runtimeRef.apiGroup",
func() *trainer.TrainJob {
return testingutil.MakeTrainJobWrapper(ns.Name, "empty-api-group").
RuntimeRef(schema.GroupVersionKind{Group: "", Version: "", Kind: trainer.TrainingRuntimeKind}, "testing").
Obj()
},
func() *trainer.TrainJob {
return testingutil.MakeTrainJobWrapper(ns.Name, "empty-api-group").
ManagedBy("trainer.kubeflow.org/trainjob-controller").
RuntimeRef(trainer.SchemeGroupVersion.WithKind(trainer.TrainingRuntimeKind), "testing").
Suspend(false).
Obj()
}),
ginkgo.Entry("Should succeed to default runtimeRef.kind",
func() *trainer.TrainJob {
return testingutil.MakeTrainJobWrapper(ns.Name, "empty-kind").
RuntimeRef(trainer.SchemeGroupVersion.WithKind(""), "testing").
Obj()
},
func() *trainer.TrainJob {
return testingutil.MakeTrainJobWrapper(ns.Name, "empty-kind").
ManagedBy("trainer.kubeflow.org/trainjob-controller").
RuntimeRef(trainer.SchemeGroupVersion.WithKind(trainer.ClusterTrainingRuntimeKind), "testing").
Suspend(false).
Obj()
}),
)
})
ginkgo.When("Updating TrainJob", func() {
ginkgo.DescribeTable("Validate TrainJob on update", func(old func() *trainer.TrainJob, new func(*trainer.TrainJob) *trainer.TrainJob, errorMatcher gomega.OmegaMatcher) {
oldTrainJob := old()
gomega.Expect(k8sClient.Create(ctx, oldTrainJob)).Should(gomega.Succeed())
gomega.Eventually(func(g gomega.Gomega) {
g.Expect(k8sClient.Get(ctx, client.ObjectKeyFromObject(oldTrainJob), oldTrainJob)).Should(gomega.Succeed())
g.Expect(k8sClient.Update(ctx, new(oldTrainJob))).Should(errorMatcher)
}, util.Timeout, util.Interval).Should(gomega.Succeed())
},
ginkgo.Entry("Should fail to update TrainJob managedBy",
func() *trainer.TrainJob {
return testingutil.MakeTrainJobWrapper(ns.Name, "valid-managed-by").
ManagedBy("trainer.kubeflow.org/trainjob-controller").
RuntimeRef(trainer.SchemeGroupVersion.WithKind(trainer.TrainingRuntimeKind), "testing").
Obj()
},
func(job *trainer.TrainJob) *trainer.TrainJob {
job.Spec.ManagedBy = ptr.To("kueue.x-k8s.io/multikueue")
return job
},
testingutil.BeInvalidError()),
ginkgo.Entry("Should fail to update runtimeRef",
func() *trainer.TrainJob {
return testingutil.MakeTrainJobWrapper(ns.Name, "valid-runtimeref").
RuntimeRef(trainer.SchemeGroupVersion.WithKind(trainer.TrainingRuntimeKind), "testing").
Obj()
},
func(job *trainer.TrainJob) *trainer.TrainJob {
job.Spec.RuntimeRef.Name = "forbidden-update"
return job
},
testingutil.BeInvalidError()),
)
})
})