-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathtest-plan.yaml
More file actions
4186 lines (4185 loc) · 145 KB
/
Copy pathtest-plan.yaml
File metadata and controls
4186 lines (4185 loc) · 145 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
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# 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.
# AI Cloud Validation Test Suite - Hierarchical Test Data
# Structure: Domain > Component > Capability > Tests
domains:
- name: Foundational Services
components:
- name: Image Registry
capabilities:
- description: Stores and distributes boot images, VM images, containers, and deployment artifacts. Acts as a trusted source for all deployable assets.
example: GCP Artifact Registry + Images
tests:
- summary: CRUD an custom OS image (iso file) (Upload an ISO file if supported, or remote URL if supported).
labels:
- image_registry
- min_req
priority: P0
dependencies:
- LimitedEnv
milestone: M0
github_issues:
- "#37"
- "#38"
req_id: BOOT01
test_id: BOOT01-01
status: approved
notes: ""
- summary: CRUD an OS install configuration (e.g. iPXE config like Carbide)
priority: P0
dependencies:
- LimitedEnv
milestone: M1
github_issues:
- "#39"
req_id: BOOT01
test_id: BOOT01-02
status: approved
notes: ""
labels:
- image_registry
- summary: CRUD a custom VM image
labels:
- min_req
priority: P0
dependencies:
- LimitedEnv
milestone: M0
github_issues:
- "#40"
req_id: BOOT03
test_id: BOOT03-01
status: approved
notes: ""
- summary: CRUD (get, list, create, delete) custom OS images for fast boot (raw, qcow2, img, etc) for BM/VM
labels:
- image_registry
- min_req
priority: P0
milestone: M3
github_issues:
- "#104"
req_id: BOOT03
test_id: BOOT03-02
status: approved
notes: ""
- summary: Check that an OS image can be installed on a BMaaS system
labels:
- image_registry
- min_req
priority: P0
dependencies:
- LimitedEnv
milestone: M1
github_issues:
- "#41"
req_id: BOOT01
test_id: BOOT01-03
status: approved
notes: ""
- summary: Check that an OS install configuration can be installed on a BMaaS system
labels:
- image_registry
- min_req
priority: P0
dependencies:
- LimitedEnv
milestone: M1
github_issues:
- "#43"
req_id: BOOT01
test_id: BOOT01-04
status: approved
notes: ""
- summary: Check that a VM image can be installed onto a VMaaS system
labels:
- image_registry
- min_req
priority: P0
dependencies:
- LimitedEnv
milestone: M0
github_issues:
- "#44"
req_id: BOOT01
test_id: BOOT01-05
status: approved
notes: ""
- summary: Verify that an OS image (iso file) with full NVIDIA support is readily available
priority: P1
milestone: M4
req_id: IMG01
test_id: IMG01-01
legacy_ids: [IMG-XX-01]
status: approved
notes: ""
- summary: Verify that an OS install configuration (e.g. iPXE config like Carbide) with full NVIDIA support is readily available
priority: P1
milestone: M4
req_id: IMG02
test_id: IMG02-01
legacy_ids: [IMG-XX-02]
status: approved
notes: ""
- summary: Verify that an VM image with full NVIDIA support is readily available
priority: P1
milestone: M4
req_id: IMG03
test_id: IMG03-01
legacy_ids: [IMG-XX-03]
status: approved
notes: ""
- name: Key Secret Mgmt
capabilities:
- description: Securely stores and manages cryptographic keys, secrets, and certificates. Supports key rotation
example: AWS Secrets Manager / KMS
tests:
- summary: CRUD an SSH/Teleport compatible public key for system login
priority: P1
dependencies:
- LimitedEnv
milestone: M4
req_id: AUTH01
test_id: AUTH01-01
legacy_ids: [AUTH-XX-01]
status: approved
notes: ""
- summary: Spin up an instance which uses a specified key
milestone: M5
req_id: AUTH02
test_id: AUTH02-01
legacy_ids: [AUTH-XX-02]
status: approved
priority: P1
notes: ""
github_issues:
- "#247"
labels:
- vm
- summary: Access other components via a specified key as possible (SOL, Network devices)
milestone: M5
req_id: AUTH03
test_id: AUTH03-01
legacy_ids: [AUTH-XX-03]
status: approved
priority: P1
notes: ""
github_issues:
- "#248"
- name: Identity and Asset Mgmt (IAM)
capabilities:
- description: Manages users, service identities, roles, and permissions across tenants and services. Forms the security foundation of the platform.
example: "AWS: IAM"
tests:
- summary: Create user and log in as that user
labels:
- iam
- min_req
priority: P0
dependencies:
- LimitedEnv
milestone: M0
github_issues:
- "#21"
req_id: IAM01
test_id: IAM01-01
legacy_ids: [IAM-XX-01]
status: approved
notes: ""
- summary: Delete user
priority: P0
dependencies:
- LimitedEnv
milestone: M0
github_issues:
- "#23"
req_id: IAM02
test_id: IAM02-01
legacy_ids: [IAM-XX-02]
status: approved
notes: ""
- summary: Validate that a user created can access the API and authorized resources
priority: P1
dependencies:
- LimitedEnv
milestone: M5
req_id: IAM03
test_id: IAM03-01
legacy_ids: [IAM-XX-03]
status: approved
notes: ""
github_issues:
- "#341"
labels:
- iam
- name: DDI
capabilities:
- description: core network services for name resolution, IP allocation, and address lifecycle management
example: GCP Cloud DNS + IPAM
tests:
- summary: Check that IP addresses are managed by the platform, and that DHCP is able to provide IP addresses
priority: P0
dependencies:
- MiniCloud
milestone: M4
github_issues:
- "#131"
req_id: IPAM01
test_id: IPAM01-01
legacy_ids: [CP-XX-01]
status: approved
notes: ""
labels:
- network
- ssh
- summary: "Check that IP addresses are managed sensibly as VPCs are configured (Move to SDN section?)"
priority: P0
dependencies:
- MiniCloud
milestone: M4
github_issues:
- "#132"
req_id: IPAM02
test_id: IPAM02-01
legacy_ids: [CP-XX-02]
status: approved
notes: ""
labels:
- network
- name: "Network Underlay & Mgmt"
capabilities:
- description: Brings up the physical network fabric for Day 0, base configuration, and network OS installation. Manages switch OS versions, compliance, and safe upgrades over time. Provides base network that overlays and tenants are built upon.
example: Netris
tests:
- summary: Verify that all switches in the are reachable and healthy (SSH, API, etc)
priority: P0
dependencies:
- MiniCloud
milestone: M4
req_id: NETMGMT01
test_id: NETMGMT01-01
legacy_ids: [NETMGMT-XX-01]
status: pending
notes: ""
- name: Resource Database
capabilities:
- description: Resource Inventory for useable resources withing the data center
tests:
- summary: Verify that all resources assigned to the cluster are accounted for
priority: P1
dependencies:
- LimitedEnv
milestone: M4
req_id: RESDB01
test_id: RESDB01-01
legacy_ids: [RESDB-XX-01]
status: pending
notes: ""
- name: Infrastructure and Data Services
components:
- name: Control Plane accessible
capabilities:
- description: Control plane can be accessed
tests:
- summary: Make sure we can ping the control plane, or get a heart beat/status code
priority: P0
dependencies:
- LimitedEnv
milestone: M0
github_issues:
- "#26"
- "#27"
req_id: CP03
test_id: CP03-01
legacy_ids: [CP-XX-03]
status: approved
notes: ""
- summary: Control Plane can be upgraded (measure impact)
priority: P2
dependencies:
- LimitedEnv
milestone: M5
req_id: CP04
test_id: CP04-01
legacy_ids: [CP-XX-04]
status: approved
notes: ""
github_issues:
- "#261"
- summary: Access keys can be created, received, used to log in
priority: P0
dependencies:
- LimitedEnv
milestone: M0
github_issues:
- "#28"
req_id: CP05
test_id: CP05-01
legacy_ids: [CP-XX-05]
status: approved
notes: ""
labels:
- control_plane
- iam
- summary: Access keys can expire or be disabled
labels:
- control_plane
- iam
- min_req
priority: P0
dependencies:
- LimitedEnv
milestone: M0
github_issues:
- "#29"
req_id: CP06
test_id: CP06-01
legacy_ids: [CP-XX-06]
status: approved
notes: ""
- summary: Create tenants
priority: P0
dependencies:
- LimitedEnv
milestone: M0
github_issues:
- "#30"
req_id: CP07
test_id: CP07-01
legacy_ids: [CP-XX-07]
status: approved
notes: ""
labels:
- control_plane
- iam
- summary: Retrieve list of tenants
priority: P0
dependencies:
- LimitedEnv
milestone: M0
github_issues:
- "#31"
req_id: CP08
test_id: CP08-01
legacy_ids: [CP-XX-08]
status: approved
notes: ""
labels:
- control_plane
- iam
- summary: Retrieve info about individual tenant
priority: P0
dependencies:
- LimitedEnv
milestone: M0
github_issues:
- "#32"
- "#33"
req_id: CP09
test_id: CP09-01
legacy_ids: [CP-XX-09]
status: approved
notes: ""
labels:
- control_plane
- iam
- summary: Delete Tenant
priority: P0
dependencies:
- LimitedEnv
milestone: M0
github_issues:
- "#34"
req_id: CP10
test_id: CP10-01
legacy_ids: [CP-XX-10]
status: approved
notes: ""
labels:
- control_plane
- summary: Add user to tenant
labels:
- min_req
priority: P0
dependencies:
- LimitedEnv
milestone: M0
github_issues:
- "#35"
req_id: CP11
test_id: CP11-01
legacy_ids: [CP-XX-11]
status: approved
notes: ""
- name: Hardware ingestion
capabilities:
- description: Makes sure that all hardware under test has been ingested
tests:
- summary: Makes sure that all hardware under test has been ingested, and matches the provided hardware
priority: P1 (check w/ ISVs)
dependencies:
- MiniCloud
milestone: M4
github_issues:
- "#133"
req_id: HWING01
test_id: HWING01-01
legacy_ids: [HWING-XX-01]
status: approved
notes: ""
labels:
- bare_metal
- ingestion
- summary: Make sure that a device can be removed from the system
priority: P1
dependencies:
- MiniCloud
milestone: M4
req_id: HWING02
test_id: HWING02-01
legacy_ids: [HWING-XX-02]
status: approved
notes: ""
- name: Attestation
capabilities:
- description: ""
tests:
- summary: Check that hardware passes nonce check
priority: P1
dependencies:
- MiniCloud
milestone: M5
req_id: SEC22
test_id: SEC22-01
status: approved
notes: ""
github_issues:
- "#315"
labels:
- attestation
- bare_metal
- security
- summary: Check that OS is approved
priority: P1
dependencies:
- MiniCloud
milestone: M5
req_id: ATTEST01
test_id: ATTEST01-01
legacy_ids: [ATTEST-XX-01]
status: approved
notes: ""
github_issues:
- "#243"
- summary: Check that TPM Configuration can be set per host
priority: P1
dependencies:
- MiniCloud
milestone: M5
req_id: SEC22
test_id: SEC22-02
status: approved
notes: ""
github_issues:
- "#316"
- summary: Check that an updated BIOS is installed on all hardware
priority: P1
dependencies:
- MiniCloud
milestone: M5
req_id: ATTEST02
test_id: ATTEST02-01
legacy_ids: [ATTEST-XX-02]
status: approved
notes: ""
github_issues:
- "#319"
- "#246"
- summary: Check that the updated firmware is installed
labels:
- min_req
priority: P1
dependencies:
- MiniCloud
milestone: M4
req_id: CNP09
test_id: CNP09-01
status: approved
notes: ""
- summary: Verify all firmware is cryptographically signed and attested during boot
labels:
- attestation
- bare_metal
- firmware
- min_req
- security
priority: P1
milestone: M5
notes: ""
github_issues:
- "#259"
req_id: CNP09
test_id: CNP09-02
status: pending
- summary: TPM Secure Boot in BIOS
notes: REVIEW
req_id: SEC22
test_id: SEC22-03
status: pending
priority: ""
- name: "Compute Services: BMaaS"
capabilities:
- description: Supports the basic lifecycle of Bare Metal nodes
example: AWS EC2/Forge
tests:
- summary: Create a Bare Metal node
labels:
- min_req
priority: P0
dependencies:
- LimitedEnv
milestone: M1
github_issues:
- "#49"
req_id: CNP01
test_id: CNP01-01
status: approved
notes: ""
- summary: "Supports the basic lifecycle of Bare Metal nodes, following the standard CRUD pattern"
labels:
- min_req
priority: P0
milestone: M5
notes: ""
github_issues:
- "#51"
- "#52"
req_id: CNP01, CNP04
test_id: CNP01-02
status: approved
- summary: Delete a Bare Metal node
labels:
- min_req
priority: P0
dependencies:
- LimitedEnv
milestone: M1
github_issues:
- "#53"
req_id: CNP01
test_id: CNP01-03
status: approved
notes: ""
- summary: Confirm sanitization on delete - Tenant View
labels:
- bare_metal
- min_req
- security
priority: P0
dependencies:
- LimitedEnv
milestone: M1
github_issues:
- "#54"
- "#47"
req_id: SEC21
test_id: SEC21-01
status: approved
notes: ""
- summary: Confirm sanitization on delete - Low Level
labels:
- bare_metal
- disk
- min_req
- sanitization
- security
priority: P0
dependencies:
- MiniCloud
milestone: M4
github_issues:
- "#134"
req_id: SEC21
test_id: SEC21-02
status: approved
notes: ""
- summary: Topology-based placement
labels:
- bare_metal
- min_req
priority: P0
dependencies:
- MiniCloud
milestone: M3
github_issues:
- "#105"
req_id: CNP01
test_id: CNP01-04
status: approved
notes: ""
- summary: Node attached storage
notes: REVIEW
req_id: BMAAS01
test_id: BMAAS01-01
legacy_ids: [BMAAS-XX-01]
status: pending
priority: ""
- summary: "Storage: Config/default/access to local NVME drives"
notes: REVIEW
req_id: BMAAS02
test_id: BMAAS02-01
legacy_ids: [BMAAS-XX-02]
status: pending
priority: ""
- description: Once created, nodes can be accessed for usage, and have the high level support controls of reboot, reinstall.
example: AWS EC2/Forge
tests:
- summary: A running node can be accessed via SSH/Teleport for further configuration (Bare Metal)
priority: P0
dependencies:
- LimitedEnv
milestone: M1
github_issues:
- "#48"
- "#56"
req_id: BMAAS03
test_id: BMAAS03-01
legacy_ids: [BMAAS-XX-03]
status: approved
notes: ""
labels:
- bare_metal
- ssh
- summary: A running node can be rebooted in case of issue (Bare Metal)
labels:
- bare_metal
- min_req
priority: P0
milestone: M1
github_issues:
- "#50"
- "#57"
req_id: CNP01
test_id: CNP01-05
status: approved
notes: ""
- summary: A running node can be power-cycled in case of issue
labels:
- bare_metal
- min_req
priority: P0
dependencies:
- MiniCloud
milestone: M4
github_issues:
- "#135"
req_id: CNP01
test_id: CNP01-06
status: approved
notes: ""
- summary: "DEPRECATED: A node can be reinstalled from its configured stock operating system"
priority: P0
dependencies:
- LimitedEnv
milestone: M1
github_issues:
- "#58"
- "#69"
req_id: BMAAS04
test_id: BMAAS04-01
legacy_ids: [BMAAS-XX-04]
status: approved
notes: ""
- summary: A running node can be powered off (Without being destroyed)
labels:
- bare_metal
- min_req
notes: MinAPI
priority: P0
dependencies:
- MiniCloud
milestone: M3
github_issues:
- "#106"
req_id: CNP01
test_id: CNP01-07
status: approved
- summary: Support for cloud-init and instance metadata discovery via link-local addresses (e.g. 169.254.169.254) or virtual devices (Bare Metal)
labels:
- bare_metal
- min_req
- ssh
notes: MinAPI
priority: P0
milestone: M3
github_issues:
- "#107"
- "#113"
req_id: BOOT02
test_id: BOOT02-01
status: approved
- summary: A powered off node can be powered back on
labels:
- bare_metal
- min_req
notes: MinAPI
priority: P0
dependencies:
- MiniCloud
milestone: M3
github_issues:
- "#108"
req_id: CNP01
test_id: CNP01-08
status: approved
- summary: Support for user-defined tags/labels and cloud-init metadata on instances. (Bare Metal)
labels:
- bare_metal
- min_req
notes: MinAPI
dependencies:
- LimitedEnv
milestone: M3 .5
req_id: CNP05
test_id: CNP05-01
status: approved
priority: P0
github_issues:
- "#112"
- "#181"
- description: Nodes will be able to access expected resources on the local networks
example: AWS EC2/Forge
tests:
- summary: Check the health and status of the DPU on instantiation
priority: P0
dependencies:
- MiniCloud
milestone: M4
github_issues:
- "#136"
req_id: BMAAS05
test_id: BMAAS05-01
legacy_ids: [BMAAS-XX-05]
status: approved
notes: ""
labels:
- bare_metal
- dpu
- summary: Nodes can communicate across ethernet, infiniband, and NVLink (Bare Metal)
priority: P0
dependencies:
- LimitedEnv
milestone: M1
github_issues:
- "#60"
req_id: BMAAS06
test_id: BMAAS06-01
legacy_ids: [BMAAS-XX-06]
status: approved
notes: ""
labels:
- bare_metal
- gpu
- network
- ssh
- description: "Observability & Debug"
example: AWS EC2/Forge
tests:
- summary: Check for any per-host status log over time.
notes: REVIEW
priority: P1
milestone: M5
req_id: BMAAS07
test_id: BMAAS07-01
legacy_ids: [BMAAS-XX-07]
status: approved
github_issues:
- "#250"
labels:
- bare_metal
- summary: Serial console access is required (read-only sufficient, interactive preferred) (Bare Metal)
labels:
- bare_metal
- min_req
priority: P0
dependencies:
- LimitedEnv
milestone: M3
github_issues:
- "#109"
- "#114"
req_id: CNP06
test_id: CNP06-01
status: approved
notes: ""
- summary: Verify NVIDIA hardware
priority: P0
dependencies:
- LimitedEnv
milestone: M1
github_issues:
- "#61"
req_id: BMAAS08
test_id: BMAAS08-01
legacy_ids: [BMAAS-XX-08]
status: approved
notes: ""
labels:
- bare_metal
- gpu
- ssh
- summary: GPU Stress workload (Bare Metal)
labels:
- bare_metal
- gpu
- min_req
- ssh
- workload
priority: P0
dependencies:
- LimitedEnv
milestone: M1
github_issues:
- "#63"
- "#68"
req_id: BMAAS09
test_id: BMAAS09-01
legacy_ids: [BMAAS-XX-09]
status: approved
notes: ""
- summary: Nim Inference jobs (Bare Metal)
labels:
- bare_metal
- gpu
- min_req
- slow
- ssh
- workload
notes: ""
priority: P0
dependencies:
- LimitedEnv
milestone: M1
github_issues:
- "#64"
- "#82"
req_id: BMAAS10
test_id: BMAAS10-01
legacy_ids: [BMAAS-XX-10]
status: approved
- summary: NCCL tests
labels:
- bare_metal
- gpu
- min_req
- ssh
- workload
priority: P0
dependencies:
- LimitedEnv
milestone: M1
github_issues:
- "#65"
req_id: BMAAS11
test_id: BMAAS11-01
legacy_ids: [BMAAS-XX-11]
status: approved
notes: ""
- summary: Training workload test
labels:
- bare_metal
- gpu
- min_req
- ssh
- workload
notes: ""
priority: P0
dependencies:
- LimitedEnv
milestone: M1
github_issues:
- "#66"
req_id: BMAAS12
test_id: BMAAS12-01
legacy_ids: [BMAAS-XX-12]
status: approved
- summary: Verify that serial console output is logged and queryable for at least 1 month of history
labels:
- bare_metal
- min_req
priority: P0
milestone: M5
notes: ""
github_issues:
- "#258"
req_id: CNP06
test_id: CNP06-02
status: pending
- description: Stable Identifiers
tests:
- summary: Verify that a BM node's ID does not change after a reboot
labels:
- bare_metal
- min_req
priority: P0
milestone: M5
notes: ""
github_issues:
- "#197"
- "#196"
- "#185"
req_id: CNP08
test_id: CNP08-01
status: pending
- summary: Verify that a BM node's ID does not change after a maintenance/reprovision event
labels:
- min_req
priority: P0
milestone: M5
notes: ""
github_issues: []
req_id: CNP08
test_id: CNP08-02
status: pending
- name: "Compute Service: VMaaS"
capabilities:
- description: Supports the basic lifecycle of VM nodes
tests:
- summary: Create a VM node
labels:
- min_req
- vm
priority: P0
dependencies:
- LimitedEnv
milestone: M0
github_issues:
- "#42"
req_id: CNP01
test_id: CNP01-09
status: approved
notes: ""
- summary: Get info about a specific VM node, including if it is ready for use
notes: ""
labels:
- min_req
priority: P0
dependencies:
- LimitedEnv
milestone: M2
github_issues:
- "#51"
req_id: CNP01, CNP04
test_id: CNP01-10
status: approved
- summary: Get a list of all VM nodes in a VPC
labels:
- min_req
- vm
priority: P0
dependencies:
- LimitedEnv
milestone: M1
github_issues:
- "#45"
req_id: CNP01
test_id: CNP01-11
status: approved