forked from opendatahub-io/opendatahub-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconftest.py
More file actions
858 lines (752 loc) · 26.4 KB
/
conftest.py
File metadata and controls
858 lines (752 loc) · 26.4 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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
from collections.abc import Generator
from typing import Any
import pytest
import yaml
from kubernetes.dynamic import DynamicClient
from ocp_resources.config_map import ConfigMap
from ocp_resources.gateway import Gateway
from ocp_resources.inference_service import InferenceService
from ocp_resources.llm_inference_service import LLMInferenceService
from ocp_resources.namespace import Namespace
from ocp_resources.role import Role
from ocp_resources.role_binding import RoleBinding
from ocp_resources.secret import Secret
from ocp_resources.service_account import ServiceAccount
from ocp_resources.serving_runtime import ServingRuntime
from simple_logger.logger import get_logger
from utilities.constants import (
KServeDeploymentType,
ModelAndFormat,
ModelCarImage,
ModelFormat,
ModelStoragePath,
ModelVersion,
Protocols,
RuntimeTemplates,
Timeout,
)
from utilities.inference_utils import create_isvc
from utilities.infra import (
create_inference_token,
create_isvc_view_role,
create_ns,
s3_endpoint_secret,
update_configmap_data,
)
from utilities.llmd_constants import KServeGateway, LLMDGateway
from utilities.llmd_utils import create_llmd_gateway
from utilities.logger import RedactedString
from utilities.serving_runtime import ServingRuntimeFromTemplate
LOGGER = get_logger(name=__name__)
UPGRADE_NAMESPACE = "upgrade-model-server"
AUTH_UPGRADE_NAMESPACE = "upgrade-auth-model-server"
MODEL_CAR_UPGRADE_NAMESPACE = "upgrade-model-car"
METRICS_UPGRADE_NAMESPACE = "upgrade-metrics"
PRIVATE_ENDPOINT_UPGRADE_NAMESPACE = "upgrade-private-endpoint"
LLMD_UPGRADE_NAMESPACE = "upgrade-llmd"
S3_CONNECTION = "upgrade-connection"
@pytest.fixture(scope="session")
def namespace_fixture(
pytestconfig: pytest.Config,
admin_client: DynamicClient,
teardown_resources: bool,
) -> Generator[Namespace, Any, Any]:
ns = Namespace(client=admin_client, name=UPGRADE_NAMESPACE)
if pytestconfig.option.post_upgrade:
yield ns
ns.clean_up()
else:
with create_ns(
admin_client=admin_client,
name=UPGRADE_NAMESPACE,
model_mesh_enabled=False,
add_dashboard_label=True,
teardown=teardown_resources,
) as ns:
yield ns
@pytest.fixture(scope="session")
def s3_connection_fixture(
pytestconfig: pytest.Config,
admin_client: DynamicClient,
namespace_fixture: Namespace,
aws_access_key_id: str,
aws_secret_access_key: str,
ci_s3_bucket_name: str,
ci_s3_bucket_region: str,
ci_s3_bucket_endpoint: str,
teardown_resources: bool,
) -> Generator[Secret, Any, Any]:
secret_kwargs = {
"client": admin_client,
"name": S3_CONNECTION,
"namespace": namespace_fixture.name,
}
secret = Secret(**secret_kwargs)
if pytestconfig.option.post_upgrade:
yield secret
secret.clean_up()
else:
with s3_endpoint_secret(
**secret_kwargs,
aws_access_key=aws_access_key_id,
aws_secret_access_key=aws_secret_access_key,
aws_s3_region=ci_s3_bucket_region,
aws_s3_bucket=ci_s3_bucket_name,
aws_s3_endpoint=ci_s3_bucket_endpoint,
teardown=teardown_resources,
) as secret:
yield secret
@pytest.fixture(scope="session")
def serving_runtime_fixture(
pytestconfig: pytest.Config,
admin_client: DynamicClient,
namespace_fixture: Namespace,
teardown_resources: bool,
) -> Generator[ServingRuntime, Any, Any]:
runtime_kwargs = {
"client": admin_client,
"name": "upgrade-runtime",
"namespace": namespace_fixture.name,
}
model_runtime = ServingRuntime(**runtime_kwargs)
if pytestconfig.option.post_upgrade:
yield model_runtime
model_runtime.clean_up()
else:
with ServingRuntimeFromTemplate(
**runtime_kwargs,
template_name=RuntimeTemplates.OVMS_KSERVE,
multi_model=False,
enable_http=True,
teardown=teardown_resources,
resources={
ModelFormat.OVMS: {
"requests": {"cpu": "1", "memory": "4Gi"},
"limits": {"cpu": "2", "memory": "8Gi"},
}
},
) as model_runtime:
yield model_runtime
@pytest.fixture(scope="session")
def inference_service_fixture(
pytestconfig: pytest.Config,
admin_client: DynamicClient,
serving_runtime_fixture: ServingRuntime,
s3_connection_fixture: Secret,
teardown_resources: bool,
) -> Generator[InferenceService, Any, Any]:
isvc_kwargs = {
"client": admin_client,
"name": "upgrade-isvc",
"namespace": serving_runtime_fixture.namespace,
}
isvc = InferenceService(**isvc_kwargs)
if pytestconfig.option.post_upgrade:
yield isvc
isvc.clean_up()
else:
with create_isvc(
runtime=serving_runtime_fixture.name,
model_format=ModelAndFormat.OPENVINO_IR,
deployment_mode=KServeDeploymentType.RAW_DEPLOYMENT,
storage_key=s3_connection_fixture.name,
storage_path=ModelStoragePath.OPENVINO_EXAMPLE_MODEL,
model_version=ModelVersion.OPSET13,
external_route=False,
teardown=teardown_resources,
**isvc_kwargs,
) as isvc:
yield isvc
# Authentication Upgrade Fixtures
@pytest.fixture(scope="session")
def auth_namespace_fixture(
pytestconfig: pytest.Config,
admin_client: DynamicClient,
teardown_resources: bool,
) -> Generator[Namespace, Any, Any]:
"""Namespace for authentication upgrade tests."""
ns = Namespace(client=admin_client, name=AUTH_UPGRADE_NAMESPACE)
if pytestconfig.option.post_upgrade:
yield ns
ns.clean_up()
else:
with create_ns(
admin_client=admin_client,
name=AUTH_UPGRADE_NAMESPACE,
model_mesh_enabled=False,
add_dashboard_label=True,
teardown=teardown_resources,
) as ns:
yield ns
@pytest.fixture(scope="session")
def auth_s3_connection_fixture(
pytestconfig: pytest.Config,
admin_client: DynamicClient,
auth_namespace_fixture: Namespace,
aws_access_key_id: str,
aws_secret_access_key: str,
ci_s3_bucket_name: str,
ci_s3_bucket_region: str,
ci_s3_bucket_endpoint: str,
teardown_resources: bool,
) -> Generator[Secret, Any, Any]:
"""S3 connection secret for authentication upgrade tests."""
secret_kwargs = {
"client": admin_client,
"name": "auth-upgrade-connection",
"namespace": auth_namespace_fixture.name,
}
secret = Secret(**secret_kwargs)
if pytestconfig.option.post_upgrade:
yield secret
secret.clean_up()
else:
with s3_endpoint_secret(
**secret_kwargs,
aws_access_key=aws_access_key_id,
aws_secret_access_key=aws_secret_access_key,
aws_s3_region=ci_s3_bucket_region,
aws_s3_bucket=ci_s3_bucket_name,
aws_s3_endpoint=ci_s3_bucket_endpoint,
teardown=teardown_resources,
) as secret:
yield secret
@pytest.fixture(scope="session")
def auth_service_account_fixture(
pytestconfig: pytest.Config,
admin_client: DynamicClient,
auth_namespace_fixture: Namespace,
auth_s3_connection_fixture: Secret,
teardown_resources: bool,
) -> Generator[ServiceAccount, Any, Any]:
"""ServiceAccount for token-based authentication during upgrade tests."""
sa_kwargs = {
"client": admin_client,
"namespace": auth_namespace_fixture.name,
"name": "auth-upgrade-sa",
}
sa = ServiceAccount(**sa_kwargs)
if pytestconfig.option.post_upgrade:
yield sa
sa.clean_up()
else:
with ServiceAccount(
**sa_kwargs,
secrets=[{"name": auth_s3_connection_fixture.name}],
teardown=teardown_resources,
) as sa:
yield sa
@pytest.fixture(scope="session")
def auth_serving_runtime_fixture(
pytestconfig: pytest.Config,
admin_client: DynamicClient,
auth_namespace_fixture: Namespace,
teardown_resources: bool,
) -> Generator[ServingRuntime, Any, Any]:
"""ServingRuntime for authentication upgrade tests."""
runtime_kwargs = {
"client": admin_client,
"name": "auth-upgrade-runtime",
"namespace": auth_namespace_fixture.name,
}
model_runtime = ServingRuntime(**runtime_kwargs)
if pytestconfig.option.post_upgrade:
yield model_runtime
model_runtime.clean_up()
else:
with ServingRuntimeFromTemplate(
**runtime_kwargs,
template_name=RuntimeTemplates.OVMS_KSERVE,
multi_model=False,
enable_http=True,
enable_grpc=False,
teardown=teardown_resources,
resources={
ModelFormat.OVMS: {
"requests": {"cpu": "1", "memory": "4Gi"},
"limits": {"cpu": "2", "memory": "8Gi"},
}
},
) as model_runtime:
yield model_runtime
@pytest.fixture(scope="session")
def auth_inference_service_fixture(
pytestconfig: pytest.Config,
admin_client: DynamicClient,
auth_serving_runtime_fixture: ServingRuntime,
auth_s3_connection_fixture: Secret,
auth_service_account_fixture: ServiceAccount,
teardown_resources: bool,
) -> Generator[InferenceService, Any, Any]:
"""InferenceService with authentication enabled for upgrade tests."""
isvc_kwargs = {
"client": admin_client,
"name": "auth-upgrade-isvc",
"namespace": auth_serving_runtime_fixture.namespace,
}
isvc = InferenceService(**isvc_kwargs)
if pytestconfig.option.post_upgrade:
yield isvc
isvc.clean_up()
else:
with create_isvc(
runtime=auth_serving_runtime_fixture.name,
model_format=ModelAndFormat.OPENVINO_IR,
deployment_mode=KServeDeploymentType.RAW_DEPLOYMENT,
storage_key=auth_s3_connection_fixture.name,
storage_path=ModelStoragePath.OPENVINO_EXAMPLE_MODEL,
model_version=ModelVersion.OPSET13,
external_route=True,
enable_auth=True,
model_service_account=auth_service_account_fixture.name,
teardown=teardown_resources,
**isvc_kwargs,
) as isvc:
yield isvc
@pytest.fixture(scope="session")
def auth_view_role_fixture(
pytestconfig: pytest.Config,
admin_client: DynamicClient,
auth_inference_service_fixture: InferenceService,
teardown_resources: bool,
) -> Generator[Role, Any, Any]:
"""Role for viewing InferenceService during authentication upgrade tests."""
role_kwargs = {
"client": admin_client,
"name": f"{auth_inference_service_fixture.name}-view",
"namespace": auth_inference_service_fixture.namespace,
}
role = Role(**role_kwargs)
if pytestconfig.option.post_upgrade:
yield role
role.clean_up()
else:
with create_isvc_view_role(
client=admin_client,
isvc=auth_inference_service_fixture,
name=role_kwargs["name"],
resource_names=[auth_inference_service_fixture.name],
teardown=teardown_resources,
) as role:
yield role
@pytest.fixture(scope="session")
def auth_role_binding_fixture(
pytestconfig: pytest.Config,
admin_client: DynamicClient,
auth_view_role_fixture: Role,
auth_service_account_fixture: ServiceAccount,
teardown_resources: bool,
) -> Generator[RoleBinding, Any, Any]:
"""RoleBinding for authentication upgrade tests."""
rb_kwargs = {
"client": admin_client,
"namespace": auth_service_account_fixture.namespace,
"name": f"{Protocols.HTTP}-{auth_service_account_fixture.name}-view",
}
rb = RoleBinding(**rb_kwargs)
if pytestconfig.option.post_upgrade:
yield rb
rb.clean_up()
else:
with RoleBinding(
**rb_kwargs,
role_ref_name=auth_view_role_fixture.name,
role_ref_kind=auth_view_role_fixture.kind,
subjects_kind=auth_service_account_fixture.kind,
subjects_name=auth_service_account_fixture.name,
teardown=teardown_resources,
) as rb:
yield rb
@pytest.fixture(scope="session")
def auth_inference_token_fixture(
auth_service_account_fixture: ServiceAccount,
auth_role_binding_fixture: RoleBinding,
) -> str:
"""Authentication token for upgrade tests."""
return RedactedString(value=create_inference_token(model_service_account=auth_service_account_fixture))
# Model Car Upgrade Fixtures
@pytest.fixture(scope="session")
def model_car_namespace_fixture(
pytestconfig: pytest.Config,
admin_client: DynamicClient,
teardown_resources: bool,
) -> Generator[Namespace, Any, Any]:
"""Namespace for Model Car upgrade tests."""
ns = Namespace(client=admin_client, name=MODEL_CAR_UPGRADE_NAMESPACE)
if pytestconfig.option.post_upgrade:
yield ns
ns.clean_up()
else:
with create_ns(
admin_client=admin_client,
name=MODEL_CAR_UPGRADE_NAMESPACE,
model_mesh_enabled=False,
add_dashboard_label=True,
teardown=teardown_resources,
) as ns:
yield ns
@pytest.fixture(scope="session")
def model_car_serving_runtime_fixture(
pytestconfig: pytest.Config,
admin_client: DynamicClient,
model_car_namespace_fixture: Namespace,
teardown_resources: bool,
) -> Generator[ServingRuntime, Any, Any]:
"""ServingRuntime for Model Car upgrade tests."""
runtime_kwargs = {
"client": admin_client,
"name": "model-car-upgrade-runtime",
"namespace": model_car_namespace_fixture.name,
}
model_runtime = ServingRuntime(**runtime_kwargs)
if pytestconfig.option.post_upgrade:
yield model_runtime
model_runtime.clean_up()
else:
with ServingRuntimeFromTemplate(
**runtime_kwargs,
template_name=RuntimeTemplates.OVMS_KSERVE,
multi_model=False,
enable_http=True,
teardown=teardown_resources,
resources={
ModelFormat.OVMS: {
"requests": {"cpu": "1", "memory": "4Gi"},
"limits": {"cpu": "2", "memory": "8Gi"},
}
},
) as model_runtime:
yield model_runtime
@pytest.fixture(scope="session")
def model_car_inference_service_fixture(
pytestconfig: pytest.Config,
admin_client: DynamicClient,
model_car_serving_runtime_fixture: ServingRuntime,
teardown_resources: bool,
) -> Generator[InferenceService, Any, Any]:
"""InferenceService using OCI Model Car image for upgrade tests."""
isvc_kwargs = {
"client": admin_client,
"name": "model-car-upgrade-isvc",
"namespace": model_car_serving_runtime_fixture.namespace,
}
isvc = InferenceService(**isvc_kwargs)
if pytestconfig.option.post_upgrade:
yield isvc
isvc.clean_up()
else:
with create_isvc(
runtime=model_car_serving_runtime_fixture.name,
model_format=model_car_serving_runtime_fixture.instance.spec.supportedModelFormats[0].name,
deployment_mode=KServeDeploymentType.RAW_DEPLOYMENT,
storage_uri=ModelCarImage.MNIST_8_1,
external_route=True,
teardown=teardown_resources,
wait_for_predictor_pods=False,
**isvc_kwargs,
) as isvc:
yield isvc
# Metrics Upgrade Fixtures
@pytest.fixture(scope="session")
def upgrade_user_workload_monitoring_config_map(
admin_client: DynamicClient,
cluster_monitoring_config: ConfigMap,
) -> Generator[ConfigMap]:
"""
Session-scoped user workload monitoring ConfigMap for upgrade tests.
Unlike the class-scoped fixture in conftest.py, this fixture does NOT
delete PVCs on teardown, preserving Prometheus historical data across
pre-upgrade and post-upgrade test runs.
"""
uwm_namespace = "openshift-user-workload-monitoring"
data = {
"config.yaml": yaml.dump({
"prometheus": {
"logLevel": "debug",
"retention": "15d",
"volumeClaimTemplate": {"spec": {"resources": {"requests": {"storage": "40Gi"}}}},
}
})
}
with update_configmap_data(
client=admin_client,
name="user-workload-monitoring-config",
namespace=uwm_namespace,
data=data,
) as cm:
yield cm
# NOTE: Intentionally NOT deleting PVCs to preserve Prometheus data
# for post-upgrade metrics retention verification
@pytest.fixture(scope="session")
def metrics_namespace_fixture(
pytestconfig: pytest.Config,
admin_client: DynamicClient,
teardown_resources: bool,
) -> Generator[Namespace, Any, Any]:
"""Namespace for metrics persistence upgrade tests."""
ns = Namespace(client=admin_client, name=METRICS_UPGRADE_NAMESPACE)
if pytestconfig.option.post_upgrade:
yield ns
ns.clean_up()
else:
with create_ns(
admin_client=admin_client,
name=METRICS_UPGRADE_NAMESPACE,
model_mesh_enabled=False,
add_dashboard_label=True,
teardown=teardown_resources,
) as ns:
yield ns
@pytest.fixture(scope="session")
def metrics_serving_runtime_fixture(
pytestconfig: pytest.Config,
admin_client: DynamicClient,
metrics_namespace_fixture: Namespace,
teardown_resources: bool,
) -> Generator[ServingRuntime, Any, Any]:
"""ServingRuntime for metrics persistence upgrade tests."""
runtime_kwargs = {
"client": admin_client,
"name": "metrics-upgrade-runtime",
"namespace": metrics_namespace_fixture.name,
}
model_runtime = ServingRuntime(**runtime_kwargs)
if pytestconfig.option.post_upgrade:
yield model_runtime
model_runtime.clean_up()
else:
with ServingRuntimeFromTemplate(
**runtime_kwargs,
template_name=RuntimeTemplates.OVMS_KSERVE,
multi_model=False,
enable_http=True,
teardown=teardown_resources,
resources={
ModelFormat.OVMS: {
"requests": {"cpu": "1", "memory": "4Gi"},
"limits": {"cpu": "2", "memory": "8Gi"},
}
},
) as model_runtime:
yield model_runtime
@pytest.fixture(scope="session")
def metrics_inference_service_fixture(
pytestconfig: pytest.Config,
admin_client: DynamicClient,
metrics_serving_runtime_fixture: ServingRuntime,
teardown_resources: bool,
) -> Generator[InferenceService, Any, Any]:
"""InferenceService for metrics persistence upgrade tests."""
isvc_kwargs = {
"client": admin_client,
"name": "metrics-upgrade-isvc",
"namespace": metrics_serving_runtime_fixture.namespace,
}
isvc = InferenceService(**isvc_kwargs)
if pytestconfig.option.post_upgrade:
yield isvc
isvc.clean_up()
else:
with create_isvc(
runtime=metrics_serving_runtime_fixture.name,
model_format=metrics_serving_runtime_fixture.instance.spec.supportedModelFormats[0].name,
deployment_mode=KServeDeploymentType.RAW_DEPLOYMENT,
storage_uri=ModelCarImage.MNIST_8_1,
external_route=True,
teardown=teardown_resources,
wait_for_predictor_pods=False,
**isvc_kwargs,
) as isvc:
yield isvc
# Private Endpoint Upgrade Fixtures
@pytest.fixture(scope="session")
def private_endpoint_namespace_fixture(
pytestconfig: pytest.Config,
admin_client: DynamicClient,
teardown_resources: bool,
) -> Generator[Namespace, Any, Any]:
"""Namespace for private endpoint upgrade tests."""
ns = Namespace(client=admin_client, name=PRIVATE_ENDPOINT_UPGRADE_NAMESPACE)
if pytestconfig.option.post_upgrade:
yield ns
ns.clean_up()
else:
with create_ns(
admin_client=admin_client,
name=PRIVATE_ENDPOINT_UPGRADE_NAMESPACE,
model_mesh_enabled=False,
add_dashboard_label=True,
teardown=teardown_resources,
) as ns:
yield ns
@pytest.fixture(scope="session")
def private_endpoint_s3_connection_fixture(
pytestconfig: pytest.Config,
admin_client: DynamicClient,
private_endpoint_namespace_fixture: Namespace,
aws_access_key_id: str,
aws_secret_access_key: str,
ci_s3_bucket_name: str,
ci_s3_bucket_region: str,
ci_s3_bucket_endpoint: str,
teardown_resources: bool,
) -> Generator[Secret, Any, Any]:
"""S3 connection secret for private endpoint upgrade tests."""
secret_kwargs = {
"client": admin_client,
"name": "private-endpoint-upgrade-connection",
"namespace": private_endpoint_namespace_fixture.name,
}
secret = Secret(**secret_kwargs)
if pytestconfig.option.post_upgrade:
yield secret
secret.clean_up()
else:
with s3_endpoint_secret(
**secret_kwargs,
aws_access_key=aws_access_key_id,
aws_secret_access_key=aws_secret_access_key,
aws_s3_region=ci_s3_bucket_region,
aws_s3_bucket=ci_s3_bucket_name,
aws_s3_endpoint=ci_s3_bucket_endpoint,
teardown=teardown_resources,
) as secret:
yield secret
@pytest.fixture(scope="session")
def private_endpoint_serving_runtime_fixture(
pytestconfig: pytest.Config,
admin_client: DynamicClient,
private_endpoint_namespace_fixture: Namespace,
teardown_resources: bool,
) -> Generator[ServingRuntime, Any, Any]:
"""ServingRuntime for private endpoint upgrade tests."""
runtime_kwargs = {
"client": admin_client,
"name": "private-endpoint-upgrade-runtime",
"namespace": private_endpoint_namespace_fixture.name,
}
model_runtime = ServingRuntime(**runtime_kwargs)
if pytestconfig.option.post_upgrade:
yield model_runtime
model_runtime.clean_up()
else:
with ServingRuntimeFromTemplate(
**runtime_kwargs,
template_name=RuntimeTemplates.OVMS_KSERVE,
multi_model=False,
enable_http=True,
teardown=teardown_resources,
resources={
ModelFormat.OVMS: {
"requests": {"cpu": "1", "memory": "4Gi"},
"limits": {"cpu": "2", "memory": "8Gi"},
}
},
) as model_runtime:
yield model_runtime
@pytest.fixture(scope="session")
def private_endpoint_inference_service_fixture(
pytestconfig: pytest.Config,
admin_client: DynamicClient,
private_endpoint_serving_runtime_fixture: ServingRuntime,
private_endpoint_s3_connection_fixture: Secret,
teardown_resources: bool,
) -> Generator[InferenceService, Any, Any]:
"""InferenceService with private endpoint (no external route) for upgrade tests."""
isvc_kwargs = {
"client": admin_client,
"name": "private-endpoint-upgrade-isvc",
"namespace": private_endpoint_serving_runtime_fixture.namespace,
}
isvc = InferenceService(**isvc_kwargs)
if pytestconfig.option.post_upgrade:
yield isvc
isvc.clean_up()
else:
with create_isvc(
runtime=private_endpoint_serving_runtime_fixture.name,
model_format=ModelAndFormat.OPENVINO_IR,
deployment_mode=KServeDeploymentType.RAW_DEPLOYMENT,
storage_key=private_endpoint_s3_connection_fixture.name,
storage_path=ModelStoragePath.OPENVINO_EXAMPLE_MODEL,
model_version=ModelVersion.OPSET13,
external_route=False,
teardown=teardown_resources,
**isvc_kwargs,
) as isvc:
yield isvc
# LLMD Upgrade Fixtures
@pytest.fixture(scope="session")
def llmd_namespace_fixture(
pytestconfig: pytest.Config,
admin_client: DynamicClient,
teardown_resources: bool,
) -> Generator[Namespace, Any, Any]:
"""Namespace for LLMD upgrade tests."""
ns = Namespace(client=admin_client, name=LLMD_UPGRADE_NAMESPACE)
if pytestconfig.option.post_upgrade:
yield ns
ns.clean_up()
else:
with create_ns(
admin_client=admin_client,
name=LLMD_UPGRADE_NAMESPACE,
model_mesh_enabled=False,
add_dashboard_label=True,
teardown=teardown_resources,
) as ns:
yield ns
@pytest.fixture(scope="session")
def llmd_gateway_fixture(
pytestconfig: pytest.Config,
admin_client: DynamicClient,
teardown_resources: bool,
) -> Generator[Gateway, Any, Any]:
"""Shared LLMD Gateway for upgrade tests."""
gateway = Gateway(
client=admin_client,
name=LLMDGateway.DEFAULT_NAME,
namespace=LLMDGateway.DEFAULT_NAMESPACE,
api_group=KServeGateway.API_GROUP,
)
if pytestconfig.option.post_upgrade:
yield gateway
gateway.clean_up()
else:
with create_llmd_gateway(
client=admin_client,
namespace=LLMDGateway.DEFAULT_NAMESPACE,
gateway_class_name=LLMDGateway.DEFAULT_CLASS,
wait_for_condition=True,
timeout=Timeout.TIMEOUT_1MIN,
teardown=teardown_resources,
) as gateway:
yield gateway
@pytest.fixture(scope="session")
def llmd_inference_service_fixture(
pytestconfig: pytest.Config,
admin_client: DynamicClient,
llmd_namespace_fixture: Namespace,
llmd_gateway_fixture: Gateway,
teardown_resources: bool,
) -> Generator[LLMInferenceService, Any, Any]:
"""LLMInferenceService using TinyLlama OCI for upgrade tests."""
from tests.model_serving.model_server.llmd.conftest import _create_llmisvc_from_config
from tests.model_serving.model_server.llmd.llmd_configs import TinyLlamaOciConfig
config_cls = TinyLlamaOciConfig
llmisvc = LLMInferenceService(
client=admin_client,
name=config_cls.name,
namespace=llmd_namespace_fixture.name,
)
if pytestconfig.option.post_upgrade:
yield llmisvc
llmisvc.clean_up()
else:
with _create_llmisvc_from_config(
config_cls=config_cls,
namespace=llmd_namespace_fixture.name,
client=admin_client,
teardown=teardown_resources,
) as llmisvc:
yield llmisvc