forked from cncf/k8s-conformance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathe2e.log
9611 lines (9286 loc) · 968 KB
/
e2e.log
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
I0611 15:01:36.340745 15 test_context.go:359] Using a temporary kubeconfig file from in-cluster config : /tmp/kubeconfig-160876913
I0611 15:01:36.340872 15 e2e.go:224] Starting e2e run "ce95549c-8c59-11e9-8426-0a96f5951f5b" on Ginkgo node 1
Running Suite: Kubernetes e2e suite
===================================
Random Seed: 1560265295 - Will randomize all specs
Will run 179 of 2161 specs
Jun 11 15:01:36.460: INFO: >>> kubeConfig: /tmp/kubeconfig-160876913
Jun 11 15:01:36.462: INFO: Waiting up to 30m0s for all (but 0) nodes to be schedulable
Jun 11 15:01:36.472: INFO: Waiting up to 10m0s for all pods (need at least 0) in namespace 'kube-system' to be running and ready
Jun 11 15:01:36.511: INFO: 14 / 14 pods in namespace 'kube-system' are running and ready (0 seconds elapsed)
Jun 11 15:01:36.511: INFO: expected 2 pod replicas in namespace 'kube-system', 2 are Running and Ready.
Jun 11 15:01:36.511: INFO: Waiting up to 5m0s for all daemonsets in namespace 'kube-system' to start
Jun 11 15:01:36.519: INFO: 6 / 6 pods ready in namespace 'kube-system' in daemonset 'aws-node' (0 seconds elapsed)
Jun 11 15:01:36.519: INFO: 6 / 6 pods ready in namespace 'kube-system' in daemonset 'kube-proxy' (0 seconds elapsed)
Jun 11 15:01:36.519: INFO: e2e test version: v1.13.5-eks-9daac0
Jun 11 15:01:36.521: INFO: kube-apiserver version: v1.13.7-eks-c57ff8
SSSS
------------------------------
[k8s.io] Kubelet when scheduling a busybox command that always fails in a pod
should have an terminated reason [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
[BeforeEach] [k8s.io] Kubelet
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:153
STEP: Creating a kubernetes client
Jun 11 15:01:36.521: INFO: >>> kubeConfig: /tmp/kubeconfig-160876913
STEP: Building a namespace api object, basename kubelet-test
Jun 11 15:01:36.615: INFO: Found PodSecurityPolicies; assuming PodSecurityPolicy is enabled.
Jun 11 15:01:36.636: INFO: Found ClusterRoles; assuming RBAC is enabled.
STEP: Binding the e2e-test-privileged-psp PodSecurityPolicy to the default service account in e2e-tests-kubelet-test-ms47b
STEP: Waiting for a default service account to be provisioned in namespace
[BeforeEach] [k8s.io] Kubelet
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/common/kubelet.go:37
[BeforeEach] when scheduling a busybox command that always fails in a pod
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/common/kubelet.go:81
[It] should have an terminated reason [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
[AfterEach] [k8s.io] Kubelet
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:154
Jun 11 15:01:44.779: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready
STEP: Destroying namespace "e2e-tests-kubelet-test-ms47b" for this suite.
Jun 11 15:01:50.803: INFO: Waiting up to 30s for server preferred namespaced resources to be successfully discovered
Jun 11 15:01:50.819: INFO: namespace: e2e-tests-kubelet-test-ms47b, resource: bindings, ignored listing per whitelist
Jun 11 15:01:50.952: INFO: namespace e2e-tests-kubelet-test-ms47b deletion completed in 6.166158724s
• [SLOW TEST:14.431 seconds]
[k8s.io] Kubelet
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:694
when scheduling a busybox command that always fails in a pod
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/common/kubelet.go:78
should have an terminated reason [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
------------------------------
SSSSSSSSSSSSSS
------------------------------
[sig-node] Downward API
should provide pod name, namespace and IP address as env vars [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
[BeforeEach] [sig-node] Downward API
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:153
STEP: Creating a kubernetes client
Jun 11 15:01:50.953: INFO: >>> kubeConfig: /tmp/kubeconfig-160876913
STEP: Building a namespace api object, basename downward-api
STEP: Binding the e2e-test-privileged-psp PodSecurityPolicy to the default service account in e2e-tests-downward-api-42vs6
STEP: Waiting for a default service account to be provisioned in namespace
[It] should provide pod name, namespace and IP address as env vars [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
STEP: Creating a pod to test downward api env vars
Jun 11 15:01:51.161: INFO: Waiting up to 5m0s for pod "downward-api-d7c51e2f-8c59-11e9-8426-0a96f5951f5b" in namespace "e2e-tests-downward-api-42vs6" to be "success or failure"
Jun 11 15:01:51.166: INFO: Pod "downward-api-d7c51e2f-8c59-11e9-8426-0a96f5951f5b": Phase="Pending", Reason="", readiness=false. Elapsed: 4.864591ms
Jun 11 15:01:53.171: INFO: Pod "downward-api-d7c51e2f-8c59-11e9-8426-0a96f5951f5b": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009962845s
Jun 11 15:01:55.176: INFO: Pod "downward-api-d7c51e2f-8c59-11e9-8426-0a96f5951f5b": Phase="Pending", Reason="", readiness=false. Elapsed: 4.014965676s
Jun 11 15:01:57.181: INFO: Pod "downward-api-d7c51e2f-8c59-11e9-8426-0a96f5951f5b": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.02008159s
STEP: Saw pod success
Jun 11 15:01:57.181: INFO: Pod "downward-api-d7c51e2f-8c59-11e9-8426-0a96f5951f5b" satisfied condition "success or failure"
Jun 11 15:01:57.185: INFO: Trying to get logs from node ip-192-168-93-128.us-west-2.compute.internal pod downward-api-d7c51e2f-8c59-11e9-8426-0a96f5951f5b container dapi-container: <nil>
STEP: delete the pod
Jun 11 15:01:57.216: INFO: Waiting for pod downward-api-d7c51e2f-8c59-11e9-8426-0a96f5951f5b to disappear
Jun 11 15:01:57.220: INFO: Pod downward-api-d7c51e2f-8c59-11e9-8426-0a96f5951f5b no longer exists
[AfterEach] [sig-node] Downward API
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:154
Jun 11 15:01:57.220: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready
STEP: Destroying namespace "e2e-tests-downward-api-42vs6" for this suite.
Jun 11 15:02:03.247: INFO: Waiting up to 30s for server preferred namespaced resources to be successfully discovered
Jun 11 15:02:03.345: INFO: namespace: e2e-tests-downward-api-42vs6, resource: bindings, ignored listing per whitelist
Jun 11 15:02:03.398: INFO: namespace e2e-tests-downward-api-42vs6 deletion completed in 6.171416376s
• [SLOW TEST:12.446 seconds]
[sig-node] Downward API
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/common/downward_api.go:38
should provide pod name, namespace and IP address as env vars [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
------------------------------
SSSS
------------------------------
[sig-api-machinery] Secrets
should be consumable via the environment [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
[BeforeEach] [sig-api-machinery] Secrets
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:153
STEP: Creating a kubernetes client
Jun 11 15:02:03.399: INFO: >>> kubeConfig: /tmp/kubeconfig-160876913
STEP: Building a namespace api object, basename secrets
STEP: Binding the e2e-test-privileged-psp PodSecurityPolicy to the default service account in e2e-tests-secrets-xl256
STEP: Waiting for a default service account to be provisioned in namespace
[It] should be consumable via the environment [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
STEP: creating secret e2e-tests-secrets-xl256/secret-test-df30fb77-8c59-11e9-8426-0a96f5951f5b
STEP: Creating a pod to test consume secrets
Jun 11 15:02:03.619: INFO: Waiting up to 5m0s for pod "pod-configmaps-df323cda-8c59-11e9-8426-0a96f5951f5b" in namespace "e2e-tests-secrets-xl256" to be "success or failure"
Jun 11 15:02:03.623: INFO: Pod "pod-configmaps-df323cda-8c59-11e9-8426-0a96f5951f5b": Phase="Pending", Reason="", readiness=false. Elapsed: 4.527764ms
Jun 11 15:02:05.628: INFO: Pod "pod-configmaps-df323cda-8c59-11e9-8426-0a96f5951f5b": Phase="Succeeded", Reason="", readiness=false. Elapsed: 2.009472043s
STEP: Saw pod success
Jun 11 15:02:05.628: INFO: Pod "pod-configmaps-df323cda-8c59-11e9-8426-0a96f5951f5b" satisfied condition "success or failure"
Jun 11 15:02:05.633: INFO: Trying to get logs from node ip-192-168-93-128.us-west-2.compute.internal pod pod-configmaps-df323cda-8c59-11e9-8426-0a96f5951f5b container env-test: <nil>
STEP: delete the pod
Jun 11 15:02:05.662: INFO: Waiting for pod pod-configmaps-df323cda-8c59-11e9-8426-0a96f5951f5b to disappear
Jun 11 15:02:05.666: INFO: Pod pod-configmaps-df323cda-8c59-11e9-8426-0a96f5951f5b no longer exists
[AfterEach] [sig-api-machinery] Secrets
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:154
Jun 11 15:02:05.666: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready
STEP: Destroying namespace "e2e-tests-secrets-xl256" for this suite.
Jun 11 15:02:11.692: INFO: Waiting up to 30s for server preferred namespaced resources to be successfully discovered
Jun 11 15:02:11.782: INFO: namespace: e2e-tests-secrets-xl256, resource: bindings, ignored listing per whitelist
Jun 11 15:02:11.837: INFO: namespace e2e-tests-secrets-xl256 deletion completed in 6.162691045s
• [SLOW TEST:8.439 seconds]
[sig-api-machinery] Secrets
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/common/secrets.go:32
should be consumable via the environment [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
------------------------------
SSSSS
------------------------------
[sig-storage] Secrets
should be consumable from pods in volume with mappings [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
[BeforeEach] [sig-storage] Secrets
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:153
STEP: Creating a kubernetes client
Jun 11 15:02:11.837: INFO: >>> kubeConfig: /tmp/kubeconfig-160876913
STEP: Building a namespace api object, basename secrets
STEP: Binding the e2e-test-privileged-psp PodSecurityPolicy to the default service account in e2e-tests-secrets-9dfzn
STEP: Waiting for a default service account to be provisioned in namespace
[It] should be consumable from pods in volume with mappings [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
STEP: Creating secret with name secret-test-map-e436847d-8c59-11e9-8426-0a96f5951f5b
STEP: Creating a pod to test consume secrets
Jun 11 15:02:12.045: INFO: Waiting up to 5m0s for pod "pod-secrets-e437da44-8c59-11e9-8426-0a96f5951f5b" in namespace "e2e-tests-secrets-9dfzn" to be "success or failure"
Jun 11 15:02:12.050: INFO: Pod "pod-secrets-e437da44-8c59-11e9-8426-0a96f5951f5b": Phase="Pending", Reason="", readiness=false. Elapsed: 4.990882ms
Jun 11 15:02:14.055: INFO: Pod "pod-secrets-e437da44-8c59-11e9-8426-0a96f5951f5b": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010005725s
Jun 11 15:02:16.061: INFO: Pod "pod-secrets-e437da44-8c59-11e9-8426-0a96f5951f5b": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.01516341s
STEP: Saw pod success
Jun 11 15:02:16.061: INFO: Pod "pod-secrets-e437da44-8c59-11e9-8426-0a96f5951f5b" satisfied condition "success or failure"
Jun 11 15:02:16.065: INFO: Trying to get logs from node ip-192-168-230-15.us-west-2.compute.internal pod pod-secrets-e437da44-8c59-11e9-8426-0a96f5951f5b container secret-volume-test: <nil>
STEP: delete the pod
Jun 11 15:02:16.096: INFO: Waiting for pod pod-secrets-e437da44-8c59-11e9-8426-0a96f5951f5b to disappear
Jun 11 15:02:16.100: INFO: Pod pod-secrets-e437da44-8c59-11e9-8426-0a96f5951f5b no longer exists
[AfterEach] [sig-storage] Secrets
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:154
Jun 11 15:02:16.100: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready
STEP: Destroying namespace "e2e-tests-secrets-9dfzn" for this suite.
Jun 11 15:02:22.123: INFO: Waiting up to 30s for server preferred namespaced resources to be successfully discovered
Jun 11 15:02:22.173: INFO: namespace: e2e-tests-secrets-9dfzn, resource: bindings, ignored listing per whitelist
Jun 11 15:02:22.268: INFO: namespace e2e-tests-secrets-9dfzn deletion completed in 6.161457709s
• [SLOW TEST:10.431 seconds]
[sig-storage] Secrets
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/common/secrets_volume.go:34
should be consumable from pods in volume with mappings [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
------------------------------
SSSSSSSSSSS
------------------------------
[sig-storage] Projected downwardAPI
should set mode on item file [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
[BeforeEach] [sig-storage] Projected downwardAPI
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:153
STEP: Creating a kubernetes client
Jun 11 15:02:22.268: INFO: >>> kubeConfig: /tmp/kubeconfig-160876913
STEP: Building a namespace api object, basename projected
STEP: Binding the e2e-test-privileged-psp PodSecurityPolicy to the default service account in e2e-tests-projected-5hz6l
STEP: Waiting for a default service account to be provisioned in namespace
[BeforeEach] [sig-storage] Projected downwardAPI
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/common/projected_downwardapi.go:39
[It] should set mode on item file [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
STEP: Creating a pod to test downward API volume plugin
Jun 11 15:02:22.474: INFO: Waiting up to 5m0s for pod "downwardapi-volume-ea6f4eac-8c59-11e9-8426-0a96f5951f5b" in namespace "e2e-tests-projected-5hz6l" to be "success or failure"
Jun 11 15:02:22.480: INFO: Pod "downwardapi-volume-ea6f4eac-8c59-11e9-8426-0a96f5951f5b": Phase="Pending", Reason="", readiness=false. Elapsed: 6.095878ms
Jun 11 15:02:24.485: INFO: Pod "downwardapi-volume-ea6f4eac-8c59-11e9-8426-0a96f5951f5b": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011041246s
Jun 11 15:02:26.490: INFO: Pod "downwardapi-volume-ea6f4eac-8c59-11e9-8426-0a96f5951f5b": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.016203019s
STEP: Saw pod success
Jun 11 15:02:26.490: INFO: Pod "downwardapi-volume-ea6f4eac-8c59-11e9-8426-0a96f5951f5b" satisfied condition "success or failure"
Jun 11 15:02:26.495: INFO: Trying to get logs from node ip-192-168-192-169.us-west-2.compute.internal pod downwardapi-volume-ea6f4eac-8c59-11e9-8426-0a96f5951f5b container client-container: <nil>
STEP: delete the pod
Jun 11 15:02:26.525: INFO: Waiting for pod downwardapi-volume-ea6f4eac-8c59-11e9-8426-0a96f5951f5b to disappear
Jun 11 15:02:26.529: INFO: Pod downwardapi-volume-ea6f4eac-8c59-11e9-8426-0a96f5951f5b no longer exists
[AfterEach] [sig-storage] Projected downwardAPI
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:154
Jun 11 15:02:26.529: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready
STEP: Destroying namespace "e2e-tests-projected-5hz6l" for this suite.
Jun 11 15:02:32.555: INFO: Waiting up to 30s for server preferred namespaced resources to be successfully discovered
Jun 11 15:02:32.573: INFO: namespace: e2e-tests-projected-5hz6l, resource: bindings, ignored listing per whitelist
Jun 11 15:02:32.698: INFO: namespace e2e-tests-projected-5hz6l deletion completed in 6.161820902s
• [SLOW TEST:10.430 seconds]
[sig-storage] Projected downwardAPI
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/common/projected_downwardapi.go:33
should set mode on item file [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
------------------------------
S
------------------------------
[sig-network] Networking Granular Checks: Pods
should function for node-pod communication: http [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
[BeforeEach] [sig-network] Networking
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:153
STEP: Creating a kubernetes client
Jun 11 15:02:32.699: INFO: >>> kubeConfig: /tmp/kubeconfig-160876913
STEP: Building a namespace api object, basename pod-network-test
STEP: Binding the e2e-test-privileged-psp PodSecurityPolicy to the default service account in e2e-tests-pod-network-test-c8jdb
STEP: Waiting for a default service account to be provisioned in namespace
[It] should function for node-pod communication: http [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
STEP: Performing setup for networking test in namespace e2e-tests-pod-network-test-c8jdb
STEP: creating a selector
STEP: Creating the service pods in kubernetes
Jun 11 15:02:32.894: INFO: Waiting up to 10m0s for all (but 0) nodes to be schedulable
STEP: Creating test pods
Jun 11 15:03:01.060: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s --max-time 15 --connect-timeout 1 http://192.168.129.75:8080/hostName | grep -v '^\s*$'] Namespace:e2e-tests-pod-network-test-c8jdb PodName:host-test-container-pod ContainerName:hostexec Stdin:<nil> CaptureStdout:true CaptureStderr:true PreserveWhitespace:false}
Jun 11 15:03:01.060: INFO: >>> kubeConfig: /tmp/kubeconfig-160876913
Jun 11 15:03:01.161: INFO: Found all expected endpoints: [netserver-0]
Jun 11 15:03:01.166: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s --max-time 15 --connect-timeout 1 http://192.168.114.2:8080/hostName | grep -v '^\s*$'] Namespace:e2e-tests-pod-network-test-c8jdb PodName:host-test-container-pod ContainerName:hostexec Stdin:<nil> CaptureStdout:true CaptureStderr:true PreserveWhitespace:false}
Jun 11 15:03:01.166: INFO: >>> kubeConfig: /tmp/kubeconfig-160876913
Jun 11 15:03:01.255: INFO: Found all expected endpoints: [netserver-1]
Jun 11 15:03:01.260: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s --max-time 15 --connect-timeout 1 http://192.168.222.230:8080/hostName | grep -v '^\s*$'] Namespace:e2e-tests-pod-network-test-c8jdb PodName:host-test-container-pod ContainerName:hostexec Stdin:<nil> CaptureStdout:true CaptureStderr:true PreserveWhitespace:false}
Jun 11 15:03:01.260: INFO: >>> kubeConfig: /tmp/kubeconfig-160876913
Jun 11 15:03:01.353: INFO: Found all expected endpoints: [netserver-2]
Jun 11 15:03:01.358: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s --max-time 15 --connect-timeout 1 http://192.168.210.106:8080/hostName | grep -v '^\s*$'] Namespace:e2e-tests-pod-network-test-c8jdb PodName:host-test-container-pod ContainerName:hostexec Stdin:<nil> CaptureStdout:true CaptureStderr:true PreserveWhitespace:false}
Jun 11 15:03:01.358: INFO: >>> kubeConfig: /tmp/kubeconfig-160876913
Jun 11 15:03:01.455: INFO: Found all expected endpoints: [netserver-3]
Jun 11 15:03:01.460: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s --max-time 15 --connect-timeout 1 http://192.168.72.70:8080/hostName | grep -v '^\s*$'] Namespace:e2e-tests-pod-network-test-c8jdb PodName:host-test-container-pod ContainerName:hostexec Stdin:<nil> CaptureStdout:true CaptureStderr:true PreserveWhitespace:false}
Jun 11 15:03:01.460: INFO: >>> kubeConfig: /tmp/kubeconfig-160876913
Jun 11 15:03:01.578: INFO: Found all expected endpoints: [netserver-4]
Jun 11 15:03:01.583: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s --max-time 15 --connect-timeout 1 http://192.168.157.124:8080/hostName | grep -v '^\s*$'] Namespace:e2e-tests-pod-network-test-c8jdb PodName:host-test-container-pod ContainerName:hostexec Stdin:<nil> CaptureStdout:true CaptureStderr:true PreserveWhitespace:false}
Jun 11 15:03:01.583: INFO: >>> kubeConfig: /tmp/kubeconfig-160876913
Jun 11 15:03:01.675: INFO: Found all expected endpoints: [netserver-5]
[AfterEach] [sig-network] Networking
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:154
Jun 11 15:03:01.675: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready
STEP: Destroying namespace "e2e-tests-pod-network-test-c8jdb" for this suite.
Jun 11 15:03:23.730: INFO: Waiting up to 30s for server preferred namespaced resources to be successfully discovered
Jun 11 15:03:23.850: INFO: namespace: e2e-tests-pod-network-test-c8jdb, resource: bindings, ignored listing per whitelist
Jun 11 15:03:23.871: INFO: namespace e2e-tests-pod-network-test-c8jdb deletion completed in 22.177744835s
• [SLOW TEST:51.173 seconds]
[sig-network] Networking
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/common/networking.go:25
Granular Checks: Pods
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/common/networking.go:28
should function for node-pod communication: http [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
------------------------------
SSSSSSSSSSSSS
------------------------------
[k8s.io] Kubelet when scheduling a busybox command in a pod
should print the output to logs [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
[BeforeEach] [k8s.io] Kubelet
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:153
STEP: Creating a kubernetes client
Jun 11 15:03:23.872: INFO: >>> kubeConfig: /tmp/kubeconfig-160876913
STEP: Building a namespace api object, basename kubelet-test
STEP: Binding the e2e-test-privileged-psp PodSecurityPolicy to the default service account in e2e-tests-kubelet-test-zzwfc
STEP: Waiting for a default service account to be provisioned in namespace
[BeforeEach] [k8s.io] Kubelet
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/common/kubelet.go:37
[It] should print the output to logs [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
[AfterEach] [k8s.io] Kubelet
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:154
Jun 11 15:03:30.104: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready
STEP: Destroying namespace "e2e-tests-kubelet-test-zzwfc" for this suite.
Jun 11 15:04:16.128: INFO: Waiting up to 30s for server preferred namespaced resources to be successfully discovered
Jun 11 15:04:16.265: INFO: namespace: e2e-tests-kubelet-test-zzwfc, resource: bindings, ignored listing per whitelist
Jun 11 15:04:16.274: INFO: namespace e2e-tests-kubelet-test-zzwfc deletion completed in 46.163081041s
• [SLOW TEST:52.403 seconds]
[k8s.io] Kubelet
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:694
when scheduling a busybox command in a pod
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/common/kubelet.go:40
should print the output to logs [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
------------------------------
SSSS
------------------------------
[sig-storage] Secrets
should be consumable from pods in volume as non-root with defaultMode and fsGroup set [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
[BeforeEach] [sig-storage] Secrets
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:153
STEP: Creating a kubernetes client
Jun 11 15:04:16.275: INFO: >>> kubeConfig: /tmp/kubeconfig-160876913
STEP: Building a namespace api object, basename secrets
STEP: Binding the e2e-test-privileged-psp PodSecurityPolicy to the default service account in e2e-tests-secrets-q6sw6
STEP: Waiting for a default service account to be provisioned in namespace
[It] should be consumable from pods in volume as non-root with defaultMode and fsGroup set [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
STEP: Creating secret with name secret-test-2e635e2a-8c5a-11e9-8426-0a96f5951f5b
STEP: Creating a pod to test consume secrets
Jun 11 15:04:16.488: INFO: Waiting up to 5m0s for pod "pod-secrets-2e64920d-8c5a-11e9-8426-0a96f5951f5b" in namespace "e2e-tests-secrets-q6sw6" to be "success or failure"
Jun 11 15:04:16.494: INFO: Pod "pod-secrets-2e64920d-8c5a-11e9-8426-0a96f5951f5b": Phase="Pending", Reason="", readiness=false. Elapsed: 5.969257ms
Jun 11 15:04:18.499: INFO: Pod "pod-secrets-2e64920d-8c5a-11e9-8426-0a96f5951f5b": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010628476s
Jun 11 15:04:20.503: INFO: Pod "pod-secrets-2e64920d-8c5a-11e9-8426-0a96f5951f5b": Phase="Pending", Reason="", readiness=false. Elapsed: 4.015309766s
Jun 11 15:04:22.508: INFO: Pod "pod-secrets-2e64920d-8c5a-11e9-8426-0a96f5951f5b": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.019930793s
STEP: Saw pod success
Jun 11 15:04:22.508: INFO: Pod "pod-secrets-2e64920d-8c5a-11e9-8426-0a96f5951f5b" satisfied condition "success or failure"
Jun 11 15:04:22.512: INFO: Trying to get logs from node ip-192-168-93-128.us-west-2.compute.internal pod pod-secrets-2e64920d-8c5a-11e9-8426-0a96f5951f5b container secret-volume-test: <nil>
STEP: delete the pod
Jun 11 15:04:22.538: INFO: Waiting for pod pod-secrets-2e64920d-8c5a-11e9-8426-0a96f5951f5b to disappear
Jun 11 15:04:22.541: INFO: Pod pod-secrets-2e64920d-8c5a-11e9-8426-0a96f5951f5b no longer exists
[AfterEach] [sig-storage] Secrets
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:154
Jun 11 15:04:22.541: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready
STEP: Destroying namespace "e2e-tests-secrets-q6sw6" for this suite.
Jun 11 15:04:28.565: INFO: Waiting up to 30s for server preferred namespaced resources to be successfully discovered
Jun 11 15:04:28.623: INFO: namespace: e2e-tests-secrets-q6sw6, resource: bindings, ignored listing per whitelist
Jun 11 15:04:28.714: INFO: namespace e2e-tests-secrets-q6sw6 deletion completed in 6.165341029s
• [SLOW TEST:12.439 seconds]
[sig-storage] Secrets
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/common/secrets_volume.go:34
should be consumable from pods in volume as non-root with defaultMode and fsGroup set [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
------------------------------
S
------------------------------
[sig-api-machinery] Garbage collector
should not be blocked by dependency circle [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
[BeforeEach] [sig-api-machinery] Garbage collector
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:153
STEP: Creating a kubernetes client
Jun 11 15:04:28.714: INFO: >>> kubeConfig: /tmp/kubeconfig-160876913
STEP: Building a namespace api object, basename gc
STEP: Binding the e2e-test-privileged-psp PodSecurityPolicy to the default service account in e2e-tests-gc-mrjgw
STEP: Waiting for a default service account to be provisioned in namespace
[It] should not be blocked by dependency circle [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
Jun 11 15:04:28.945: INFO: pod1.ObjectMeta.OwnerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"v1", Kind:"Pod", Name:"pod3", UID:"35cfb5a4-8c5a-11e9-a974-0a8dd5e588e4", Controller:(*bool)(0xc0014b8cae), BlockOwnerDeletion:(*bool)(0xc0014b8caf)}}
Jun 11 15:04:28.951: INFO: pod2.ObjectMeta.OwnerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"v1", Kind:"Pod", Name:"pod1", UID:"35cde916-8c5a-11e9-a974-0a8dd5e588e4", Controller:(*bool)(0xc001a097be), BlockOwnerDeletion:(*bool)(0xc001a097bf)}}
Jun 11 15:04:28.958: INFO: pod3.ObjectMeta.OwnerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"v1", Kind:"Pod", Name:"pod2", UID:"35cecb1d-8c5a-11e9-a974-0a8dd5e588e4", Controller:(*bool)(0xc0014b8ea6), BlockOwnerDeletion:(*bool)(0xc0014b8ea7)}}
[AfterEach] [sig-api-machinery] Garbage collector
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:154
Jun 11 15:04:33.970: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready
STEP: Destroying namespace "e2e-tests-gc-mrjgw" for this suite.
Jun 11 15:04:39.995: INFO: Waiting up to 30s for server preferred namespaced resources to be successfully discovered
Jun 11 15:04:40.071: INFO: namespace: e2e-tests-gc-mrjgw, resource: bindings, ignored listing per whitelist
Jun 11 15:04:40.149: INFO: namespace e2e-tests-gc-mrjgw deletion completed in 6.171832916s
• [SLOW TEST:11.435 seconds]
[sig-api-machinery] Garbage collector
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/apimachinery/framework.go:22
should not be blocked by dependency circle [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
------------------------------
SSSSSSSSSSSSSSSSSSSSS
------------------------------
[sig-storage] Subpath Atomic writer volumes
should support subpaths with configmap pod [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
[BeforeEach] [sig-storage] Subpath
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:153
STEP: Creating a kubernetes client
Jun 11 15:04:40.149: INFO: >>> kubeConfig: /tmp/kubeconfig-160876913
STEP: Building a namespace api object, basename subpath
STEP: Binding the e2e-test-privileged-psp PodSecurityPolicy to the default service account in e2e-tests-subpath-kqwnb
STEP: Waiting for a default service account to be provisioned in namespace
[BeforeEach] Atomic writer volumes
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/storage/subpath.go:38
STEP: Setting up data
[It] should support subpaths with configmap pod [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
STEP: Creating pod pod-subpath-test-configmap-hbm6
STEP: Creating a pod to test atomic-volume-subpath
Jun 11 15:04:40.372: INFO: Waiting up to 5m0s for pod "pod-subpath-test-configmap-hbm6" in namespace "e2e-tests-subpath-kqwnb" to be "success or failure"
Jun 11 15:04:40.377: INFO: Pod "pod-subpath-test-configmap-hbm6": Phase="Pending", Reason="", readiness=false. Elapsed: 4.934954ms
Jun 11 15:04:42.382: INFO: Pod "pod-subpath-test-configmap-hbm6": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009882606s
Jun 11 15:04:44.387: INFO: Pod "pod-subpath-test-configmap-hbm6": Phase="Pending", Reason="", readiness=false. Elapsed: 4.014641686s
Jun 11 15:04:46.392: INFO: Pod "pod-subpath-test-configmap-hbm6": Phase="Pending", Reason="", readiness=false. Elapsed: 6.01999645s
Jun 11 15:04:48.397: INFO: Pod "pod-subpath-test-configmap-hbm6": Phase="Running", Reason="", readiness=false. Elapsed: 8.025074136s
Jun 11 15:04:50.403: INFO: Pod "pod-subpath-test-configmap-hbm6": Phase="Running", Reason="", readiness=false. Elapsed: 10.030191343s
Jun 11 15:04:52.408: INFO: Pod "pod-subpath-test-configmap-hbm6": Phase="Running", Reason="", readiness=false. Elapsed: 12.035438549s
Jun 11 15:04:54.413: INFO: Pod "pod-subpath-test-configmap-hbm6": Phase="Running", Reason="", readiness=false. Elapsed: 14.040739364s
Jun 11 15:04:56.418: INFO: Pod "pod-subpath-test-configmap-hbm6": Phase="Running", Reason="", readiness=false. Elapsed: 16.046072488s
Jun 11 15:04:58.424: INFO: Pod "pod-subpath-test-configmap-hbm6": Phase="Running", Reason="", readiness=false. Elapsed: 18.051781946s
Jun 11 15:05:00.429: INFO: Pod "pod-subpath-test-configmap-hbm6": Phase="Running", Reason="", readiness=false. Elapsed: 20.056938883s
Jun 11 15:05:02.440: INFO: Pod "pod-subpath-test-configmap-hbm6": Phase="Running", Reason="", readiness=false. Elapsed: 22.067506421s
Jun 11 15:05:04.445: INFO: Pod "pod-subpath-test-configmap-hbm6": Phase="Running", Reason="", readiness=false. Elapsed: 24.07282141s
Jun 11 15:05:06.451: INFO: Pod "pod-subpath-test-configmap-hbm6": Phase="Running", Reason="", readiness=false. Elapsed: 26.078151576s
Jun 11 15:05:08.456: INFO: Pod "pod-subpath-test-configmap-hbm6": Phase="Succeeded", Reason="", readiness=false. Elapsed: 28.083361162s
STEP: Saw pod success
Jun 11 15:05:08.456: INFO: Pod "pod-subpath-test-configmap-hbm6" satisfied condition "success or failure"
Jun 11 15:05:08.460: INFO: Trying to get logs from node ip-192-168-153-167.us-west-2.compute.internal pod pod-subpath-test-configmap-hbm6 container test-container-subpath-configmap-hbm6: <nil>
STEP: delete the pod
Jun 11 15:05:08.497: INFO: Waiting for pod pod-subpath-test-configmap-hbm6 to disappear
Jun 11 15:05:08.502: INFO: Pod pod-subpath-test-configmap-hbm6 no longer exists
STEP: Deleting pod pod-subpath-test-configmap-hbm6
Jun 11 15:05:08.502: INFO: Deleting pod "pod-subpath-test-configmap-hbm6" in namespace "e2e-tests-subpath-kqwnb"
[AfterEach] [sig-storage] Subpath
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:154
Jun 11 15:05:08.506: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready
STEP: Destroying namespace "e2e-tests-subpath-kqwnb" for this suite.
Jun 11 15:05:14.530: INFO: Waiting up to 30s for server preferred namespaced resources to be successfully discovered
Jun 11 15:05:14.538: INFO: namespace: e2e-tests-subpath-kqwnb, resource: bindings, ignored listing per whitelist
Jun 11 15:05:14.677: INFO: namespace e2e-tests-subpath-kqwnb deletion completed in 6.164552067s
• [SLOW TEST:34.528 seconds]
[sig-storage] Subpath
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/storage/utils/framework.go:22
Atomic writer volumes
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/storage/subpath.go:34
should support subpaths with configmap pod [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
------------------------------
SSSSSSSSSSSSS
------------------------------
[sig-storage] Projected configMap
optional updates should be reflected in volume [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
[BeforeEach] [sig-storage] Projected configMap
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:153
STEP: Creating a kubernetes client
Jun 11 15:05:14.677: INFO: >>> kubeConfig: /tmp/kubeconfig-160876913
STEP: Building a namespace api object, basename projected
STEP: Binding the e2e-test-privileged-psp PodSecurityPolicy to the default service account in e2e-tests-projected-nnz9v
STEP: Waiting for a default service account to be provisioned in namespace
[It] optional updates should be reflected in volume [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
STEP: Creating configMap with name cm-test-opt-del-51341806-8c5a-11e9-8426-0a96f5951f5b
STEP: Creating configMap with name cm-test-opt-upd-51341849-8c5a-11e9-8426-0a96f5951f5b
STEP: Creating the pod
STEP: Deleting configmap cm-test-opt-del-51341806-8c5a-11e9-8426-0a96f5951f5b
STEP: Updating configmap cm-test-opt-upd-51341849-8c5a-11e9-8426-0a96f5951f5b
STEP: Creating configMap with name cm-test-opt-create-5134186a-8c5a-11e9-8426-0a96f5951f5b
STEP: waiting to observe update in volume
[AfterEach] [sig-storage] Projected configMap
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:154
Jun 11 15:06:25.428: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready
STEP: Destroying namespace "e2e-tests-projected-nnz9v" for this suite.
Jun 11 15:06:47.453: INFO: Waiting up to 30s for server preferred namespaced resources to be successfully discovered
Jun 11 15:06:47.531: INFO: namespace: e2e-tests-projected-nnz9v, resource: bindings, ignored listing per whitelist
Jun 11 15:06:47.597: INFO: namespace e2e-tests-projected-nnz9v deletion completed in 22.161734626s
• [SLOW TEST:92.920 seconds]
[sig-storage] Projected configMap
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/common/projected_configmap.go:34
optional updates should be reflected in volume [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
------------------------------
SSSSSSSSSSSSSS
------------------------------
[sig-apps] Deployment
deployment should support proportional scaling [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
[BeforeEach] [sig-apps] Deployment
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:153
STEP: Creating a kubernetes client
Jun 11 15:06:47.598: INFO: >>> kubeConfig: /tmp/kubeconfig-160876913
STEP: Building a namespace api object, basename deployment
STEP: Binding the e2e-test-privileged-psp PodSecurityPolicy to the default service account in e2e-tests-deployment-lcj76
STEP: Waiting for a default service account to be provisioned in namespace
[BeforeEach] [sig-apps] Deployment
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/apps/deployment.go:65
[It] deployment should support proportional scaling [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
Jun 11 15:06:47.795: INFO: Creating deployment "nginx-deployment"
Jun 11 15:06:47.802: INFO: Waiting for observed generation 1
Jun 11 15:06:49.814: INFO: Waiting for all required pods to come up
Jun 11 15:06:49.819: INFO: Pod name nginx: Found 10 pods out of 10
STEP: ensuring each pod is running
Jun 11 15:06:53.830: INFO: Waiting for deployment "nginx-deployment" to complete
Jun 11 15:06:53.842: INFO: Updating deployment "nginx-deployment" with a non-existent image
Jun 11 15:06:53.855: INFO: Updating deployment nginx-deployment
Jun 11 15:06:53.855: INFO: Waiting for observed generation 2
Jun 11 15:06:55.866: INFO: Waiting for the first rollout's replicaset to have .status.availableReplicas = 8
Jun 11 15:06:55.873: INFO: Waiting for the first rollout's replicaset to have .spec.replicas = 8
Jun 11 15:06:55.878: INFO: Waiting for the first rollout's replicaset of deployment "nginx-deployment" to have desired number of replicas
Jun 11 15:06:55.896: INFO: Verifying that the second rollout's replicaset has .status.availableReplicas = 0
Jun 11 15:06:55.896: INFO: Waiting for the second rollout's replicaset to have .spec.replicas = 5
Jun 11 15:06:55.901: INFO: Waiting for the second rollout's replicaset of deployment "nginx-deployment" to have desired number of replicas
Jun 11 15:06:55.913: INFO: Verifying that deployment "nginx-deployment" has minimum required number of available replicas
Jun 11 15:06:55.913: INFO: Scaling up the deployment "nginx-deployment" from 10 to 30
Jun 11 15:06:55.926: INFO: Updating deployment nginx-deployment
Jun 11 15:06:55.926: INFO: Waiting for the replicasets of deployment "nginx-deployment" to have desired number of replicas
Jun 11 15:06:55.942: INFO: Verifying that first rollout's replicaset has .spec.replicas = 20
Jun 11 15:06:57.958: INFO: Verifying that second rollout's replicaset has .spec.replicas = 13
[AfterEach] [sig-apps] Deployment
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/apps/deployment.go:59
Jun 11 15:06:57.970: INFO: Deployment "nginx-deployment":
&Deployment{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment,GenerateName:,Namespace:e2e-tests-deployment-lcj76,SelfLink:/apis/apps/v1/namespaces/e2e-tests-deployment-lcj76/deployments/nginx-deployment,UID:8895a991-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2658,Generation:3,CreationTimestamp:2019-06-11 15:06:47 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,},Annotations:map[string]string{deployment.kubernetes.io/revision: 2,},OwnerReferences:[],Finalizers:[],ClusterName:,Initializers:nil,},Spec:DeploymentSpec{Replicas:*30,Selector:&k8s_io_apimachinery_pkg_apis_meta_v1.LabelSelector{MatchLabels:map[string]string{name: nginx,},MatchExpressions:[],},Template:k8s_io_api_core_v1.PodTemplateSpec{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:,GenerateName:,Namespace:,SelfLink:,UID:,ResourceVersion:,Generation:0,CreationTimestamp:0001-01-01 00:00:00 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,},Annotations:map[string]string{},OwnerReferences:[],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[],Containers:[{nginx nginx:404 [] [] [] [] [] {map[] map[]} [] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:,DeprecatedServiceAccount:,NodeName:,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[],HostAliases:[],PriorityClassName:,Priority:nil,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:nil,},},Strategy:DeploymentStrategy{Type:RollingUpdate,RollingUpdate:&RollingUpdateDeployment{MaxUnavailable:2,MaxSurge:3,},},MinReadySeconds:0,RevisionHistoryLimit:*10,Paused:false,ProgressDeadlineSeconds:*600,},Status:DeploymentStatus{ObservedGeneration:3,Replicas:33,UpdatedReplicas:13,AvailableReplicas:12,UnavailableReplicas:21,Conditions:[{Available False 2019-06-11 15:06:55 +0000 UTC 2019-06-11 15:06:55 +0000 UTC MinimumReplicasUnavailable Deployment does not have minimum availability.} {Progressing True 2019-06-11 15:06:57 +0000 UTC 2019-06-11 15:06:47 +0000 UTC ReplicaSetUpdated ReplicaSet "nginx-deployment-65bbdb5f8" is progressing.}],ReadyReplicas:12,CollisionCount:nil,},}
Jun 11 15:06:57.976: INFO: New ReplicaSet "nginx-deployment-65bbdb5f8" of Deployment "nginx-deployment":
&ReplicaSet{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-65bbdb5f8,GenerateName:,Namespace:e2e-tests-deployment-lcj76,SelfLink:/apis/apps/v1/namespaces/e2e-tests-deployment-lcj76/replicasets/nginx-deployment-65bbdb5f8,UID:8c322c5f-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2555,Generation:3,CreationTimestamp:2019-06-11 15:06:53 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 65bbdb5f8,},Annotations:map[string]string{deployment.kubernetes.io/desired-replicas: 30,deployment.kubernetes.io/max-replicas: 33,deployment.kubernetes.io/revision: 2,},OwnerReferences:[{apps/v1 Deployment nginx-deployment 8895a991-8c5a-11e9-a974-0a8dd5e588e4 0xc001a08fe7 0xc001a08fe8}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:ReplicaSetSpec{Replicas:*13,Selector:&k8s_io_apimachinery_pkg_apis_meta_v1.LabelSelector{MatchLabels:map[string]string{name: nginx,pod-template-hash: 65bbdb5f8,},MatchExpressions:[],},Template:k8s_io_api_core_v1.PodTemplateSpec{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:,GenerateName:,Namespace:,SelfLink:,UID:,ResourceVersion:,Generation:0,CreationTimestamp:0001-01-01 00:00:00 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 65bbdb5f8,},Annotations:map[string]string{},OwnerReferences:[],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[],Containers:[{nginx nginx:404 [] [] [] [] [] {map[] map[]} [] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:,DeprecatedServiceAccount:,NodeName:,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[],HostAliases:[],PriorityClassName:,Priority:nil,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:nil,},},MinReadySeconds:0,},Status:ReplicaSetStatus{Replicas:13,FullyLabeledReplicas:13,ObservedGeneration:3,ReadyReplicas:0,AvailableReplicas:0,Conditions:[],},}
Jun 11 15:06:57.976: INFO: All old ReplicaSets of Deployment "nginx-deployment":
Jun 11 15:06:57.976: INFO: &ReplicaSet{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-555b55d965,GenerateName:,Namespace:e2e-tests-deployment-lcj76,SelfLink:/apis/apps/v1/namespaces/e2e-tests-deployment-lcj76/replicasets/nginx-deployment-555b55d965,UID:8897d18a-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2657,Generation:3,CreationTimestamp:2019-06-11 15:06:47 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 555b55d965,},Annotations:map[string]string{deployment.kubernetes.io/desired-replicas: 30,deployment.kubernetes.io/max-replicas: 33,deployment.kubernetes.io/revision: 1,},OwnerReferences:[{apps/v1 Deployment nginx-deployment 8895a991-8c5a-11e9-a974-0a8dd5e588e4 0xc001a08eb7 0xc001a08eb8}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:ReplicaSetSpec{Replicas:*20,Selector:&k8s_io_apimachinery_pkg_apis_meta_v1.LabelSelector{MatchLabels:map[string]string{name: nginx,pod-template-hash: 555b55d965,},MatchExpressions:[],},Template:k8s_io_api_core_v1.PodTemplateSpec{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:,GenerateName:,Namespace:,SelfLink:,UID:,ResourceVersion:,Generation:0,CreationTimestamp:0001-01-01 00:00:00 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 555b55d965,},Annotations:map[string]string{},OwnerReferences:[],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[],Containers:[{nginx docker.io/library/nginx:1.14-alpine [] [] [] [] [] {map[] map[]} [] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:,DeprecatedServiceAccount:,NodeName:,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[],HostAliases:[],PriorityClassName:,Priority:nil,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:nil,},},MinReadySeconds:0,},Status:ReplicaSetStatus{Replicas:20,FullyLabeledReplicas:20,ObservedGeneration:3,ReadyReplicas:12,AvailableReplicas:12,Conditions:[],},}
Jun 11 15:06:57.984: INFO: Pod "nginx-deployment-555b55d965-2nb8j" is not available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-555b55d965-2nb8j,GenerateName:nginx-deployment-555b55d965-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-555b55d965-2nb8j,UID:8d745b74-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2568,Generation:0,CreationTimestamp:2019-06-11 15:06:55 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 555b55d965,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-555b55d965 8897d18a-8c5a-11e9-a974-0a8dd5e588e4 0xc0017ac8f0 0xc0017ac8f1}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx docker.io/library/nginx:1.14-alpine [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-153-167.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc0017ac9f0} {node.kubernetes.io/unreachable Exists NoExecute 0xc0017aca10}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Pending,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:56 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:56 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:56 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC }],Message:,Reason:,HostIP:192.168.153.167,PodIP:,StartTime:2019-06-11 15:06:56 +0000 UTC,ContainerStatuses:[{nginx {ContainerStateWaiting{Reason:ContainerCreating,Message:,} nil nil} {nil nil nil} false 0 docker.io/library/nginx:1.14-alpine }],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.985: INFO: Pod "nginx-deployment-555b55d965-2pzwv" is available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-555b55d965-2pzwv,GenerateName:nginx-deployment-555b55d965-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-555b55d965-2pzwv,UID:889c3a76-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2362,Generation:0,CreationTimestamp:2019-06-11 15:06:47 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 555b55d965,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-555b55d965 8897d18a-8c5a-11e9-a974-0a8dd5e588e4 0xc0017acae7 0xc0017acae8}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx docker.io/library/nginx:1.14-alpine [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-192-169.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc0017acb50} {node.kubernetes.io/unreachable Exists NoExecute 0xc0017acb90}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Running,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:47 +0000 UTC } {Ready True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:52 +0000 UTC } {ContainersReady True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:52 +0000 UTC } {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:47 +0000 UTC }],Message:,Reason:,HostIP:192.168.192.169,PodIP:192.168.200.40,StartTime:2019-06-11 15:06:47 +0000 UTC,ContainerStatuses:[{nginx {nil ContainerStateRunning{StartedAt:2019-06-11 15:06:51 +0000 UTC,} nil} {nil nil nil} true 0 nginx:1.14-alpine docker-pullable://nginx@sha256:485b610fefec7ff6c463ced9623314a04ed67e3945b9c08d7e53a47f6d108dc7 docker://5674b26a804cfcaac79cdabf1c87a2ea748e3d3e6087e67fbb71ec492f410f26}],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.985: INFO: Pod "nginx-deployment-555b55d965-4pc4d" is available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-555b55d965-4pc4d,GenerateName:nginx-deployment-555b55d965-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-555b55d965-4pc4d,UID:889d728e-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2355,Generation:0,CreationTimestamp:2019-06-11 15:06:47 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 555b55d965,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-555b55d965 8897d18a-8c5a-11e9-a974-0a8dd5e588e4 0xc0017acf67 0xc0017acf68}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx docker.io/library/nginx:1.14-alpine [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-230-15.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc0017acfd0} {node.kubernetes.io/unreachable Exists NoExecute 0xc0017acff0}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Running,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:47 +0000 UTC } {Ready True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:51 +0000 UTC } {ContainersReady True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:51 +0000 UTC } {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:47 +0000 UTC }],Message:,Reason:,HostIP:192.168.230.15,PodIP:192.168.225.219,StartTime:2019-06-11 15:06:47 +0000 UTC,ContainerStatuses:[{nginx {nil ContainerStateRunning{StartedAt:2019-06-11 15:06:51 +0000 UTC,} nil} {nil nil nil} true 0 nginx:1.14-alpine docker-pullable://nginx@sha256:485b610fefec7ff6c463ced9623314a04ed67e3945b9c08d7e53a47f6d108dc7 docker://3941c18b3b0cb6de776a4f8f382f8108a7fef9256f55f572b461c38c5da49b57}],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.985: INFO: Pod "nginx-deployment-555b55d965-7xq9m" is available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-555b55d965-7xq9m,GenerateName:nginx-deployment-555b55d965-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-555b55d965-7xq9m,UID:889b7093-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2386,Generation:0,CreationTimestamp:2019-06-11 15:06:47 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 555b55d965,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-555b55d965 8897d18a-8c5a-11e9-a974-0a8dd5e588e4 0xc0017ad2b7 0xc0017ad2b8}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx docker.io/library/nginx:1.14-alpine [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-93-128.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc0017ad320} {node.kubernetes.io/unreachable Exists NoExecute 0xc0017ad340}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Running,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:47 +0000 UTC } {Ready True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:52 +0000 UTC } {ContainersReady True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:52 +0000 UTC } {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:47 +0000 UTC }],Message:,Reason:,HostIP:192.168.93.128,PodIP:192.168.124.138,StartTime:2019-06-11 15:06:47 +0000 UTC,ContainerStatuses:[{nginx {nil ContainerStateRunning{StartedAt:2019-06-11 15:06:52 +0000 UTC,} nil} {nil nil nil} true 0 nginx:1.14-alpine docker-pullable://nginx@sha256:485b610fefec7ff6c463ced9623314a04ed67e3945b9c08d7e53a47f6d108dc7 docker://4c5d98270d526055bd0cc5155d07ac7603723b8ba1f6f76c66c9f4cb89bafbbd}],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.985: INFO: Pod "nginx-deployment-555b55d965-84bwx" is available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-555b55d965-84bwx,GenerateName:nginx-deployment-555b55d965-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-555b55d965-84bwx,UID:889c4c06-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2372,Generation:0,CreationTimestamp:2019-06-11 15:06:47 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 555b55d965,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-555b55d965 8897d18a-8c5a-11e9-a974-0a8dd5e588e4 0xc0017ad437 0xc0017ad438}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx docker.io/library/nginx:1.14-alpine [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-141-198.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc0017ad4a0} {node.kubernetes.io/unreachable Exists NoExecute 0xc0017ad4c0}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Running,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:47 +0000 UTC } {Ready True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:52 +0000 UTC } {ContainersReady True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:52 +0000 UTC } {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:47 +0000 UTC }],Message:,Reason:,HostIP:192.168.141.198,PodIP:192.168.143.121,StartTime:2019-06-11 15:06:47 +0000 UTC,ContainerStatuses:[{nginx {nil ContainerStateRunning{StartedAt:2019-06-11 15:06:51 +0000 UTC,} nil} {nil nil nil} true 0 nginx:1.14-alpine docker-pullable://nginx@sha256:485b610fefec7ff6c463ced9623314a04ed67e3945b9c08d7e53a47f6d108dc7 docker://d8562db37c800c5842ab69d7542e66b84d2a002cd89f7e75f211d11536100095}],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.985: INFO: Pod "nginx-deployment-555b55d965-9pdfv" is not available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-555b55d965-9pdfv,GenerateName:nginx-deployment-555b55d965-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-555b55d965-9pdfv,UID:8d741ceb-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2558,Generation:0,CreationTimestamp:2019-06-11 15:06:55 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 555b55d965,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-555b55d965 8897d18a-8c5a-11e9-a974-0a8dd5e588e4 0xc0017ad607 0xc0017ad608}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx docker.io/library/nginx:1.14-alpine [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-192-169.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc0017ad670} {node.kubernetes.io/unreachable Exists NoExecute 0xc0017ad690}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Pending,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:56 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:56 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:56 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC }],Message:,Reason:,HostIP:192.168.192.169,PodIP:,StartTime:2019-06-11 15:06:56 +0000 UTC,ContainerStatuses:[{nginx {ContainerStateWaiting{Reason:ContainerCreating,Message:,} nil nil} {nil nil nil} false 0 docker.io/library/nginx:1.14-alpine }],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.985: INFO: Pod "nginx-deployment-555b55d965-bjf29" is available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-555b55d965-bjf29,GenerateName:nginx-deployment-555b55d965-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-555b55d965-bjf29,UID:889d87f6-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2380,Generation:0,CreationTimestamp:2019-06-11 15:06:47 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 555b55d965,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-555b55d965 8897d18a-8c5a-11e9-a974-0a8dd5e588e4 0xc0017ad747 0xc0017ad748}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx docker.io/library/nginx:1.14-alpine [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-114-212.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc0017ad820} {node.kubernetes.io/unreachable Exists NoExecute 0xc0017ad840}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Running,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:47 +0000 UTC } {Ready True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:52 +0000 UTC } {ContainersReady True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:52 +0000 UTC } {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:47 +0000 UTC }],Message:,Reason:,HostIP:192.168.114.212,PodIP:192.168.114.2,StartTime:2019-06-11 15:06:47 +0000 UTC,ContainerStatuses:[{nginx {nil ContainerStateRunning{StartedAt:2019-06-11 15:06:52 +0000 UTC,} nil} {nil nil nil} true 0 nginx:1.14-alpine docker-pullable://nginx@sha256:485b610fefec7ff6c463ced9623314a04ed67e3945b9c08d7e53a47f6d108dc7 docker://ca638b51a8ac95888a46a08ae5b9b33d5d4ae32887ab6b1296d1debd13363ead}],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.986: INFO: Pod "nginx-deployment-555b55d965-d86mz" is not available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-555b55d965-d86mz,GenerateName:nginx-deployment-555b55d965-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-555b55d965-d86mz,UID:8d743eb6-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2560,Generation:0,CreationTimestamp:2019-06-11 15:06:55 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 555b55d965,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-555b55d965 8897d18a-8c5a-11e9-a974-0a8dd5e588e4 0xc0017ad907 0xc0017ad908}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx docker.io/library/nginx:1.14-alpine [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-230-15.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc0017ad970} {node.kubernetes.io/unreachable Exists NoExecute 0xc0017ad9a0}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Pending,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:56 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:56 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:56 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC }],Message:,Reason:,HostIP:192.168.230.15,PodIP:,StartTime:2019-06-11 15:06:56 +0000 UTC,ContainerStatuses:[{nginx {ContainerStateWaiting{Reason:ContainerCreating,Message:,} nil nil} {nil nil nil} false 0 docker.io/library/nginx:1.14-alpine }],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.986: INFO: Pod "nginx-deployment-555b55d965-f8p2n" is not available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-555b55d965-f8p2n,GenerateName:nginx-deployment-555b55d965-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-555b55d965-f8p2n,UID:8d7216a5-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2546,Generation:0,CreationTimestamp:2019-06-11 15:06:55 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 555b55d965,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-555b55d965 8897d18a-8c5a-11e9-a974-0a8dd5e588e4 0xc0017adad7 0xc0017adad8}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx docker.io/library/nginx:1.14-alpine [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-141-198.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc0017adb40} {node.kubernetes.io/unreachable Exists NoExecute 0xc0017adb60}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Pending,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC }],Message:,Reason:,HostIP:192.168.141.198,PodIP:,StartTime:2019-06-11 15:06:55 +0000 UTC,ContainerStatuses:[{nginx {ContainerStateWaiting{Reason:ContainerCreating,Message:,} nil nil} {nil nil nil} false 0 docker.io/library/nginx:1.14-alpine }],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.986: INFO: Pod "nginx-deployment-555b55d965-fdk44" is available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-555b55d965-fdk44,GenerateName:nginx-deployment-555b55d965-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-555b55d965-fdk44,UID:8d707618-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2649,Generation:0,CreationTimestamp:2019-06-11 15:06:55 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 555b55d965,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-555b55d965 8897d18a-8c5a-11e9-a974-0a8dd5e588e4 0xc0017adcc7 0xc0017adcc8}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx docker.io/library/nginx:1.14-alpine [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-141-198.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc0017add30} {node.kubernetes.io/unreachable Exists NoExecute 0xc0017add50}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Running,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC } {Ready True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:57 +0000 UTC } {ContainersReady True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:57 +0000 UTC } {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC }],Message:,Reason:,HostIP:192.168.141.198,PodIP:192.168.158.218,StartTime:2019-06-11 15:06:55 +0000 UTC,ContainerStatuses:[{nginx {nil ContainerStateRunning{StartedAt:2019-06-11 15:06:57 +0000 UTC,} nil} {nil nil nil} true 0 nginx:1.14-alpine docker-pullable://nginx@sha256:485b610fefec7ff6c463ced9623314a04ed67e3945b9c08d7e53a47f6d108dc7 docker://6cdee2397c129e96bebe0c7e2f159ff1a79a2e72ec0273bf255cf93f8672c1b4}],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.986: INFO: Pod "nginx-deployment-555b55d965-mnfgr" is available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-555b55d965-mnfgr,GenerateName:nginx-deployment-555b55d965-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-555b55d965-mnfgr,UID:8d707c3e-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2626,Generation:0,CreationTimestamp:2019-06-11 15:06:55 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 555b55d965,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-555b55d965 8897d18a-8c5a-11e9-a974-0a8dd5e588e4 0xc0017ade87 0xc0017ade88}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx docker.io/library/nginx:1.14-alpine [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-114-212.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc0017adef0} {node.kubernetes.io/unreachable Exists NoExecute 0xc0017adf10}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Running,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC } {Ready True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:57 +0000 UTC } {ContainersReady True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:57 +0000 UTC } {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC }],Message:,Reason:,HostIP:192.168.114.212,PodIP:192.168.87.123,StartTime:2019-06-11 15:06:55 +0000 UTC,ContainerStatuses:[{nginx {nil ContainerStateRunning{StartedAt:2019-06-11 15:06:57 +0000 UTC,} nil} {nil nil nil} true 0 nginx:1.14-alpine docker-pullable://nginx@sha256:485b610fefec7ff6c463ced9623314a04ed67e3945b9c08d7e53a47f6d108dc7 docker://d96ecb2b6cbbad5f4e72744629517776793a99348d904322fb2dfe288750bfaf}],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.986: INFO: Pod "nginx-deployment-555b55d965-n2cq2" is available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-555b55d965-n2cq2,GenerateName:nginx-deployment-555b55d965-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-555b55d965-n2cq2,UID:889d86a0-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2384,Generation:0,CreationTimestamp:2019-06-11 15:06:47 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 555b55d965,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-555b55d965 8897d18a-8c5a-11e9-a974-0a8dd5e588e4 0xc000692dd7 0xc000692dd8}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx docker.io/library/nginx:1.14-alpine [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-93-128.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc000693400} {node.kubernetes.io/unreachable Exists NoExecute 0xc0006936a0}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Running,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:47 +0000 UTC } {Ready True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:52 +0000 UTC } {ContainersReady True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:52 +0000 UTC } {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:47 +0000 UTC }],Message:,Reason:,HostIP:192.168.93.128,PodIP:192.168.116.80,StartTime:2019-06-11 15:06:47 +0000 UTC,ContainerStatuses:[{nginx {nil ContainerStateRunning{StartedAt:2019-06-11 15:06:52 +0000 UTC,} nil} {nil nil nil} true 0 nginx:1.14-alpine docker-pullable://nginx@sha256:485b610fefec7ff6c463ced9623314a04ed67e3945b9c08d7e53a47f6d108dc7 docker://f6db3e0764177616974d05316ce590333bd40314f95f7eef93df4bb28d107933}],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.986: INFO: Pod "nginx-deployment-555b55d965-ncqzn" is available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-555b55d965-ncqzn,GenerateName:nginx-deployment-555b55d965-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-555b55d965-ncqzn,UID:889f4bc2-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2360,Generation:0,CreationTimestamp:2019-06-11 15:06:47 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 555b55d965,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-555b55d965 8897d18a-8c5a-11e9-a974-0a8dd5e588e4 0xc000693b57 0xc000693b58}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx docker.io/library/nginx:1.14-alpine [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-192-169.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc000693be0} {node.kubernetes.io/unreachable Exists NoExecute 0xc000693c00}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Running,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:47 +0000 UTC } {Ready True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:52 +0000 UTC } {ContainersReady True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:52 +0000 UTC } {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:47 +0000 UTC }],Message:,Reason:,HostIP:192.168.192.169,PodIP:192.168.248.66,StartTime:2019-06-11 15:06:47 +0000 UTC,ContainerStatuses:[{nginx {nil ContainerStateRunning{StartedAt:2019-06-11 15:06:51 +0000 UTC,} nil} {nil nil nil} true 0 nginx:1.14-alpine docker-pullable://nginx@sha256:485b610fefec7ff6c463ced9623314a04ed67e3945b9c08d7e53a47f6d108dc7 docker://1a1fe1cb460b0527c95efb1e9a998c909c6754bd7c5f8dc4b5bca1a1e3e1c4b2}],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.986: INFO: Pod "nginx-deployment-555b55d965-pwf6v" is available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-555b55d965-pwf6v,GenerateName:nginx-deployment-555b55d965-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-555b55d965-pwf6v,UID:8d721680-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2641,Generation:0,CreationTimestamp:2019-06-11 15:06:55 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 555b55d965,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-555b55d965 8897d18a-8c5a-11e9-a974-0a8dd5e588e4 0xc000693cf7 0xc000693cf8}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx docker.io/library/nginx:1.14-alpine [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-93-128.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc000693d90} {node.kubernetes.io/unreachable Exists NoExecute 0xc000693db0}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Running,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC } {Ready True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:57 +0000 UTC } {ContainersReady True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:57 +0000 UTC } {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC }],Message:,Reason:,HostIP:192.168.93.128,PodIP:192.168.83.194,StartTime:2019-06-11 15:06:55 +0000 UTC,ContainerStatuses:[{nginx {nil ContainerStateRunning{StartedAt:2019-06-11 15:06:57 +0000 UTC,} nil} {nil nil nil} true 0 nginx:1.14-alpine docker-pullable://nginx@sha256:485b610fefec7ff6c463ced9623314a04ed67e3945b9c08d7e53a47f6d108dc7 docker://9b5b6998c75a87941e66c4820d8235ebfa3c06a221ce4c298e0aef60d022d368}],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.986: INFO: Pod "nginx-deployment-555b55d965-qdgxv" is not available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-555b55d965-qdgxv,GenerateName:nginx-deployment-555b55d965-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-555b55d965-qdgxv,UID:8d73f176-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2567,Generation:0,CreationTimestamp:2019-06-11 15:06:55 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 555b55d965,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-555b55d965 8897d18a-8c5a-11e9-a974-0a8dd5e588e4 0xc000693e77 0xc000693e78}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx docker.io/library/nginx:1.14-alpine [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-93-128.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc000693ef0} {node.kubernetes.io/unreachable Exists NoExecute 0xc000693f20}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Pending,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:56 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:56 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:56 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC }],Message:,Reason:,HostIP:192.168.93.128,PodIP:,StartTime:2019-06-11 15:06:56 +0000 UTC,ContainerStatuses:[{nginx {ContainerStateWaiting{Reason:ContainerCreating,Message:,} nil nil} {nil nil nil} false 0 docker.io/library/nginx:1.14-alpine }],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.986: INFO: Pod "nginx-deployment-555b55d965-qj8j6" is not available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-555b55d965-qj8j6,GenerateName:nginx-deployment-555b55d965-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-555b55d965-qj8j6,UID:8d746a69-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2554,Generation:0,CreationTimestamp:2019-06-11 15:06:55 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 555b55d965,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-555b55d965 8897d18a-8c5a-11e9-a974-0a8dd5e588e4 0xc000693fe7 0xc000693fe8}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx docker.io/library/nginx:1.14-alpine [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-114-212.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc00054d960} {node.kubernetes.io/unreachable Exists NoExecute 0xc00054da60}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Pending,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:56 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:56 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:56 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC }],Message:,Reason:,HostIP:192.168.114.212,PodIP:,StartTime:2019-06-11 15:06:56 +0000 UTC,ContainerStatuses:[{nginx {ContainerStateWaiting{Reason:ContainerCreating,Message:,} nil nil} {nil nil nil} false 0 docker.io/library/nginx:1.14-alpine }],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.987: INFO: Pod "nginx-deployment-555b55d965-qvw99" is not available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-555b55d965-qvw99,GenerateName:nginx-deployment-555b55d965-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-555b55d965-qvw99,UID:8d71eec2-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2545,Generation:0,CreationTimestamp:2019-06-11 15:06:55 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 555b55d965,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-555b55d965 8897d18a-8c5a-11e9-a974-0a8dd5e588e4 0xc0004ca037 0xc0004ca038}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx docker.io/library/nginx:1.14-alpine [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-153-167.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc0004ca280} {node.kubernetes.io/unreachable Exists NoExecute 0xc0004ca2f0}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Pending,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC }],Message:,Reason:,HostIP:192.168.153.167,PodIP:,StartTime:2019-06-11 15:06:55 +0000 UTC,ContainerStatuses:[{nginx {ContainerStateWaiting{Reason:ContainerCreating,Message:,} nil nil} {nil nil nil} false 0 docker.io/library/nginx:1.14-alpine }],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.987: INFO: Pod "nginx-deployment-555b55d965-rxrqr" is available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-555b55d965-rxrqr,GenerateName:nginx-deployment-555b55d965-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-555b55d965-rxrqr,UID:889f4074-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2353,Generation:0,CreationTimestamp:2019-06-11 15:06:47 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 555b55d965,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-555b55d965 8897d18a-8c5a-11e9-a974-0a8dd5e588e4 0xc0004ca557 0xc0004ca558}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx docker.io/library/nginx:1.14-alpine [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-230-15.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc0004ca850} {node.kubernetes.io/unreachable Exists NoExecute 0xc0004ca8f0}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Running,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:47 +0000 UTC } {Ready True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:51 +0000 UTC } {ContainersReady True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:51 +0000 UTC } {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:47 +0000 UTC }],Message:,Reason:,HostIP:192.168.230.15,PodIP:192.168.210.106,StartTime:2019-06-11 15:06:47 +0000 UTC,ContainerStatuses:[{nginx {nil ContainerStateRunning{StartedAt:2019-06-11 15:06:51 +0000 UTC,} nil} {nil nil nil} true 0 nginx:1.14-alpine docker-pullable://nginx@sha256:485b610fefec7ff6c463ced9623314a04ed67e3945b9c08d7e53a47f6d108dc7 docker://c1e03db44fb74de93c061d6817bc4823c68152e4aaea628ef3edfdc3cb991a4d}],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.987: INFO: Pod "nginx-deployment-555b55d965-tf5qw" is not available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-555b55d965-tf5qw,GenerateName:nginx-deployment-555b55d965-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-555b55d965-tf5qw,UID:8d71fc04-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2551,Generation:0,CreationTimestamp:2019-06-11 15:06:55 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 555b55d965,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-555b55d965 8897d18a-8c5a-11e9-a974-0a8dd5e588e4 0xc0004cb4a7 0xc0004cb4a8}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx docker.io/library/nginx:1.14-alpine [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-192-169.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc0004cb5b0} {node.kubernetes.io/unreachable Exists NoExecute 0xc0004cb610}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Pending,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC }],Message:,Reason:,HostIP:192.168.192.169,PodIP:,StartTime:2019-06-11 15:06:55 +0000 UTC,ContainerStatuses:[{nginx {ContainerStateWaiting{Reason:ContainerCreating,Message:,} nil nil} {nil nil nil} false 0 docker.io/library/nginx:1.14-alpine }],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.987: INFO: Pod "nginx-deployment-555b55d965-z7ws9" is available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-555b55d965-z7ws9,GenerateName:nginx-deployment-555b55d965-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-555b55d965-z7ws9,UID:8d6f7264-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2655,Generation:0,CreationTimestamp:2019-06-11 15:06:55 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 555b55d965,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-555b55d965 8897d18a-8c5a-11e9-a974-0a8dd5e588e4 0xc000396077 0xc000396078}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx docker.io/library/nginx:1.14-alpine [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-153-167.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc0003961e0} {node.kubernetes.io/unreachable Exists NoExecute 0xc000396220}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Running,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC } {Ready True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:57 +0000 UTC } {ContainersReady True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:57 +0000 UTC } {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC }],Message:,Reason:,HostIP:192.168.153.167,PodIP:192.168.147.4,StartTime:2019-06-11 15:06:55 +0000 UTC,ContainerStatuses:[{nginx {nil ContainerStateRunning{StartedAt:2019-06-11 15:06:57 +0000 UTC,} nil} {nil nil nil} true 0 nginx:1.14-alpine docker-pullable://nginx@sha256:485b610fefec7ff6c463ced9623314a04ed67e3945b9c08d7e53a47f6d108dc7 docker://e2ed0259969c3e9bfa159ff1e741ce9dc738f48c93cc35e1b895a575c277ffd1}],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.987: INFO: Pod "nginx-deployment-65bbdb5f8-4fhsv" is not available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-65bbdb5f8-4fhsv,GenerateName:nginx-deployment-65bbdb5f8-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-65bbdb5f8-4fhsv,UID:8d73535b-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2549,Generation:0,CreationTimestamp:2019-06-11 15:06:55 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 65bbdb5f8,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-65bbdb5f8 8c322c5f-8c5a-11e9-a974-0a8dd5e588e4 0xc0003963f0 0xc0003963f1}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx nginx:404 [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-230-15.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc000396570} {node.kubernetes.io/unreachable Exists NoExecute 0xc0003965d0}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Pending,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC }],Message:,Reason:,HostIP:192.168.230.15,PodIP:,StartTime:2019-06-11 15:06:55 +0000 UTC,ContainerStatuses:[{nginx {ContainerStateWaiting{Reason:ContainerCreating,Message:,} nil nil} {nil nil nil} false 0 nginx:404 }],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.988: INFO: Pod "nginx-deployment-65bbdb5f8-5gkqm" is not available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-65bbdb5f8-5gkqm,GenerateName:nginx-deployment-65bbdb5f8-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-65bbdb5f8-5gkqm,UID:8c3ec273-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2624,Generation:0,CreationTimestamp:2019-06-11 15:06:53 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 65bbdb5f8,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-65bbdb5f8 8c322c5f-8c5a-11e9-a974-0a8dd5e588e4 0xc000396d30 0xc000396d31}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx nginx:404 [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-114-212.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc000397060} {node.kubernetes.io/unreachable Exists NoExecute 0xc000397710}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Pending,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:53 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:53 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:53 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:53 +0000 UTC }],Message:,Reason:,HostIP:192.168.114.212,PodIP:192.168.102.12,StartTime:2019-06-11 15:06:53 +0000 UTC,ContainerStatuses:[{nginx {ContainerStateWaiting{Reason:ImagePullBackOff,Message:Back-off pulling image "nginx:404",} nil nil} {nil nil nil} false 0 nginx:404 }],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.988: INFO: Pod "nginx-deployment-65bbdb5f8-6c2bt" is not available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-65bbdb5f8-6c2bt,GenerateName:nginx-deployment-65bbdb5f8-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-65bbdb5f8-6c2bt,UID:8d733294-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2561,Generation:0,CreationTimestamp:2019-06-11 15:06:55 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 65bbdb5f8,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-65bbdb5f8 8c322c5f-8c5a-11e9-a974-0a8dd5e588e4 0xc00041a080 0xc00041a081}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx nginx:404 [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-153-167.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc00041a2b0} {node.kubernetes.io/unreachable Exists NoExecute 0xc00041a390}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Pending,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC }],Message:,Reason:,HostIP:192.168.153.167,PodIP:,StartTime:2019-06-11 15:06:55 +0000 UTC,ContainerStatuses:[{nginx {ContainerStateWaiting{Reason:ContainerCreating,Message:,} nil nil} {nil nil nil} false 0 nginx:404 }],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.988: INFO: Pod "nginx-deployment-65bbdb5f8-8chg7" is not available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-65bbdb5f8-8chg7,GenerateName:nginx-deployment-65bbdb5f8-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-65bbdb5f8-8chg7,UID:8c332da8-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2512,Generation:0,CreationTimestamp:2019-06-11 15:06:53 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 65bbdb5f8,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-65bbdb5f8 8c322c5f-8c5a-11e9-a974-0a8dd5e588e4 0xc00041a6a0 0xc00041a6a1}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx nginx:404 [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-93-128.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc00049a020} {node.kubernetes.io/unreachable Exists NoExecute 0xc00049a0c0}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Pending,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:53 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:53 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:53 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:53 +0000 UTC }],Message:,Reason:,HostIP:192.168.93.128,PodIP:192.168.102.142,StartTime:2019-06-11 15:06:53 +0000 UTC,ContainerStatuses:[{nginx {ContainerStateWaiting{Reason:ErrImagePull,Message:rpc error: code = Unknown desc = Error response from daemon: manifest for nginx:404 not found,} nil nil} {nil nil nil} false 0 nginx:404 }],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.989: INFO: Pod "nginx-deployment-65bbdb5f8-9ljnm" is not available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-65bbdb5f8-9ljnm,GenerateName:nginx-deployment-65bbdb5f8-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-65bbdb5f8-9ljnm,UID:8c33f23f-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2573,Generation:0,CreationTimestamp:2019-06-11 15:06:53 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 65bbdb5f8,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-65bbdb5f8 8c322c5f-8c5a-11e9-a974-0a8dd5e588e4 0xc00049a4f0 0xc00049a4f1}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx nginx:404 [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-192-169.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc00049aac0} {node.kubernetes.io/unreachable Exists NoExecute 0xc00049ab00}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Pending,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:53 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:53 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:53 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:53 +0000 UTC }],Message:,Reason:,HostIP:192.168.192.169,PodIP:192.168.247.162,StartTime:2019-06-11 15:06:53 +0000 UTC,ContainerStatuses:[{nginx {ContainerStateWaiting{Reason:ErrImagePull,Message:rpc error: code = Unknown desc = Error response from daemon: manifest for nginx:404 not found,} nil nil} {nil nil nil} false 0 nginx:404 }],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.989: INFO: Pod "nginx-deployment-65bbdb5f8-b5hft" is not available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-65bbdb5f8-b5hft,GenerateName:nginx-deployment-65bbdb5f8-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-65bbdb5f8-b5hft,UID:8d71dbb4-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2547,Generation:0,CreationTimestamp:2019-06-11 15:06:55 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 65bbdb5f8,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-65bbdb5f8 8c322c5f-8c5a-11e9-a974-0a8dd5e588e4 0xc00049adc0 0xc00049adc1}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx nginx:404 [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-114-212.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc00049b0d0} {node.kubernetes.io/unreachable Exists NoExecute 0xc00049b160}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Pending,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC }],Message:,Reason:,HostIP:192.168.114.212,PodIP:,StartTime:2019-06-11 15:06:55 +0000 UTC,ContainerStatuses:[{nginx {ContainerStateWaiting{Reason:ContainerCreating,Message:,} nil nil} {nil nil nil} false 0 nginx:404 }],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.989: INFO: Pod "nginx-deployment-65bbdb5f8-cmdk7" is not available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-65bbdb5f8-cmdk7,GenerateName:nginx-deployment-65bbdb5f8-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-65bbdb5f8-cmdk7,UID:8d737d41-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2562,Generation:0,CreationTimestamp:2019-06-11 15:06:55 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 65bbdb5f8,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-65bbdb5f8 8c322c5f-8c5a-11e9-a974-0a8dd5e588e4 0xc00049b470 0xc00049b471}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx nginx:404 [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-141-198.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc00049b590} {node.kubernetes.io/unreachable Exists NoExecute 0xc00049b5b0}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Pending,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:56 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:56 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:56 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC }],Message:,Reason:,HostIP:192.168.141.198,PodIP:,StartTime:2019-06-11 15:06:56 +0000 UTC,ContainerStatuses:[{nginx {ContainerStateWaiting{Reason:ContainerCreating,Message:,} nil nil} {nil nil nil} false 0 nginx:404 }],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.989: INFO: Pod "nginx-deployment-65bbdb5f8-dtvsl" is not available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-65bbdb5f8-dtvsl,GenerateName:nginx-deployment-65bbdb5f8-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-65bbdb5f8-dtvsl,UID:8c340782-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2589,Generation:0,CreationTimestamp:2019-06-11 15:06:53 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 65bbdb5f8,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-65bbdb5f8 8c322c5f-8c5a-11e9-a974-0a8dd5e588e4 0xc00049b860 0xc00049b861}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx nginx:404 [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-141-198.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc00049ba10} {node.kubernetes.io/unreachable Exists NoExecute 0xc00049ba40}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Pending,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:53 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:53 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:53 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:53 +0000 UTC }],Message:,Reason:,HostIP:192.168.141.198,PodIP:192.168.191.248,StartTime:2019-06-11 15:06:53 +0000 UTC,ContainerStatuses:[{nginx {ContainerStateWaiting{Reason:ErrImagePull,Message:rpc error: code = Unknown desc = Error response from daemon: manifest for nginx:404 not found,} nil nil} {nil nil nil} false 0 nginx:404 }],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.989: INFO: Pod "nginx-deployment-65bbdb5f8-jrjkn" is not available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-65bbdb5f8-jrjkn,GenerateName:nginx-deployment-65bbdb5f8-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-65bbdb5f8-jrjkn,UID:8d736160-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2565,Generation:0,CreationTimestamp:2019-06-11 15:06:55 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 65bbdb5f8,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-65bbdb5f8 8c322c5f-8c5a-11e9-a974-0a8dd5e588e4 0xc00049bcb0 0xc00049bcb1}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx nginx:404 [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-230-15.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc00049bde0} {node.kubernetes.io/unreachable Exists NoExecute 0xc00049be00}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Pending,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:56 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:56 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:56 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC }],Message:,Reason:,HostIP:192.168.230.15,PodIP:,StartTime:2019-06-11 15:06:56 +0000 UTC,ContainerStatuses:[{nginx {ContainerStateWaiting{Reason:ContainerCreating,Message:,} nil nil} {nil nil nil} false 0 nginx:404 }],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.990: INFO: Pod "nginx-deployment-65bbdb5f8-k6ng9" is not available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-65bbdb5f8-k6ng9,GenerateName:nginx-deployment-65bbdb5f8-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-65bbdb5f8-k6ng9,UID:8d71b395-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2531,Generation:0,CreationTimestamp:2019-06-11 15:06:55 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 65bbdb5f8,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-65bbdb5f8 8c322c5f-8c5a-11e9-a974-0a8dd5e588e4 0xc0003e46d0 0xc0003e46d1}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx nginx:404 [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-192-169.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc0003e49f0} {node.kubernetes.io/unreachable Exists NoExecute 0xc0003e4aa0}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Pending,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC }],Message:,Reason:,HostIP:192.168.192.169,PodIP:,StartTime:2019-06-11 15:06:55 +0000 UTC,ContainerStatuses:[{nginx {ContainerStateWaiting{Reason:ContainerCreating,Message:,} nil nil} {nil nil nil} false 0 nginx:404 }],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.990: INFO: Pod "nginx-deployment-65bbdb5f8-lxspr" is not available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-65bbdb5f8-lxspr,GenerateName:nginx-deployment-65bbdb5f8-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-65bbdb5f8-lxspr,UID:8d753dbc-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2559,Generation:0,CreationTimestamp:2019-06-11 15:06:55 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 65bbdb5f8,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-65bbdb5f8 8c322c5f-8c5a-11e9-a974-0a8dd5e588e4 0xc0003e4d60 0xc0003e4d61}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx nginx:404 [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-93-128.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc0003e4f80} {node.kubernetes.io/unreachable Exists NoExecute 0xc0003e5010}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Pending,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:56 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:56 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:56 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC }],Message:,Reason:,HostIP:192.168.93.128,PodIP:,StartTime:2019-06-11 15:06:56 +0000 UTC,ContainerStatuses:[{nginx {ContainerStateWaiting{Reason:ContainerCreating,Message:,} nil nil} {nil nil nil} false 0 nginx:404 }],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.990: INFO: Pod "nginx-deployment-65bbdb5f8-mcf52" is not available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-65bbdb5f8-mcf52,GenerateName:nginx-deployment-65bbdb5f8-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-65bbdb5f8-mcf52,UID:8c3d9bb3-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2659,Generation:0,CreationTimestamp:2019-06-11 15:06:53 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 65bbdb5f8,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-65bbdb5f8 8c322c5f-8c5a-11e9-a974-0a8dd5e588e4 0xc0003e5490 0xc0003e5491}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx nginx:404 [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-153-167.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc0003e5700} {node.kubernetes.io/unreachable Exists NoExecute 0xc0003e5720}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Pending,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:53 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:53 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:53 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:53 +0000 UTC }],Message:,Reason:,HostIP:192.168.153.167,PodIP:192.168.135.148,StartTime:2019-06-11 15:06:53 +0000 UTC,ContainerStatuses:[{nginx {ContainerStateWaiting{Reason:ErrImagePull,Message:rpc error: code = Unknown desc = Error response from daemon: manifest for nginx:404 not found,} nil nil} {nil nil nil} false 0 nginx:404 }],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
Jun 11 15:06:57.990: INFO: Pod "nginx-deployment-65bbdb5f8-n2l4q" is not available:
&Pod{ObjectMeta:k8s_io_apimachinery_pkg_apis_meta_v1.ObjectMeta{Name:nginx-deployment-65bbdb5f8-n2l4q,GenerateName:nginx-deployment-65bbdb5f8-,Namespace:e2e-tests-deployment-lcj76,SelfLink:/api/v1/namespaces/e2e-tests-deployment-lcj76/pods/nginx-deployment-65bbdb5f8-n2l4q,UID:8d70b2c6-8c5a-11e9-a974-0a8dd5e588e4,ResourceVersion:2528,Generation:0,CreationTimestamp:2019-06-11 15:06:55 +0000 UTC,DeletionTimestamp:<nil>,DeletionGracePeriodSeconds:nil,Labels:map[string]string{name: nginx,pod-template-hash: 65bbdb5f8,},Annotations:map[string]string{kubernetes.io/psp: e2e-test-privileged-psp,},OwnerReferences:[{apps/v1 ReplicaSet nginx-deployment-65bbdb5f8 8c322c5f-8c5a-11e9-a974-0a8dd5e588e4 0xc0003e5a20 0xc0003e5a21}],Finalizers:[],ClusterName:,Initializers:nil,},Spec:PodSpec{Volumes:[{default-token-t4l56 {nil nil nil nil nil SecretVolumeSource{SecretName:default-token-t4l56,Items:[],DefaultMode:*420,Optional:nil,} nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil}}],Containers:[{nginx nginx:404 [] [] [] [] [] {map[] map[]} [{default-token-t4l56 true /var/run/secrets/kubernetes.io/serviceaccount <nil>}] [] nil nil nil /dev/termination-log File IfNotPresent nil false false false}],RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:ip-192-168-230-15.us-west-2.compute.internal,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[],},ImagePullSecrets:[],Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[],AutomountServiceAccountToken:nil,Tolerations:[{node.kubernetes.io/not-ready Exists NoExecute 0xc0003e5af0} {node.kubernetes.io/unreachable Exists NoExecute 0xc0003e5b50}],HostAliases:[],PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[],RuntimeClassName:nil,EnableServiceLinks:*true,},Status:PodStatus{Phase:Pending,Conditions:[{Initialized True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC ContainersNotReady containers with unready status: [nginx]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2019-06-11 15:06:55 +0000 UTC }],Message:,Reason:,HostIP:192.168.230.15,PodIP:,StartTime:2019-06-11 15:06:55 +0000 UTC,ContainerStatuses:[{nginx {ContainerStateWaiting{Reason:ContainerCreating,Message:,} nil nil} {nil nil nil} false 0 nginx:404 }],QOSClass:BestEffort,InitContainerStatuses:[],NominatedNodeName:,},}
[AfterEach] [sig-apps] Deployment
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:154
Jun 11 15:06:57.990: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready
STEP: Destroying namespace "e2e-tests-deployment-lcj76" for this suite.
Jun 11 15:07:06.013: INFO: Waiting up to 30s for server preferred namespaced resources to be successfully discovered
Jun 11 15:07:06.092: INFO: namespace: e2e-tests-deployment-lcj76, resource: bindings, ignored listing per whitelist
Jun 11 15:07:06.162: INFO: namespace e2e-tests-deployment-lcj76 deletion completed in 8.164170807s
• [SLOW TEST:18.564 seconds]
[sig-apps] Deployment
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/apps/framework.go:22
deployment should support proportional scaling [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
------------------------------
SS
------------------------------
[k8s.io] Probing container
with readiness probe should not be ready before initial delay and never restart [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
[BeforeEach] [k8s.io] Probing container
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:153
STEP: Creating a kubernetes client
Jun 11 15:07:06.162: INFO: >>> kubeConfig: /tmp/kubeconfig-160876913
STEP: Building a namespace api object, basename container-probe
STEP: Binding the e2e-test-privileged-psp PodSecurityPolicy to the default service account in e2e-tests-container-probe-d648j
STEP: Waiting for a default service account to be provisioned in namespace
[BeforeEach] [k8s.io] Probing container
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/common/container_probe.go:48
[It] with readiness probe should not be ready before initial delay and never restart [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
Jun 11 15:07:28.387: INFO: Container started at 2019-06-11 15:07:08 +0000 UTC, pod became ready at 2019-06-11 15:07:27 +0000 UTC
[AfterEach] [k8s.io] Probing container
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:154
Jun 11 15:07:28.387: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready
STEP: Destroying namespace "e2e-tests-container-probe-d648j" for this suite.
Jun 11 15:07:50.411: INFO: Waiting up to 30s for server preferred namespaced resources to be successfully discovered
Jun 11 15:07:50.492: INFO: namespace: e2e-tests-container-probe-d648j, resource: bindings, ignored listing per whitelist
Jun 11 15:07:50.556: INFO: namespace e2e-tests-container-probe-d648j deletion completed in 22.161213565s
• [SLOW TEST:44.394 seconds]
[k8s.io] Probing container
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:694
with readiness probe should not be ready before initial delay and never restart [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
------------------------------
SSSSSSSSSSSSSSSSSSSS
------------------------------
[sig-storage] Projected downwardAPI
should provide node allocatable (memory) as default memory limit if the limit is not set [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
[BeforeEach] [sig-storage] Projected downwardAPI
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:153
STEP: Creating a kubernetes client
Jun 11 15:07:50.556: INFO: >>> kubeConfig: /tmp/kubeconfig-160876913
STEP: Building a namespace api object, basename projected
STEP: Binding the e2e-test-privileged-psp PodSecurityPolicy to the default service account in e2e-tests-projected-gmj9g
STEP: Waiting for a default service account to be provisioned in namespace
[BeforeEach] [sig-storage] Projected downwardAPI
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/common/projected_downwardapi.go:39
[It] should provide node allocatable (memory) as default memory limit if the limit is not set [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
STEP: Creating a pod to test downward API volume plugin
Jun 11 15:07:50.765: INFO: Waiting up to 5m0s for pod "downwardapi-volume-ae1c1436-8c5a-11e9-8426-0a96f5951f5b" in namespace "e2e-tests-projected-gmj9g" to be "success or failure"
Jun 11 15:07:50.770: INFO: Pod "downwardapi-volume-ae1c1436-8c5a-11e9-8426-0a96f5951f5b": Phase="Pending", Reason="", readiness=false. Elapsed: 5.017648ms
Jun 11 15:07:52.775: INFO: Pod "downwardapi-volume-ae1c1436-8c5a-11e9-8426-0a96f5951f5b": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010157496s
Jun 11 15:07:54.780: INFO: Pod "downwardapi-volume-ae1c1436-8c5a-11e9-8426-0a96f5951f5b": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.015371353s
STEP: Saw pod success
Jun 11 15:07:54.780: INFO: Pod "downwardapi-volume-ae1c1436-8c5a-11e9-8426-0a96f5951f5b" satisfied condition "success or failure"
Jun 11 15:07:54.785: INFO: Trying to get logs from node ip-192-168-93-128.us-west-2.compute.internal pod downwardapi-volume-ae1c1436-8c5a-11e9-8426-0a96f5951f5b container client-container: <nil>
STEP: delete the pod
Jun 11 15:07:54.812: INFO: Waiting for pod downwardapi-volume-ae1c1436-8c5a-11e9-8426-0a96f5951f5b to disappear
Jun 11 15:07:54.818: INFO: Pod downwardapi-volume-ae1c1436-8c5a-11e9-8426-0a96f5951f5b no longer exists
[AfterEach] [sig-storage] Projected downwardAPI
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:154
Jun 11 15:07:54.818: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready
STEP: Destroying namespace "e2e-tests-projected-gmj9g" for this suite.
Jun 11 15:08:00.841: INFO: Waiting up to 30s for server preferred namespaced resources to be successfully discovered
Jun 11 15:08:00.894: INFO: namespace: e2e-tests-projected-gmj9g, resource: bindings, ignored listing per whitelist
Jun 11 15:08:00.990: INFO: namespace e2e-tests-projected-gmj9g deletion completed in 6.164643464s
• [SLOW TEST:10.433 seconds]
[sig-storage] Projected downwardAPI
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/common/projected_downwardapi.go:33
should provide node allocatable (memory) as default memory limit if the limit is not set [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
------------------------------
SS
------------------------------
[sig-storage] Secrets
should be consumable from pods in volume with mappings and Item Mode set [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
[BeforeEach] [sig-storage] Secrets
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:153
STEP: Creating a kubernetes client
Jun 11 15:08:00.990: INFO: >>> kubeConfig: /tmp/kubeconfig-160876913
STEP: Building a namespace api object, basename secrets
STEP: Binding the e2e-test-privileged-psp PodSecurityPolicy to the default service account in e2e-tests-secrets-7zgqd
STEP: Waiting for a default service account to be provisioned in namespace
[It] should be consumable from pods in volume with mappings and Item Mode set [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
STEP: Creating secret with name secret-test-map-b4558ef1-8c5a-11e9-8426-0a96f5951f5b
STEP: Creating a pod to test consume secrets
Jun 11 15:08:01.214: INFO: Waiting up to 5m0s for pod "pod-secrets-b456b811-8c5a-11e9-8426-0a96f5951f5b" in namespace "e2e-tests-secrets-7zgqd" to be "success or failure"
Jun 11 15:08:01.219: INFO: Pod "pod-secrets-b456b811-8c5a-11e9-8426-0a96f5951f5b": Phase="Pending", Reason="", readiness=false. Elapsed: 4.575837ms
Jun 11 15:08:03.226: INFO: Pod "pod-secrets-b456b811-8c5a-11e9-8426-0a96f5951f5b": Phase="Succeeded", Reason="", readiness=false. Elapsed: 2.011950413s
STEP: Saw pod success
Jun 11 15:08:03.226: INFO: Pod "pod-secrets-b456b811-8c5a-11e9-8426-0a96f5951f5b" satisfied condition "success or failure"
Jun 11 15:08:03.231: INFO: Trying to get logs from node ip-192-168-192-169.us-west-2.compute.internal pod pod-secrets-b456b811-8c5a-11e9-8426-0a96f5951f5b container secret-volume-test: <nil>
STEP: delete the pod
Jun 11 15:08:03.258: INFO: Waiting for pod pod-secrets-b456b811-8c5a-11e9-8426-0a96f5951f5b to disappear
Jun 11 15:08:03.262: INFO: Pod pod-secrets-b456b811-8c5a-11e9-8426-0a96f5951f5b no longer exists
[AfterEach] [sig-storage] Secrets
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:154
Jun 11 15:08:03.262: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready
STEP: Destroying namespace "e2e-tests-secrets-7zgqd" for this suite.
Jun 11 15:08:09.287: INFO: Waiting up to 30s for server preferred namespaced resources to be successfully discovered
Jun 11 15:08:09.437: INFO: namespace: e2e-tests-secrets-7zgqd, resource: bindings, ignored listing per whitelist
Jun 11 15:08:09.441: INFO: namespace e2e-tests-secrets-7zgqd deletion completed in 6.171519628s
• [SLOW TEST:8.452 seconds]
[sig-storage] Secrets
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/common/secrets_volume.go:34
should be consumable from pods in volume with mappings and Item Mode set [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
------------------------------
SSSSSSSSSSSSSSSSSSSSSSSSS
------------------------------
[sig-storage] ConfigMap
should be consumable from pods in volume as non-root [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
[BeforeEach] [sig-storage] ConfigMap
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:153
STEP: Creating a kubernetes client
Jun 11 15:08:09.441: INFO: >>> kubeConfig: /tmp/kubeconfig-160876913
STEP: Building a namespace api object, basename configmap
STEP: Binding the e2e-test-privileged-psp PodSecurityPolicy to the default service account in e2e-tests-configmap-6hzc4
STEP: Waiting for a default service account to be provisioned in namespace
[It] should be consumable from pods in volume as non-root [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
STEP: Creating configMap with name configmap-test-volume-b95cb15c-8c5a-11e9-8426-0a96f5951f5b
STEP: Creating a pod to test consume configMaps
Jun 11 15:08:09.645: INFO: Waiting up to 5m0s for pod "pod-configmaps-b95d87ed-8c5a-11e9-8426-0a96f5951f5b" in namespace "e2e-tests-configmap-6hzc4" to be "success or failure"
Jun 11 15:08:09.652: INFO: Pod "pod-configmaps-b95d87ed-8c5a-11e9-8426-0a96f5951f5b": Phase="Pending", Reason="", readiness=false. Elapsed: 6.365518ms
Jun 11 15:08:11.657: INFO: Pod "pod-configmaps-b95d87ed-8c5a-11e9-8426-0a96f5951f5b": Phase="Succeeded", Reason="", readiness=false. Elapsed: 2.011516638s
STEP: Saw pod success
Jun 11 15:08:11.657: INFO: Pod "pod-configmaps-b95d87ed-8c5a-11e9-8426-0a96f5951f5b" satisfied condition "success or failure"
Jun 11 15:08:11.661: INFO: Trying to get logs from node ip-192-168-93-128.us-west-2.compute.internal pod pod-configmaps-b95d87ed-8c5a-11e9-8426-0a96f5951f5b container configmap-volume-test: <nil>
STEP: delete the pod
Jun 11 15:08:11.687: INFO: Waiting for pod pod-configmaps-b95d87ed-8c5a-11e9-8426-0a96f5951f5b to disappear
Jun 11 15:08:11.692: INFO: Pod pod-configmaps-b95d87ed-8c5a-11e9-8426-0a96f5951f5b no longer exists
[AfterEach] [sig-storage] ConfigMap
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:154
Jun 11 15:08:11.692: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready
STEP: Destroying namespace "e2e-tests-configmap-6hzc4" for this suite.
Jun 11 15:08:17.719: INFO: Waiting up to 30s for server preferred namespaced resources to be successfully discovered
Jun 11 15:08:17.861: INFO: namespace: e2e-tests-configmap-6hzc4, resource: bindings, ignored listing per whitelist
Jun 11 15:08:17.871: INFO: namespace e2e-tests-configmap-6hzc4 deletion completed in 6.169013116s
• [SLOW TEST:8.430 seconds]
[sig-storage] ConfigMap
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/common/configmap_volume.go:33
should be consumable from pods in volume as non-root [NodeConformance] [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
------------------------------
S
------------------------------
[sig-scheduling] SchedulerPredicates [Serial]
validates that NodeSelector is respected if not matching [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
[BeforeEach] [sig-scheduling] SchedulerPredicates [Serial]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:153
STEP: Creating a kubernetes client
Jun 11 15:08:17.872: INFO: >>> kubeConfig: /tmp/kubeconfig-160876913
STEP: Building a namespace api object, basename sched-pred
STEP: Binding the e2e-test-privileged-psp PodSecurityPolicy to the default service account in e2e-tests-sched-pred-l5dbz
STEP: Waiting for a default service account to be provisioned in namespace
[BeforeEach] [sig-scheduling] SchedulerPredicates [Serial]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/scheduling/predicates.go:79
Jun 11 15:08:18.068: INFO: Waiting up to 1m0s for all (but 0) nodes to be ready
Jun 11 15:08:18.082: INFO: Waiting for terminating namespaces to be deleted...
Jun 11 15:08:18.086: INFO:
Logging pods the kubelet thinks is on node ip-192-168-114-212.us-west-2.compute.internal before test
Jun 11 15:08:18.094: INFO: kube-proxy-5dgsl from kube-system started at 2019-06-11 15:00:29 +0000 UTC (1 container statuses recorded)
Jun 11 15:08:18.094: INFO: Container kube-proxy ready: true, restart count 0
Jun 11 15:08:18.094: INFO: sonobuoy-systemd-logs-daemon-set-1ca02c84bf7e417d-8v748 from heptio-sonobuoy started at 2019-06-11 15:01:01 +0000 UTC (2 container statuses recorded)
Jun 11 15:08:18.094: INFO: Container sonobuoy-systemd-logs-config ready: true, restart count 0
Jun 11 15:08:18.094: INFO: Container sonobuoy-worker ready: true, restart count 0
Jun 11 15:08:18.094: INFO: aws-node-gcfpv from kube-system started at 2019-06-11 15:00:29 +0000 UTC (1 container statuses recorded)
Jun 11 15:08:18.094: INFO: Container aws-node ready: true, restart count 0
Jun 11 15:08:18.094: INFO: sonobuoy from heptio-sonobuoy started at 2019-06-11 15:00:57 +0000 UTC (1 container statuses recorded)
Jun 11 15:08:18.094: INFO: Container kube-sonobuoy ready: true, restart count 0
Jun 11 15:08:18.095: INFO:
Logging pods the kubelet thinks is on node ip-192-168-141-198.us-west-2.compute.internal before test
Jun 11 15:08:18.111: INFO: sonobuoy-e2e-job-fbc51e245ed74ff2 from heptio-sonobuoy started at 2019-06-11 15:01:01 +0000 UTC (2 container statuses recorded)
Jun 11 15:08:18.111: INFO: Container e2e ready: true, restart count 0
Jun 11 15:08:18.111: INFO: Container sonobuoy-worker ready: true, restart count 0
Jun 11 15:08:18.111: INFO: sonobuoy-systemd-logs-daemon-set-1ca02c84bf7e417d-4k9qr from heptio-sonobuoy started at 2019-06-11 15:01:01 +0000 UTC (2 container statuses recorded)
Jun 11 15:08:18.111: INFO: Container sonobuoy-systemd-logs-config ready: true, restart count 0
Jun 11 15:08:18.111: INFO: Container sonobuoy-worker ready: true, restart count 0
Jun 11 15:08:18.111: INFO: kube-proxy-592xq from kube-system started at 2019-06-11 15:00:28 +0000 UTC (1 container statuses recorded)
Jun 11 15:08:18.111: INFO: Container kube-proxy ready: true, restart count 0
Jun 11 15:08:18.111: INFO: aws-node-q67hz from kube-system started at 2019-06-11 15:00:28 +0000 UTC (1 container statuses recorded)
Jun 11 15:08:18.111: INFO: Container aws-node ready: true, restart count 0
Jun 11 15:08:18.111: INFO:
Logging pods the kubelet thinks is on node ip-192-168-153-167.us-west-2.compute.internal before test
Jun 11 15:08:18.121: INFO: sonobuoy-systemd-logs-daemon-set-1ca02c84bf7e417d-b5zkz from heptio-sonobuoy started at 2019-06-11 15:01:01 +0000 UTC (2 container statuses recorded)
Jun 11 15:08:18.121: INFO: Container sonobuoy-systemd-logs-config ready: true, restart count 0
Jun 11 15:08:18.121: INFO: Container sonobuoy-worker ready: true, restart count 0
Jun 11 15:08:18.121: INFO: kube-proxy-tgz4m from kube-system started at 2019-06-11 15:00:28 +0000 UTC (1 container statuses recorded)
Jun 11 15:08:18.121: INFO: Container kube-proxy ready: true, restart count 0
Jun 11 15:08:18.121: INFO: aws-node-p9wdl from kube-system started at 2019-06-11 15:00:28 +0000 UTC (1 container statuses recorded)
Jun 11 15:08:18.121: INFO: Container aws-node ready: true, restart count 0
Jun 11 15:08:18.121: INFO: coredns-8495478f6d-4xkn5 from kube-system started at 2019-06-11 15:00:48 +0000 UTC (1 container statuses recorded)
Jun 11 15:08:18.121: INFO: Container coredns ready: true, restart count 0
Jun 11 15:08:18.121: INFO: coredns-8495478f6d-k7w4z from kube-system started at 2019-06-11 15:00:48 +0000 UTC (1 container statuses recorded)
Jun 11 15:08:18.121: INFO: Container coredns ready: true, restart count 0
Jun 11 15:08:18.121: INFO:
Logging pods the kubelet thinks is on node ip-192-168-192-169.us-west-2.compute.internal before test
Jun 11 15:08:18.129: INFO: kube-proxy-zskt6 from kube-system started at 2019-06-11 15:00:33 +0000 UTC (1 container statuses recorded)
Jun 11 15:08:18.129: INFO: Container kube-proxy ready: true, restart count 0
Jun 11 15:08:18.129: INFO: aws-node-fmj7f from kube-system started at 2019-06-11 15:00:33 +0000 UTC (1 container statuses recorded)
Jun 11 15:08:18.129: INFO: Container aws-node ready: true, restart count 0
Jun 11 15:08:18.129: INFO: sonobuoy-systemd-logs-daemon-set-1ca02c84bf7e417d-9cb24 from heptio-sonobuoy started at 2019-06-11 15:01:01 +0000 UTC (2 container statuses recorded)
Jun 11 15:08:18.129: INFO: Container sonobuoy-systemd-logs-config ready: true, restart count 0
Jun 11 15:08:18.129: INFO: Container sonobuoy-worker ready: true, restart count 0
Jun 11 15:08:18.129: INFO:
Logging pods the kubelet thinks is on node ip-192-168-230-15.us-west-2.compute.internal before test
Jun 11 15:08:18.138: INFO: aws-node-qmnfk from kube-system started at 2019-06-11 15:00:31 +0000 UTC (1 container statuses recorded)
Jun 11 15:08:18.138: INFO: Container aws-node ready: true, restart count 0
Jun 11 15:08:18.138: INFO: kube-proxy-65tjr from kube-system started at 2019-06-11 15:00:31 +0000 UTC (1 container statuses recorded)
Jun 11 15:08:18.138: INFO: Container kube-proxy ready: true, restart count 0
Jun 11 15:08:18.138: INFO: sonobuoy-systemd-logs-daemon-set-1ca02c84bf7e417d-mrwqz from heptio-sonobuoy started at 2019-06-11 15:01:01 +0000 UTC (2 container statuses recorded)
Jun 11 15:08:18.138: INFO: Container sonobuoy-systemd-logs-config ready: true, restart count 0
Jun 11 15:08:18.138: INFO: Container sonobuoy-worker ready: true, restart count 0
Jun 11 15:08:18.138: INFO:
Logging pods the kubelet thinks is on node ip-192-168-93-128.us-west-2.compute.internal before test
Jun 11 15:08:18.146: INFO: aws-node-s7wpg from kube-system started at 2019-06-11 15:00:33 +0000 UTC (1 container statuses recorded)
Jun 11 15:08:18.146: INFO: Container aws-node ready: true, restart count 0
Jun 11 15:08:18.146: INFO: kube-proxy-m2phg from kube-system started at 2019-06-11 15:00:33 +0000 UTC (1 container statuses recorded)
Jun 11 15:08:18.146: INFO: Container kube-proxy ready: true, restart count 0
Jun 11 15:08:18.146: INFO: sonobuoy-systemd-logs-daemon-set-1ca02c84bf7e417d-z4dgf from heptio-sonobuoy started at 2019-06-11 15:01:01 +0000 UTC (2 container statuses recorded)
Jun 11 15:08:18.146: INFO: Container sonobuoy-systemd-logs-config ready: true, restart count 0
Jun 11 15:08:18.146: INFO: Container sonobuoy-worker ready: true, restart count 0
[It] validates that NodeSelector is respected if not matching [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
STEP: Trying to schedule Pod with nonempty NodeSelector.
STEP: Considering event:
Type = [Warning], Name = [restricted-pod.15a72d62c6bb7da0], Reason = [FailedScheduling], Message = [0/6 nodes are available: 6 node(s) didn't match node selector.]
[AfterEach] [sig-scheduling] SchedulerPredicates [Serial]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:154
Jun 11 15:08:19.177: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready
STEP: Destroying namespace "e2e-tests-sched-pred-l5dbz" for this suite.
Jun 11 15:08:25.200: INFO: Waiting up to 30s for server preferred namespaced resources to be successfully discovered
Jun 11 15:08:25.309: INFO: namespace: e2e-tests-sched-pred-l5dbz, resource: bindings, ignored listing per whitelist
Jun 11 15:08:25.344: INFO: namespace e2e-tests-sched-pred-l5dbz deletion completed in 6.160862437s
[AfterEach] [sig-scheduling] SchedulerPredicates [Serial]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/scheduling/predicates.go:70
• [SLOW TEST:7.472 seconds]
[sig-scheduling] SchedulerPredicates [Serial]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/scheduling/framework.go:22
validates that NodeSelector is respected if not matching [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
------------------------------
SSSSSSSSSSS
------------------------------
[sig-network] Service endpoints latency
should not be very high [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
[BeforeEach] [sig-network] Service endpoints latency
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:153
STEP: Creating a kubernetes client
Jun 11 15:08:25.344: INFO: >>> kubeConfig: /tmp/kubeconfig-160876913
STEP: Building a namespace api object, basename svc-latency
STEP: Binding the e2e-test-privileged-psp PodSecurityPolicy to the default service account in e2e-tests-svc-latency-lbd86
STEP: Waiting for a default service account to be provisioned in namespace
[It] should not be very high [Conformance]
/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:699
STEP: creating replication controller svc-latency-rc in namespace e2e-tests-svc-latency-lbd86
I0611 15:08:25.541873 15 runners.go:184] Created replication controller with name: svc-latency-rc, namespace: e2e-tests-svc-latency-lbd86, replica count: 1
I0611 15:08:26.592554 15 runners.go:184] svc-latency-rc Pods: 1 out of 1 created, 0 running, 1 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady
I0611 15:08:27.592874 15 runners.go:184] svc-latency-rc Pods: 1 out of 1 created, 0 running, 1 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady
I0611 15:08:28.593138 15 runners.go:184] svc-latency-rc Pods: 1 out of 1 created, 1 running, 0 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady
Jun 11 15:08:28.710: INFO: Created: latency-svc-gj64n
Jun 11 15:08:28.723: INFO: Got endpoints: latency-svc-gj64n [30.117943ms]
Jun 11 15:08:28.742: INFO: Created: latency-svc-vxbpp
Jun 11 15:08:28.747: INFO: Got endpoints: latency-svc-vxbpp [23.723104ms]
Jun 11 15:08:28.752: INFO: Created: latency-svc-dbksj
Jun 11 15:08:28.758: INFO: Got endpoints: latency-svc-dbksj [34.309973ms]
Jun 11 15:08:28.764: INFO: Created: latency-svc-vcrmg
Jun 11 15:08:28.770: INFO: Got endpoints: latency-svc-vcrmg [45.940856ms]
Jun 11 15:08:28.776: INFO: Created: latency-svc-m8c6n
Jun 11 15:08:28.782: INFO: Got endpoints: latency-svc-m8c6n [57.268763ms]
Jun 11 15:08:28.787: INFO: Created: latency-svc-8tvfh
Jun 11 15:08:28.794: INFO: Got endpoints: latency-svc-8tvfh [69.189117ms]
Jun 11 15:08:28.798: INFO: Created: latency-svc-mlbr2
Jun 11 15:08:28.803: INFO: Got endpoints: latency-svc-mlbr2 [78.675907ms]
Jun 11 15:08:28.810: INFO: Created: latency-svc-qbr6l
Jun 11 15:08:28.815: INFO: Got endpoints: latency-svc-qbr6l [90.528914ms]
Jun 11 15:08:28.821: INFO: Created: latency-svc-wc594
Jun 11 15:08:28.827: INFO: Got endpoints: latency-svc-wc594 [101.803365ms]
Jun 11 15:08:28.833: INFO: Created: latency-svc-qrdwn
Jun 11 15:08:28.838: INFO: Got endpoints: latency-svc-qrdwn [113.228612ms]
Jun 11 15:08:28.845: INFO: Created: latency-svc-n4tck
Jun 11 15:08:28.849: INFO: Got endpoints: latency-svc-n4tck [124.291624ms]
Jun 11 15:08:28.856: INFO: Created: latency-svc-9rzcl
Jun 11 15:08:28.861: INFO: Got endpoints: latency-svc-9rzcl [135.743412ms]
Jun 11 15:08:28.868: INFO: Created: latency-svc-rd2f9
Jun 11 15:08:28.875: INFO: Got endpoints: latency-svc-rd2f9 [149.287158ms]
Jun 11 15:08:28.879: INFO: Created: latency-svc-9gcsp
Jun 11 15:08:28.885: INFO: Got endpoints: latency-svc-9gcsp [159.83056ms]
Jun 11 15:08:28.891: INFO: Created: latency-svc-pgzfm
Jun 11 15:08:28.898: INFO: Got endpoints: latency-svc-pgzfm [172.370376ms]
Jun 11 15:08:28.902: INFO: Created: latency-svc-fm85b
Jun 11 15:08:28.908: INFO: Got endpoints: latency-svc-fm85b [182.304118ms]
Jun 11 15:08:28.912: INFO: Created: latency-svc-fwlvx
Jun 11 15:08:28.918: INFO: Got endpoints: latency-svc-fwlvx [170.431529ms]
Jun 11 15:08:28.923: INFO: Created: latency-svc-sxr7k
Jun 11 15:08:28.928: INFO: Got endpoints: latency-svc-sxr7k [169.477065ms]
Jun 11 15:08:28.934: INFO: Created: latency-svc-2lfxt
Jun 11 15:08:28.938: INFO: Got endpoints: latency-svc-2lfxt [167.702288ms]
Jun 11 15:08:28.943: INFO: Created: latency-svc-2ktfd
Jun 11 15:08:28.950: INFO: Got endpoints: latency-svc-2ktfd [168.133108ms]
Jun 11 15:08:28.955: INFO: Created: latency-svc-c2bdh
Jun 11 15:08:28.959: INFO: Got endpoints: latency-svc-c2bdh [165.376818ms]
Jun 11 15:08:28.965: INFO: Created: latency-svc-xqfz7
Jun 11 15:08:28.971: INFO: Got endpoints: latency-svc-xqfz7 [167.128761ms]
Jun 11 15:08:28.976: INFO: Created: latency-svc-x4bg5
Jun 11 15:08:28.981: INFO: Got endpoints: latency-svc-x4bg5 [163.183783ms]
Jun 11 15:08:28.986: INFO: Created: latency-svc-4m6wx
Jun 11 15:08:28.992: INFO: Got endpoints: latency-svc-4m6wx [165.333314ms]
Jun 11 15:08:28.998: INFO: Created: latency-svc-sn87w
Jun 11 15:08:29.003: INFO: Got endpoints: latency-svc-sn87w [165.108974ms]
Jun 11 15:08:29.011: INFO: Created: latency-svc-c7pr2
Jun 11 15:08:29.016: INFO: Got endpoints: latency-svc-c7pr2 [166.721993ms]
Jun 11 15:08:29.024: INFO: Created: latency-svc-csmj6
Jun 11 15:08:29.030: INFO: Got endpoints: latency-svc-csmj6 [169.099047ms]
Jun 11 15:08:29.038: INFO: Created: latency-svc-2mdqr
Jun 11 15:08:29.044: INFO: Got endpoints: latency-svc-2mdqr [168.927226ms]
Jun 11 15:08:29.051: INFO: Created: latency-svc-ctmzp
Jun 11 15:08:29.058: INFO: Got endpoints: latency-svc-ctmzp [171.977359ms]
Jun 11 15:08:29.065: INFO: Created: latency-svc-nnvgt
Jun 11 15:08:29.070: INFO: Got endpoints: latency-svc-nnvgt [172.353757ms]
Jun 11 15:08:29.081: INFO: Created: latency-svc-km756
Jun 11 15:08:29.081: INFO: Got endpoints: latency-svc-km756 [173.489384ms]
Jun 11 15:08:29.092: INFO: Created: latency-svc-djff5
Jun 11 15:08:29.098: INFO: Got endpoints: latency-svc-djff5 [180.252629ms]
Jun 11 15:08:29.106: INFO: Created: latency-svc-xs4tm
Jun 11 15:08:29.111: INFO: Got endpoints: latency-svc-xs4tm [183.15895ms]
Jun 11 15:08:29.120: INFO: Created: latency-svc-j4z7l
Jun 11 15:08:29.126: INFO: Got endpoints: latency-svc-j4z7l [187.899317ms]
Jun 11 15:08:29.134: INFO: Created: latency-svc-p9stn
Jun 11 15:08:29.140: INFO: Got endpoints: latency-svc-p9stn [189.663141ms]
Jun 11 15:08:29.148: INFO: Created: latency-svc-bb9xj
Jun 11 15:08:29.153: INFO: Got endpoints: latency-svc-bb9xj [194.124533ms]
Jun 11 15:08:29.161: INFO: Created: latency-svc-mtvds
Jun 11 15:08:29.167: INFO: Got endpoints: latency-svc-mtvds [195.980469ms]
Jun 11 15:08:29.177: INFO: Created: latency-svc-dzk5l
Jun 11 15:08:29.183: INFO: Got endpoints: latency-svc-dzk5l [201.839576ms]
Jun 11 15:08:29.191: INFO: Created: latency-svc-czhc4
Jun 11 15:08:29.196: INFO: Got endpoints: latency-svc-czhc4 [203.504687ms]
Jun 11 15:08:29.204: INFO: Created: latency-svc-g4wxz
Jun 11 15:08:29.215: INFO: Got endpoints: latency-svc-g4wxz [210.769378ms]
Jun 11 15:08:29.218: INFO: Created: latency-svc-69xdp
Jun 11 15:08:29.231: INFO: Created: latency-svc-w4xl5
Jun 11 15:08:29.243: INFO: Created: latency-svc-9v5hs
Jun 11 15:08:29.256: INFO: Created: latency-svc-kwhz8
Jun 11 15:08:29.264: INFO: Got endpoints: latency-svc-69xdp [248.167608ms]
Jun 11 15:08:29.268: INFO: Created: latency-svc-zvr8h
Jun 11 15:08:29.283: INFO: Created: latency-svc-4qmx6
Jun 11 15:08:29.294: INFO: Created: latency-svc-d97bp
Jun 11 15:08:29.306: INFO: Created: latency-svc-8497t
Jun 11 15:08:29.317: INFO: Got endpoints: latency-svc-w4xl5 [286.440072ms]
Jun 11 15:08:29.323: INFO: Created: latency-svc-86f9b
Jun 11 15:08:29.335: INFO: Created: latency-svc-zk278
Jun 11 15:08:29.347: INFO: Created: latency-svc-cjq86
Jun 11 15:08:29.361: INFO: Created: latency-svc-4q7jd
Jun 11 15:08:29.366: INFO: Got endpoints: latency-svc-9v5hs [321.811243ms]
Jun 11 15:08:29.375: INFO: Created: latency-svc-x66lz
Jun 11 15:08:29.387: INFO: Created: latency-svc-msdwq
Jun 11 15:08:29.398: INFO: Created: latency-svc-29wml
Jun 11 15:08:29.410: INFO: Created: latency-svc-c72pm
Jun 11 15:08:29.416: INFO: Got endpoints: latency-svc-kwhz8 [358.519618ms]
Jun 11 15:08:29.425: INFO: Created: latency-svc-xq9h6
Jun 11 15:08:29.438: INFO: Created: latency-svc-stx94
Jun 11 15:08:29.449: INFO: Created: latency-svc-qcrr6
Jun 11 15:08:29.465: INFO: Got endpoints: latency-svc-zvr8h [394.927433ms]
Jun 11 15:08:29.487: INFO: Created: latency-svc-xjndc
Jun 11 15:08:29.515: INFO: Got endpoints: latency-svc-4qmx6 [433.913015ms]
Jun 11 15:08:29.538: INFO: Created: latency-svc-pbbnw
Jun 11 15:08:29.565: INFO: Got endpoints: latency-svc-d97bp [466.104254ms]
Jun 11 15:08:29.584: INFO: Created: latency-svc-5ddxz
Jun 11 15:08:29.616: INFO: Got endpoints: latency-svc-8497t [504.057228ms]
Jun 11 15:08:29.638: INFO: Created: latency-svc-8x87j
Jun 11 15:08:29.665: INFO: Got endpoints: latency-svc-86f9b [539.216978ms]
Jun 11 15:08:29.686: INFO: Created: latency-svc-q46n7
Jun 11 15:08:29.715: INFO: Got endpoints: latency-svc-zk278 [574.921591ms]
Jun 11 15:08:29.734: INFO: Created: latency-svc-g5pv4
Jun 11 15:08:29.765: INFO: Got endpoints: latency-svc-cjq86 [612.101729ms]
Jun 11 15:08:29.785: INFO: Created: latency-svc-rb9mn
Jun 11 15:08:29.814: INFO: Got endpoints: latency-svc-4q7jd [647.716545ms]
Jun 11 15:08:29.836: INFO: Created: latency-svc-pqfnq
Jun 11 15:08:29.865: INFO: Got endpoints: latency-svc-x66lz [682.550132ms]
Jun 11 15:08:29.890: INFO: Created: latency-svc-x24h9
Jun 11 15:08:29.915: INFO: Got endpoints: latency-svc-msdwq [718.779639ms]
Jun 11 15:08:29.937: INFO: Created: latency-svc-m8vrw
Jun 11 15:08:29.965: INFO: Got endpoints: latency-svc-29wml [750.309851ms]
Jun 11 15:08:29.985: INFO: Created: latency-svc-78s29
Jun 11 15:08:30.015: INFO: Got endpoints: latency-svc-c72pm [750.886192ms]
Jun 11 15:08:30.037: INFO: Created: latency-svc-76b9c
Jun 11 15:08:30.065: INFO: Got endpoints: latency-svc-xq9h6 [747.864384ms]
Jun 11 15:08:30.086: INFO: Created: latency-svc-fpbrv
Jun 11 15:08:30.115: INFO: Got endpoints: latency-svc-stx94 [749.216159ms]
Jun 11 15:08:30.135: INFO: Created: latency-svc-r22sv
Jun 11 15:08:30.166: INFO: Got endpoints: latency-svc-qcrr6 [749.411079ms]
Jun 11 15:08:30.187: INFO: Created: latency-svc-mqkkf
Jun 11 15:08:30.215: INFO: Got endpoints: latency-svc-xjndc [749.76849ms]
Jun 11 15:08:30.237: INFO: Created: latency-svc-fr2gx
Jun 11 15:08:30.265: INFO: Got endpoints: latency-svc-pbbnw [749.728795ms]
Jun 11 15:08:30.285: INFO: Created: latency-svc-rvntw
Jun 11 15:08:30.315: INFO: Got endpoints: latency-svc-5ddxz [750.277375ms]
Jun 11 15:08:30.347: INFO: Created: latency-svc-pjz6j
Jun 11 15:08:30.365: INFO: Got endpoints: latency-svc-8x87j [748.16257ms]
Jun 11 15:08:30.385: INFO: Created: latency-svc-wsqdh