-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjunit_01.xml
1883 lines (1883 loc) · 157 KB
/
junit_01.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<testsuite tests="125" failures="0" time="3395.843440482">
<testcase name="[sig-autoscaling] Cluster size autoscaling [Slow] should correctly scale down after a node is not needed when there is non autoscaled pool[Feature:ClusterSizeAutoscalingScaleDown]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] Network should set TCP CLOSE_WAIT timeout" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Downward API volume should set DefaultMode on files [Conformance]" classname="Kubernetes e2e suite" time="12.803763262"></testcase>
<testcase name="[sig-storage] PersistentVolumes-local [Feature:LocalPersistentVolumes] [Serial] [Volume type: gce-localssd-scsi-fs] when pod using local volume with non-existant path should not be able to mount" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-auth] [Feature:NodeAuthorizer] A node shouldn't be able to create an other node" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-multicluster] Multi-AZ Clusters should spread the pods of a service across zones" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] PersistentVolumes [Feature:ReclaimPolicy] [sig-storage] persistentvolumereclaim:vsphere should not detach and unmount PV when associated pvc with delete as reclaimPolicy is deleted when it is in use by the pod" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-scheduling] ResourceQuota should create a ResourceQuota and capture the life of a configMap." classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Volume Placement test back to back pod creation and deletion with different volume sources on the same worker node" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cli] Kubectl Port forwarding [k8s.io] With a server listening on 0.0.0.0 [k8s.io] that expects a client request should support a client that connects, sends DATA, and disconnects" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] [sig-node] Security Context [Feature:SecurityContext] should support volume SELinux relabeling when using hostPID" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] Network Partition [Disruptive] [Slow] [k8s.io] Pods should be evicted from unready Node [Feature:TaintEviction] All pods on the unreachable node should be marked as NotReady upon the node turn NotReady AND all pods should be evicted after eviction timeout passes" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] Proxy version v1 should proxy logs on node [Conformance]" classname="Kubernetes e2e suite" time="8.56845938"></testcase>
<testcase name="[sig-network] Proxy version v1 should proxy logs on node using proxy subresource [Conformance]" classname="Kubernetes e2e suite" time="6.540648694"></testcase>
<testcase name="[sig-network] Services should only allow access from service loadbalancer source ranges [Slow]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-auth] ServiceAccounts should mount an API token into pods [Conformance]" classname="Kubernetes e2e suite" time="23.579973915"></testcase>
<testcase name="[sig-cli] Kubectl client [k8s.io] Kubectl run default should create an rc or deployment from an image [Conformance]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-scheduling] SchedulerPredicates [Serial] validates that NodeSelector is respected if matching [Conformance]" classname="Kubernetes e2e suite" time="93.318190051"></testcase>
<testcase name="[sig-cli] Kubectl client [k8s.io] Kubectl create quota should create a quota without scopes" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cli] Kubectl client [k8s.io] Kubectl run deployment should create a deployment from an image [Conformance]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] Networking Granular Checks: Pods should function for intra-pod communication: udp [Conformance]" classname="Kubernetes e2e suite" time="59.056396671"></testcase>
<testcase name="[sig-multicluster] Multi-AZ Clusters should schedule pods in the same zones as statically provisioned PVs [sig-storage]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] PersistentVolumes:vsphere should test that deleting the PV before the pod does not cause pod deletion to fail on vspehre volume detach" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] Services should prevent NodePort collisions" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Dynamic Provisioning DynamicProvisioner should provision storage with non-default reclaim policy Retain" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] DNS should provide DNS for services [Conformance]" classname="Kubernetes e2e suite" time="41.972548626"></testcase>
<testcase name="[sig-apps] DisruptionController evictions: too few pods, absolute => should not allow an eviction" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] Proxy version v1 should proxy logs on node with explicit kubelet port [Conformance]" classname="Kubernetes e2e suite" time="6.538509917"></testcase>
<testcase name="[sig-storage] HostPath should support existing single file subPath" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-api-machinery] ConfigMap should be consumable via environment variable [Conformance]" classname="Kubernetes e2e suite" time="16.736869395"></testcase>
<testcase name="[sig-apps] Daemon set [Serial] should run and stop complex daemon" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] DNS configMap nameserver should be able to change stubDomain configuration [Slow][Serial]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] GKE local SSD [Feature:GKELocalSSD] should write and read from node local SSD [Feature:GKELocalSSD]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] Sysctls should reject invalid sysctls" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] Services should be able to change the type from NodePort to ExternalName" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Projected optional updates should be reflected in volume [Conformance]" classname="Kubernetes e2e suite" time="32.670747422"></testcase>
<testcase name="[sig-scalability] Density [Feature:Performance] should allow starting 30 pods per node using { ReplicationController} with 0 secrets, 0 configmaps and 0 daemons" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-service-catalog] [Feature:PodPreset] PodPreset should create a pod preset" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] Networking Granular Checks: Services [Slow] should function for client IP based session affinity: http" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-autoscaling] Cluster size autoscaling [Slow] should scale down when expendable pod is running [Feature:ClusterSizeAutoscalingScaleDown]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] Networking Granular Checks: Pods should function for intra-pod communication: http [Conformance]" classname="Kubernetes e2e suite" time="50.804712917"></testcase>
<testcase name="[sig-scalability] Load capacity [Feature:ManualPerformance] should be able to handle 30 pods per node { Random} with 0 secrets, 0 configmaps and 0 daemons" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] Pods should be submitted and removed [Conformance]" classname="Kubernetes e2e suite" time="25.620434422"></testcase>
<testcase name="[sig-storage] Projected should provide container's memory request [Conformance]" classname="Kubernetes e2e suite" time="10.638598827"></testcase>
<testcase name="[sig-storage] ConfigMap should be consumable from pods in volume as non-root with defaultMode and fsGroup set [Feature:FSGroup]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-autoscaling] Cluster size autoscaling [Slow] should create new node if there is no node for node selector [Feature:ClusterSizeAutoscalingScaleWithNAP]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] StatefulSet [k8s.io] Deploy clustered applications [Feature:StatefulSet] [Slow] should creating a working mysql cluster" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Storage Policy Based Volume Provisioning [Feature:vsphere] verify VSAN storage capability with valid objectSpaceReservation and iopsLimit values is honored for dynamically provisioned pvc using storageclass" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cli] Kubectl client [k8s.io] Kubectl run rc should create an rc from an image [Conformance]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] [sig-node] Security Context [Feature:SecurityContext] should support seccomp alpha unconfined annotation on the container [Feature:Seccomp]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] Loadbalancing: L7 [Slow] Nginx should conform to Ingress spec" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cli] Kubectl client [k8s.io] Kubectl run --rm job should create a job from an image, then delete the job [Conformance]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Downward API volume should set mode on item file [Conformance]" classname="Kubernetes e2e suite" time="10.685088482"></testcase>
<testcase name="[sig-network] NetworkPolicy NetworkPolicy between server and client should support allow-all policy [Feature:NetworkPolicy]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] PersistentVolumes-local [Feature:LocalPersistentVolumes] [Serial] when StatefulSet has pod anti-affinity should use volumes spread across nodes" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] PersistentVolumes-local [Feature:LocalPersistentVolumes] [Serial] when one pod requests one prebound PVC should be able to mount volume and write from pod1" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Downward API volume should update annotations on modification [Conformance]" classname="Kubernetes e2e suite" time="107.40581001"></testcase>
<testcase name="[sig-service-catalog] [Feature:PodPreset] PodPreset should not modify the pod on conflict" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] DisruptionController evictions: too few pods, replicaSet, percentage => should not allow an eviction" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Pod Disks detach in a disrupted environment [Slow] [Disruptive] when pod is evicted" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] [Feature:Example] [k8s.io] Storm should create and stop Zookeeper, Nimbus and Storm worker servers" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] EmptyDir wrapper volumes should not conflict" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] Probing container with readiness probe that fails should never be ready and never restart [Conformance]" classname="Kubernetes e2e suite" time="82.407169139"></testcase>
<testcase name="[sig-apps] StatefulSet [k8s.io] Basic StatefulSet functionality [StatefulSetBasic] Burst scaling should run to completion even with unhealthy pods" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cli] Kubectl client [k8s.io] Kubectl api-versions should check if v1 is in available api versions [Conformance]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-api-machinery] Garbage collector should delete pods created by rc when not orphaning" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] [sig-node] Pod garbage collector [Feature:PodGarbageCollector] [Slow] should handle the creation of 1000 pods" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-auth] [Feature:NodeAuthorizer] Getting an existent secret should exit with the Forbidden error" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] EmptyDir volumes should support (non-root,0777,tmpfs) [Conformance]" classname="Kubernetes e2e suite" time="10.517480719"></testcase>
<testcase name="[sig-cluster-lifecycle] Upgrade [Feature:Upgrade] node upgrade should maintain a functioning cluster [Feature:NodeUpgrade]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] DisruptionController evictions: enough pods, absolute => should allow an eviction" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-ui] Kubernetes Dashboard should check that the kubernetes-dashboard instance is alive" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Secrets should be consumable from pods in volume [Conformance]" classname="Kubernetes e2e suite" time="10.562276663"></testcase>
<testcase name="[sig-cli] Kubectl client [k8s.io] Kubectl replace should update a single-container pod's image [Conformance]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] Variable Expansion should allow substituting values in a container's command [Conformance]" classname="Kubernetes e2e suite" time="14.58426551"></testcase>
<testcase name="[sig-storage] Volume FStype [Feature:vsphere] verify fstype - ext3 formatted volume" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Volume Provisioning On Clustered Datastore [Feature:vsphere] verify dynamic provision with default parameter on clustered datastore" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-api-machinery] Namespaces [Serial] should ensure that all pods are removed when a namespace is deleted." classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] Services should be able to change the type from ClusterIP to ExternalName" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] ReplicationController should adopt matching pods on creation" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-auth] ServiceAccounts should allow opting out of API token automount [Conformance]" classname="Kubernetes e2e suite" time="33.108281959"></testcase>
<testcase name="[sig-autoscaling] Cluster size autoscaling [Slow] shouldn't add new node group if not needed [Feature:ClusterSizeAutoscalingScaleWithNAP]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] Docker Containers should be able to override the image's default command and arguments [Conformance]" classname="Kubernetes e2e suite" time="12.690915802"></testcase>
<testcase name="[sig-storage] PersistentVolumes-local [Feature:LocalPersistentVolumes] [Serial] [Volume type: dir] when pod's node is different from PV's NodeAffinity should not be able to mount due to different NodeAffinity" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] HostPath should support r/w" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] Services should release NodePorts on delete" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cli] Kubectl client [k8s.io] Update Demo should do a rolling update of a replication controller [Conformance]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-api-machinery] Secrets should be consumable via the environment [Conformance]" classname="Kubernetes e2e suite" time="15.255755483"></testcase>
<testcase name="[sig-cluster-lifecycle] [Feature:BootstrapTokens] should resign the bootstrap tokens when the clusterInfo ConfigMap updated [Serial][Disruptive]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Projected should provide node allocatable (cpu) as default cpu limit if the limit is not set [Conformance]" classname="Kubernetes e2e suite" time="10.9157887"></testcase>
<testcase name="[sig-cluster-lifecycle] Nodes [Disruptive] Resize [Slow] should be able to add nodes" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] [sig-node] Security Context [Feature:SecurityContext] should support volume SELinux relabeling" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] [sig-node] kubelet [k8s.io] [sig-node] Clean up pods on node kubelet should be able to delete 10 pods per node in 1m0s." classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-api-machinery] ConfigMap should be consumable via the environment [Conformance]" classname="Kubernetes e2e suite" time="14.567308026"></testcase>
<testcase name="[sig-multicluster] Multi-AZ Clusters should only be allowed to provision PDs in zones where nodes exist" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-scheduling] SchedulerPredicates [Serial] validates that taints-tolerations is respected if matching" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Projected should be consumable from pods in volume as non-root with defaultMode and fsGroup set [Feature:FSGroup]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cli] Kubectl Port forwarding [k8s.io] With a server listening on localhost [k8s.io] that expects a client request should support a client that connects, sends DATA, and disconnects" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Dynamic Provisioning DynamicProvisioner External should let an external dynamic provisioner create and delete persistent volumes [Slow]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-scalability] Density [Feature:HighDensityPerformance] should allow starting 95 pods per node using { ReplicationController} with 0 secrets, 0 configmaps and 0 daemons" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] NetworkPolicy NetworkPolicy between server and client should enforce policy based on Ports [Feature:NetworkPolicy]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-api-machinery] Generated clientset should create pods, set the deletionTimestamp and deletionGracePeriodSeconds of the pod" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] CronJob should delete successful finished jobs with limit of one successful job" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] ConfigMap should be consumable from pods in volume [Conformance]" classname="Kubernetes e2e suite" time="10.842480294"></testcase>
<testcase name="[k8s.io] Cluster size autoscaler scalability [Slow] should scale down empty nodes [Feature:ClusterAutoscalerScalability3]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] [sig-node] Security Context [Feature:SecurityContext] should support pod.Spec.SecurityContext.RunAsUser" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Volume Placement should create and delete pod with multiple volumes from same datastore" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Pod Disks schedule pods each with a PD, delete pod and verify detach [Slow] for RW PD with pod delete grace period of "default (30s)"" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] Docker Containers should be able to override the image's default commmand (docker entrypoint) [Conformance]" classname="Kubernetes e2e suite" time="12.844735573"></testcase>
<testcase name="[sig-storage] EmptyDir volumes when FSGroup is specified [Feature:FSGroup] new files should be created with FSGroup ownership when container is root" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] [sig-node] Kubelet [Serial] [Slow] [k8s.io] [sig-node] regular resource usage tracking resource tracking for 0 pods per node" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] DisruptionController evictions: maxUnavailable allow single eviction, percentage => should allow an eviction" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Volumes Ceph RBD [Feature:Volumes] should be mountable" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] StatefulSet [k8s.io] Basic StatefulSet functionality [StatefulSetBasic] should adopt matching orphans and release non-matching pods" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] NetworkPolicy NetworkPolicy between server and client should allow ingress access on one named port [Feature:NetworkPolicy]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Projected optional updates should be reflected in volume [Conformance]" classname="Kubernetes e2e suite" time="32.848538058"></testcase>
<testcase name="[sig-cli] Kubectl client [k8s.io] Kubectl create quota should reject quota with invalid scopes" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] Sysctls should support sysctls" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] PersistentVolumes-local [Feature:LocalPersistentVolumes] [Serial] [Volume type: tmpfs] when pod's node is different from PV's NodeAffinity should not be able to mount due to different NodeAffinity" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] PersistentVolumes NFS with Single PV - PVC pairs create a PV and a pre-bound PVC: test write access" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] Probing container with readiness probe should not be ready before initial delay and never restart [Conformance]" classname="Kubernetes e2e suite" time="46.390368047"></testcase>
<testcase name="[sig-storage] Volumes PD should be mountable with ext3" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-api-machinery] Generated clientset should create v1beta1 cronJobs, delete cronJobs, watch cronJobs" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] [Feature:Example] [k8s.io] Spark should start spark master, driver and workers" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-scheduling] SchedulerPredicates [Serial] validates that taints-tolerations is respected if not matching" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-instrumentation] Logging soak [Performance] [Slow] [Disruptive] should survive logging 1KB every 1s seconds, for a duration of 2m0s, scaling up to 1 pods per node" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Volumes CephFS [Feature:Volumes] should be mountable" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] EmptyDir wrapper volumes should not cause race condition when used for git_repo [Serial] [Slow]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] EmptyDir volumes should support (non-root,0644,default) [Conformance]" classname="Kubernetes e2e suite" time="10.838903327"></testcase>
<testcase name="[sig-storage] PersistentVolumes:vsphere should test that deleting the Namespace of a PVC and Pod causes the successful detach of vsphere volume" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Flexvolumes [Disruptive] [Feature:FlexVolume] should be mountable when non-attachable" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] Loadbalancing: L7 GCE [Slow] [Feature:Ingress] should conform to Ingress spec" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-autoscaling] [HPA] Horizontal pod autoscaling (scale resource: CPU) [sig-autoscaling] [Serial] [Slow] ReplicaSet Should scale from 1 pod to 3 pods and from 3 to 5" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] Networking Granular Checks: Services [Slow] should function for pod-Service: http" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-autoscaling] [Feature:ClusterSizeAutoscalingScaleUp] [Slow] Autoscaling [sig-autoscaling] Autoscaling a service from 1 pod and 3 nodes to 8 pods and >=4 nodes takes less than 15 minutes" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] PersistentVolumes-local [Feature:LocalPersistentVolumes] [Serial] [Volume type: gce-localssd-scsi-fs] when two pods mount a local volume one after the other should be able to write from pod1 and read from pod2" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-instrumentation] Cluster level logging implemented by Stackdriver should ingest events" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-autoscaling] Cluster size autoscaling [Slow] shouldn't increase cluster size if pending pod is too large [Feature:ClusterSizeAutoscalingScaleUp]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Projected should update labels on modification [Conformance]" classname="Kubernetes e2e suite" time="31.053599069"></testcase>
<testcase name="[sig-storage] ConfigMap should be consumable from pods in volume with mappings as non-root with FSGroup [Feature:FSGroup]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] StatefulSet [k8s.io] Basic StatefulSet functionality [StatefulSetBasic] should not deadlock when a pod's predecessor fails" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] [sig-node] Mount propagation [Feature:MountPropagation] should propagate mounts to the host" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] Networking Granular Checks: Services [Slow] should update endpoints: udp" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] PersistentVolumes[Disruptive][Flaky] when kube-controller-manager restarts should delete a bound PVC from a clientPod, restart the kube-control-manager, and ensure the kube-controller-manager does not crash" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-api-machinery] AdmissionWebhook Should mutate pod and apply defaults after mutation" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cli] Kubectl client [k8s.io] Simple pod should support port-forward" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Secrets should be consumable in multiple volumes in a pod [Conformance]" classname="Kubernetes e2e suite" time="10.824353945"></testcase>
<testcase name="[sig-network] DNS should provide DNS for pods for Hostname and Subdomain" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] DisruptionController should create a PodDisruptionBudget" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-api-machinery] Garbage collector should not be blocked by dependency circle" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-instrumentation] MetricsGrabber should grab all metrics from a Kubelet." classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Pod Disks schedule a pod w/ RW PD(s) mounted to 1 or more containers, write to PD, verify content, delete pod, and repeat in rapid succession [Slow] using 1 containers and 2 PDs" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-scheduling] ResourceQuota should create a ResourceQuota and ensure its status is promptly calculated." classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cluster-lifecycle] Upgrade [Feature:Upgrade] master upgrade should maintain a functioning cluster [Feature:MasterUpgrade]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] [Feature:Example] [k8s.io] Liveness liveness pods should be automatically restarted" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-scalability] Density [Feature:ManualPerformance] should allow starting 30 pods per node using { ReplicationController} with 0 secrets, 0 configmaps and 2 daemons" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] Job should run a job to completion when tasks succeed" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-autoscaling] Cluster size autoscaling [Slow] should increase cluster size if pending pods are small and one node is broken [Feature:ClusterSizeAutoscalingScaleUp]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] [sig-node] Security Context [Feature:SecurityContext] should support seccomp alpha unconfined annotation on the pod [Feature:Seccomp]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-autoscaling] Cluster size autoscaling [Slow] should be able to scale down by draining system pods with pdb[Feature:ClusterSizeAutoscalingScaleDown]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-scheduling] ResourceQuota should create a ResourceQuota and capture the life of a replication controller." classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] Services should be able to create an internal type load balancer [Slow] [DisabledForLargeClusters]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] ConfigMap should be consumable from pods in volume with mappings and Item mode set [Conformance]" classname="Kubernetes e2e suite" time="10.723946539"></testcase>
<testcase name="[sig-api-machinery] CustomResourceDefinition resources Simple CustomResourceDefinition creating/deleting custom resource definition objects works [Conformance]" classname="Kubernetes e2e suite" time="7.535806567"></testcase>
<testcase name="[sig-api-machinery] Servers with support for Table transformation should return chunks of table results for list calls" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] Pods should get a host IP [Conformance]" classname="Kubernetes e2e suite" time="26.516705847"></testcase>
<testcase name="[sig-storage] Dynamic Provisioning DynamicProvisioner Default should be disabled by changing the default annotation[Slow] [Serial] [Disruptive]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Volume Disk Format [Feature:vsphere] verify disk format type - thin is honored for dynamically provisioned pv using storageclass" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] Cluster size autoscaler scalability [Slow] should scale down underutilized nodes [Feature:ClusterAutoscalerScalability4]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] Deployment deployment should delete old replica sets" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] Services should be able to update NodePorts with two same port numbers but different protocols" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cluster-lifecycle] Reboot [Disruptive] [Feature:Reboot] each node by dropping all inbound packets for a while and ensure they function afterwards" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-autoscaling] Cluster size autoscaling [Slow] should increase cluster size if pod requesting volume is pending [Feature:ClusterSizeAutoscalingScaleUp]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-scheduling] SchedulerPredicates [Serial] validates that there is no conflict between pods with same hostPort but different hostIP and protocol" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-instrumentation] Cadvisor should be healthy on every node." classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] Deployment deployment should support rollover" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] NetworkPolicy NetworkPolicy between server and client should enforce policy based on NamespaceSelector [Feature:NetworkPolicy]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cluster-lifecycle] Downgrade [Feature:Downgrade] cluster downgrade should maintain a functioning cluster [Feature:ClusterDowngrade]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] Pods should be updated [Conformance]" classname="Kubernetes e2e suite" time="27.110979602"></testcase>
<testcase name="[sig-storage] PersistentVolumes-local [Feature:LocalPersistentVolumes] [Serial] when one pod requests one prebound PVC should be able to mount volume and read from pod1" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] ESIPP [Slow] [DisabledForLargeClusters] should work from pods" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-api-machinery] Namespaces [Serial] should ensure that all services are removed when a namespace is deleted." classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-auth] PodSecurityPolicy should forbid pod creation when no PSP is available" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cluster-lifecycle] Restart [Disruptive] should restart all nodes and ensure all nodes and pods recover" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] Probing container should *not* be restarted with a /healthz http liveness probe [Conformance]" classname="Kubernetes e2e suite" time="130.877402107"></testcase>
<testcase name="[k8s.io] Docker Containers should use the image defaults if command and args are blank [Conformance]" classname="Kubernetes e2e suite" time="10.724709297"></testcase>
<testcase name="[sig-cluster-lifecycle] Node Auto Repairs [Slow] [Disruptive] should repair node [Feature:NodeAutoRepairs]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-scheduling] SchedulerPredicates [Serial] validates that NodeSelector is respected if not matching [Conformance]" classname="Kubernetes e2e suite" time="83.620873456"></testcase>
<testcase name="[sig-storage] HostPath should support subPath" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Volume plugin streaming [Slow] NFS should write files of various sizes, verify size, validate content" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cli] Kubectl client [k8s.io] Kubectl expose should create services for rc [Conformance]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] InitContainer should not start app containers and fail the pod if init containers fail on a RestartNever pod" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] Sysctls should support unsafe sysctls which are actually whitelisted" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cli] Kubectl client [k8s.io] Simple pod should return command exit codes" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Secrets should be able to mount in a volume regardless of a different secret existing with same name in different namespace" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-api-machinery] AdmissionWebhook Should mutate crd" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cli] Kubectl client [k8s.io] Guestbook application should create and stop a working application [Conformance]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] Networking should provide Internet connection for containers [Feature:Networking-IPv6][Experimental]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Downward API volume should update labels on modification [Conformance]" classname="Kubernetes e2e suite" time="117.462422762"></testcase>
<testcase name="[sig-storage] Secrets should be consumable from pods in volume with defaultMode set [Conformance]" classname="Kubernetes e2e suite" time="11.033754601"></testcase>
<testcase name="[sig-storage] vcp at scale [Feature:vsphere] vsphere scale tests" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] [sig-node] Pods Extended [k8s.io] Pods Set QOS Class should be submitted and removed [Conformance]" classname="Kubernetes e2e suite" time="22.465892286"></testcase>
<testcase name="[sig-apps] ReplicaSet should serve a basic image on each replica with a private image" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Volumes Azure Disk [Feature:Volumes] should be mountable [Slow]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] StatefulSet [k8s.io] Deploy clustered applications [Feature:StatefulSet] [Slow] should creating a working redis cluster" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] PersistentVolumes GCEPD should test that deleting the PV before the pod does not cause pod deletion to fail on PD detach" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Secrets should be consumable from pods in volume with mappings and Item Mode set [Conformance]" classname="Kubernetes e2e suite" time="8.789570879"></testcase>
<testcase name="[sig-scalability] Load capacity [Feature:ManualPerformance] should be able to handle 30 pods per node {batch Job} with 0 secrets, 0 configmaps and 0 daemons" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] PersistentVolumes-local [Feature:LocalPersistentVolumes] [Serial] [Volume type: tmpfs] when pod's node is different from PV's NodeAffinity should not be able to mount due to different NodeSelector" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-instrumentation] Stackdriver Monitoring should have cluster metrics [Feature:StackdriverMonitoring]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-scheduling] [Feature:GPU] run Nvidia GPU tests on Container Optimized OS only" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Volume Provisioning On Clustered Datastore [Feature:vsphere] verify dynamic provision with spbm policy on clustered datastore" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Storage Policy Based Volume Provisioning [Feature:vsphere] verify an existing and compatible SPBM policy is honored for dynamically provisioned pvc using storageclass" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Volumes Cinder [Feature:Volumes] should be mountable" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-api-machinery] Garbage collector should orphan pods created by rc if delete options say so" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Volumes PD should be mountable with xfs" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] PersistentVolumes:vsphere should test that a file written to the vspehre volume mount before kubelet restart can be read after restart [Disruptive]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Flexvolumes [Disruptive] [Feature:FlexVolume] should be mountable when attachable" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] EmptyDir volumes when FSGroup is specified [Feature:FSGroup] new files should be created with FSGroup ownership when container is non-root" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cli] Kubectl Port forwarding [k8s.io] With a server listening on localhost [k8s.io] that expects a client request should support a client that connects, sends NO DATA, and disconnects" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] PersistentVolumes NFS with Single PV - PVC pairs create a PVC and non-pre-bound PV: test write access" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-scalability] Density [Feature:ManualPerformance] should allow starting 100 pods per node using { ReplicationController} with 0 secrets, 0 configmaps and 0 daemons" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] Downward API [Serial] [Disruptive] Downward API tests for local ephemeral storage should provide default limits.ephemeral-storage from node allocatable" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Volume FStype [Feature:vsphere] verify invalid fstype" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-scalability] Density [Feature:ManualPerformance] should allow starting 50 pods per node using { ReplicationController} with 0 secrets, 0 configmaps and 0 daemons" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] PersistentVolumes[Disruptive][Flaky] when kubelet restarts Should test that a file written to the mount before kubelet restart is readable after restart." classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cli] Kubectl client [k8s.io] Kubectl rolling-update should support rolling-update to same image [Conformance]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-scheduling] ResourceQuota should create a ResourceQuota and capture the life of a persistent volume claim. [sig-storage]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] [sig-node] Kubelet [Serial] [Slow] [k8s.io] [sig-node] regular resource usage tracking resource tracking for 100 pods per node" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Downward API volume should provide podname only [Conformance]" classname="Kubernetes e2e suite" time="10.600389288"></testcase>
<testcase name="[sig-storage] Projected should provide node allocatable (memory) as default memory limit if the limit is not set [Conformance]" classname="Kubernetes e2e suite" time="10.735019639"></testcase>
<testcase name="[sig-api-machinery] Downward API should provide container's limits.cpu/memory and requests.cpu/memory as env vars [Conformance]" classname="Kubernetes e2e suite" time="12.750636727"></testcase>
<testcase name="[sig-network] Networking Granular Checks: Pods should function for node-pod communication: udp [Conformance]" classname="Kubernetes e2e suite" time="48.836278724"></testcase>
<testcase name="[sig-autoscaling] [HPA] Horizontal pod autoscaling (scale resource: CPU) [sig-autoscaling] [DisabledForLargeClusters] ReplicationController light Should scale from 2 pods to 1 pod" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] PersistentVolumes NFS with multiple PVs and PVCs all in same ns should create 4 PVs and 2 PVCs: test write access [Slow]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] DisruptionController evictions: no PDB => should allow an eviction" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] Pods should support remote command execution over websockets" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-instrumentation] MetricsGrabber should grab all metrics from API server." classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-auth] Metadata Concealment should run a check-metadata-concealment job to completion" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] PersistentVolumes NFS when invoking the Recycle reclaim policy should test that a PV becomes Available and is clean after the PVC is deleted." classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-api-machinery] Garbage collector should not delete dependents that have both valid owner and owner that's waiting for dependents to be deleted" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] [Feature:Example] [k8s.io] Secret should create a pod that reads a secret" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cluster-lifecycle] Upgrade [Feature:Upgrade] cluster upgrade should maintain a functioning cluster [Feature:ClusterUpgrade]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-api-machinery] Namespaces [Serial] should always delete fast (ALL of 100 namespaces in 150 seconds) [Feature:ComprehensiveNamespaceDraining]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-autoscaling] Cluster size autoscaling [Slow] Should be able to scale a node group down to 0[Feature:ClusterSizeAutoscalingScaleDown]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cluster-lifecycle] [Feature:BootstrapTokens] should delete the signed bootstrap tokens from clusterInfo ConfigMap when bootstrap token is deleted" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Projected should be consumable from pods in volume [Conformance]" classname="Kubernetes e2e suite" time="11.154271036"></testcase>
<testcase name="[sig-api-machinery] Servers with support for API chunking should return chunks of results for list calls" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cluster-lifecycle] HA-master [Feature:HAMaster] survive addition/removal replicas multizone workers [Serial][Disruptive]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] DaemonRestart [Disruptive] Scheduler should continue assigning pods to nodes across restart" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Projected should be consumable from pods in volume with defaultMode set [Conformance]" classname="Kubernetes e2e suite" time="10.579168089"></testcase>
<testcase name="[sig-storage] PersistentVolumes [Feature:ReclaimPolicy] [sig-storage] persistentvolumereclaim:vsphere should delete persistent volume when reclaimPolicy set to delete and associated claim is deleted" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Storage Policy Based Volume Provisioning [Feature:vsphere] verify VSAN storage capability with invalid hostFailuresToTolerate value is not honored for dynamically provisioned pvc using storageclass" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] StatefulSet [k8s.io] Deploy clustered applications [Feature:StatefulSet] [Slow] should creating a working zookeeper cluster" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] [sig-node] AppArmor load AppArmor profiles can disable an AppArmor profile, using unconfined" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] [Feature:Example] [k8s.io] Cassandra should create and scale cassandra" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Volume Attach Verify [Feature:vsphere][Serial][Disruptive] verify volume remains attached after master kubelet restart" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-autoscaling] Cluster size autoscaling [Slow] shouldn't scale up if cores limit too low, should scale up after limit is changed [Feature:ClusterSizeAutoscalingScaleWithNAP]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Downward API volume should provide container's cpu request [Conformance]" classname="Kubernetes e2e suite" time="10.465931627"></testcase>
<testcase name="[sig-autoscaling] Cluster size autoscaling [Slow] Shouldn't perform scale up operation and should list unhealthy status if most of the cluster is broken[Feature:ClusterSizeAutoscalingScaleUp]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-scalability] Density [Feature:ManualPerformance] should allow starting 30 pods per node using {extensions Deployment} with 0 secrets, 2 configmaps and 0 daemons" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-autoscaling] Cluster size autoscaling [Slow] shouldn't scale up when expendable pod is preempted [Feature:ClusterSizeAutoscalingScaleUp]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Projected should be consumable from pods in volume with defaultMode set [Conformance]" classname="Kubernetes e2e suite" time="10.574631671"></testcase>
<testcase name="[sig-cli] Kubectl client [k8s.io] Proxy server should support proxy with --port 0 [Conformance]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] Services should check NodePort out-of-range" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-auth] ServiceAccounts should ensure a single API token exists" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Projected should be consumable from pods in volume as non-root with FSGroup [Feature:FSGroup]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Downward API volume should provide container's cpu limit [Conformance]" classname="Kubernetes e2e suite" time="10.951179963"></testcase>
<testcase name="[sig-cluster-lifecycle] [Feature:BootstrapTokens] should delete the token secret when the secret expired" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Projected should be consumable from pods in volume with mappings [Conformance]" classname="Kubernetes e2e suite" time="10.609846883"></testcase>
<testcase name="[sig-scheduling] SchedulerPredicates [Serial] validates that required NodeAffinity setting is respected if matching" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-autoscaling] Cluster size autoscaling [Slow] should increase cluster size if pod requesting EmptyDir volume is pending [Feature:ClusterSizeAutoscalingScaleUp]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Projected should project all components that make up the projection API [Projection] [Conformance]" classname="Kubernetes e2e suite" time="12.556857805"></testcase>
<testcase name="[sig-scheduling] ResourceQuota should create a ResourceQuota and capture the life of a persistent volume claim with a storage class. [sig-storage]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cluster-lifecycle] Reboot [Disruptive] [Feature:Reboot] each node by triggering kernel panic and ensure they function upon restart" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-api-machinery] Downward API should provide host IP as an env var [Conformance]" classname="Kubernetes e2e suite" time="14.599299563"></testcase>
<testcase name="[sig-storage] EmptyDir volumes should support (non-root,0666,default) [Conformance]" classname="Kubernetes e2e suite" time="10.517828479"></testcase>
<testcase name="[sig-cli] Kubectl client [k8s.io] Proxy server should support --unix-socket=/path [Conformance]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] Network Partition [Disruptive] [Slow] [k8s.io] [ReplicationController] should recreate pods scheduled on the unreachable node AND allow scheduling of pods on a node after it rejoins the cluster" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cluster-lifecycle] [Feature:BootstrapTokens] should not delete the token secret when the secret is not expired" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] EmptyDir volumes volume on default medium should have the correct mode [Conformance]" classname="Kubernetes e2e suite" time="10.685235445"></testcase>
<testcase name="[sig-cli] Kubectl client [k8s.io] Kubectl run job should create a job from an image when restart is OnFailure [Conformance]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] PersistentVolumes-local [Feature:LocalPersistentVolumes] [Serial] [Volume type: dir] when pod's node is different from PV's NodeName should not be able to mount due to different NodeName" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Volumes ConfigMap should be mountable" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] Job should delete a job" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] NetworkPolicy NetworkPolicy between server and client should enforce policy based on PodSelector [Feature:NetworkPolicy]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] Pods should cap back-off at MaxContainerBackOff [Slow]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] Loadbalancing: L7 GCE [Slow] [Feature:NEG] should be able to switch between IG and NEG modes" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Dynamic Provisioning DynamicProvisioner should test that deleting a claim before the volume is provisioned deletes the volume." classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] CronJob should not emit unexpected warnings" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Projected should be consumable from pods in volume with mappings [Conformance]" classname="Kubernetes e2e suite" time="10.616199552"></testcase>
<testcase name="[k8s.io] [sig-node] Events should be sent by kubelets and the scheduler about pods scheduling and running [Conformance]" classname="Kubernetes e2e suite" time="30.725813184"></testcase>
<testcase name="[sig-storage] Downward API volume should provide node allocatable (cpu) as default cpu limit if the limit is not set [Conformance]" classname="Kubernetes e2e suite" time="10.686709468"></testcase>
<testcase name="[sig-storage] [Serial] Volume metrics should create prometheus metrics for volume provisioning and attach/detach" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] InitContainer should invoke init containers on a RestartAlways pod" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] StatefulSet [k8s.io] Basic StatefulSet functionality [StatefulSetBasic] should provide basic identity" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cluster-lifecycle] Nodes [Disruptive] Resize [Slow] should be able to delete nodes" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Projected should provide podname as non-root with fsgroup [Feature:FSGroup]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] ESIPP [Slow] [DisabledForLargeClusters] should only target nodes with endpoints" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-autoscaling] [HPA] Horizontal pod autoscaling (scale resource: CPU) [sig-autoscaling] [Serial] [Slow] Deployment Should scale from 5 pods to 3 pods and from 3 to 1" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] Job should adopt matching orphans and release non-matching pods" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] EmptyDir volumes should support (root,0777,default) [Conformance]" classname="Kubernetes e2e suite" time="10.929092655"></testcase>
<testcase name="[sig-network] ESIPP [Slow] [DisabledForLargeClusters] should work for type=LoadBalancer" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] DaemonRestart [Disruptive] Controller Manager should not create/delete replicas across restart" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-scheduling] ResourceQuota should verify ResourceQuota with terminating scopes." classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-scheduling] SchedulerPredicates [Serial] validates MaxPods limit number of pods that are allowed to run [Slow]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-scheduling] SchedulerPriorities [Serial] Pod should be schedule to node that don't match the PodAntiAffinity terms" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] PersistentVolumes-local [Feature:LocalPersistentVolumes] [Serial] [Volume type: dir] when two pods mount a local volume one after the other should be able to write from pod1 and read from pod2" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Pod Disks detach in a disrupted environment [Slow] [Disruptive] when node's API object is deleted" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] PersistentVolumes-local [Feature:LocalPersistentVolumes] [Serial] [Volume type: gce-localssd-scsi-fs] when pod's node is different from PV's NodeAffinity should not be able to mount due to different NodeSelector" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] PersistentVolumes:vsphere should test that deleting a PVC before the pod does not cause pod deletion to fail on vsphere volume detach" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-scheduling] [Feature:GPUDevicePlugin] run Nvidia GPU Device Plugin tests on Container Optimized OS only" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] [sig-node] Security Context [Feature:SecurityContext] should support pod.Spec.SecurityContext.SupplementalGroups" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] PersistentVolumes GCEPD should test that deleting a PVC before the pod does not cause pod deletion to fail on PD detach" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Volume Placement should create and delete pod with multiple volumes from different datastore" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-scheduling] SchedulerPreemption [Serial] [Feature:PodPreemption] validates pod anti-affinity works in preemption" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-autoscaling] Cluster size autoscaling [Slow] shouldn't scale up when expendable pod is created [Feature:ClusterSizeAutoscalingScaleUp]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cluster-lifecycle] Reboot [Disruptive] [Feature:Reboot] each node by ordering clean reboot and ensure they function upon restart" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Downward API volume should provide container's memory limit [Conformance]" classname="Kubernetes e2e suite" time="10.902413631"></testcase>
<testcase name="[sig-network] Networking Granular Checks: Services [Slow] should function for endpoint-Service: udp" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] Job should run a job to completion when tasks sometimes fail and are not locally restarted" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Dynamic Provisioning DynamicProvisioner should not provision a volume in an unmanaged GCE zone. [Slow]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] EmptyDir volumes when FSGroup is specified [Feature:FSGroup] volume on default medium should have the correct mode using FSGroup" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] Probing container should *not* be restarted with a exec "cat /tmp/health" liveness probe [Conformance]" classname="Kubernetes e2e suite" time="134.858206617"></testcase>
<testcase name="[sig-network] ESIPP [Slow] [DisabledForLargeClusters] should handle updates to ExternalTrafficPolicy field" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-instrumentation] Cluster level logging implemented by Stackdriver should ingest logs [Feature:StackdriverLogging]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Downward API volume should provide node allocatable (memory) as default memory limit if the limit is not set [Conformance]" classname="Kubernetes e2e suite" time="10.594615133"></testcase>
<testcase name="[sig-network] Networking should provide unchanging, static URL paths for kubernetes api services" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] ESIPP [Slow] [DisabledForLargeClusters] should work for type=NodePort" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] Probing container should be restarted with a /healthz http liveness probe [Conformance]" classname="Kubernetes e2e suite" time="32.722755961"></testcase>
<testcase name="[sig-api-machinery] Downward API should provide pod UID as env vars [Conformance]" classname="Kubernetes e2e suite" time="14.711298474"></testcase>
<testcase name="[sig-apps] CronJob should not schedule new jobs when ForbidConcurrent [Slow]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] vcp-performance [Feature:vsphere] vcp performance tests" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] EmptyDir wrapper volumes should not cause race condition when used for configmaps [Serial] [Slow]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Volumes NFS should be mountable" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cli] Kubectl client [k8s.io] Kubectl run CronJob should create a CronJob" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] ConfigMap updates should be reflected in volume [Conformance]" classname="Kubernetes e2e suite" time="94.981796441"></testcase>
<testcase name="[sig-storage] ConfigMap optional updates should be reflected in volume [Conformance]" classname="Kubernetes e2e suite" time="32.722513975"></testcase>
<testcase name="[sig-scheduling] ResourceQuota should create a ResourceQuota and capture the life of a replica set." classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] DaemonRestart [Disruptive] Kubelet should not restart containers across restart" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-autoscaling] Cluster size autoscaling [Slow] should correctly scale down after a node is not needed and one node is broken [Feature:ClusterSizeAutoscalingScaleDown]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Storage Policy Based Volume Provisioning [Feature:vsphere] verify VSAN storage capability with non-vsan datastore is not honored for dynamically provisioned pvc using storageclass" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] StatefulSet [k8s.io] Basic StatefulSet functionality [StatefulSetBasic] should have a working scale subresource" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] PersistentVolumes NFS with multiple PVs and PVCs all in same ns should create 3 PVs and 3 PVCs: test write access" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-scalability] Density [Feature:ManualPerformance] should allow starting 30 pods per node using {batch Job} with 0 secrets, 0 configmaps and 0 daemons" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] [sig-node] Security Context [Feature:SecurityContext] should support seccomp alpha docker/default annotation [Feature:Seccomp]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-scheduling] LimitRange should create a LimitRange with defaults and ensure pod has those defaults applied." classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-autoscaling] Cluster size autoscaling [Slow] shouldn't be able to scale down when rescheduling a pod is required, but pdb doesn't allow drain[Feature:ClusterSizeAutoscalingScaleDown]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-scheduling] Rescheduler [Serial] should ensure that critical pod is scheduled in case there is no resources available" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-auth] PodSecurityPolicy should enforce the restricted PodSecurityPolicy" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] [Feature:Example] [k8s.io] RethinkDB should create and stop rethinkdb servers" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Node Poweroff [Feature:vsphere] [Slow] [Disruptive] verify volume status after node power off" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] Firewall rule should have correct firewall rules for e2e cluster" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-instrumentation] Stackdriver Monitoring should run Custom Metrics - Stackdriver Adapter [Feature:StackdriverCustomMetrics]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] Firewall rule [Slow] [Serial] should create valid firewall rules for LoadBalancer type service" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] LimitRange should create a LimitRange with default ephemeral storage and ensure pod has the default applied." classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[k8s.io] [sig-node] AppArmor load AppArmor profiles should enforce an AppArmor profile" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Volume plugin streaming [Slow] iSCSI [Feature:Volumes] should write files of various sizes, verify size, validate content" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cli] Kubectl client [k8s.io] Kubectl taint [Serial] should remove all the taints with the same key off a node" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] HostPath should support existing directory subPath" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-instrumentation] Cluster level logging implemented by Stackdriver should ingest logs" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-autoscaling] [HPA] Horizontal pod autoscaling (scale resource: Custom Metrics from Stackdriver) should autoscale with Custom Metrics from Stackdriver [Feature:CustomMetricsAutoscaling]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-api-machinery] Etcd failure [Disruptive] should recover from network partition with master" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Secrets should be consumable from pods in volume with mappings [Conformance]" classname="Kubernetes e2e suite" time="10.842525916"></testcase>
<testcase name="[sig-network] NetworkPolicy NetworkPolicy between server and client should support a 'default-deny' policy [Feature:NetworkPolicy]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-cluster-lifecycle] [Feature:BootstrapTokens] should sign the new added bootstrap tokens" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-autoscaling] Cluster size autoscaling [Slow] should disable node pool autoscaling [Feature:ClusterSizeAutoscalingScaleUp]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-autoscaling] DNS horizontal autoscaling kube-dns-autoscaler should scale kube-dns pods in both nonfaulty and faulty scenarios" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-network] DNS should provide DNS for ExternalName services" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-autoscaling] [HPA] Horizontal pod autoscaling (scale resource: CPU) [sig-autoscaling] [Serial] [Slow] Deployment Should scale from 1 pod to 3 pods and from 3 to 5" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] PersistentVolumes NFS with multiple PVs and PVCs all in same ns should create 2 PVs and 4 PVCs: test write access" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Volume Provisioning on Datastore [Feature:vsphere] verify dynamically provisioned pv using storageclass fails on an invalid datastore" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Volume plugin streaming [Slow] Ceph-RBD [Feature:Volumes] should write files of various sizes, verify size, validate content" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-instrumentation] MetricsGrabber should grab all metrics from a Scheduler." classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-apps] Job should exceed active deadline" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-auth] PodSecurityPolicy should allow pods under the privileged PodSecurityPolicy" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] Projected should provide podname only [Conformance]" classname="Kubernetes e2e suite" time="10.877143896"></testcase>
<testcase name="[sig-storage] Downward API volume should provide podname as non-root with fsgroup [Feature:FSGroup]" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>
</testcase>
<testcase name="[sig-storage] PersistentVolumes-local [Feature:LocalPersistentVolumes] [Serial] [Volume type: gce-localssd-scsi-fs] when pod's node is different from PV's NodeAffinity should not be able to mount due to different NodeAffinity" classname="Kubernetes e2e suite" time="0">
<skipped></skipped>