zhangguanzhang's Blog

机器重启后 kube-apiserver 无法启动,etcd刷(error "EOF", ServerName "")

字数统计: 56.8k阅读时长: 353 min
2021/07/06

环境信息

三个 master (etcd 也在 master 上,master上也有 kubelet)和 n 个 node。master 上组件(kube-controller-manager,kube-scheduler,kubelet)的 apiserver 的ip 都是 127.0.0.1:6443。kube-apiserver的 etcd 地址写了三个 etcd 的。k8s 版本为 v1.15.5

故障现象

93 这台 master 机器重启后,发现 93 节点 NotReady,上去看了下 kubelet 无法连上本机的 kube-apiserver。kube-apiserver 运行个十几秒后才退出,etcd 一直刷如下日志:

1
2
3
4
5
etcd: rejected connection from "10.129.173.93:47566" (error "EOF", "ServerName "")
etcd: rejected connection from "10.129.173.93:47614" (error "EOF", "ServerName "")
etcd: rejected connection from "10.129.173.93:47714" (error "EOF", "ServerName "")
etcd: rejected connection from "10.129.173.93:47874" (error "EOF", "ServerName "")
etcd: rejected connection from "10.129.173.93:47948" (error "EOF", "ServerName "")

处理过程

etcd的错误

这个 EOF 是 etcd 的客户端没正常关闭造成的,etcd 之间也会互相连,先查看下 etcd 状态,因为 k8s 版本是 v1.15.5。默认使用的 etcd v3 api。etcd 的--listen-client-urls里我们包含了一个http://127.0.0.1:2379。所以下面命令不需要带--endpoints=xxxx

1
2
3
4
5
$ export ETCDCTL_API=3
$ etcdctl member list
172cf33e1b47c1c8, started, etcd2, https://10.129.173.93:2380, https://10.129.173.93:2379
35f3e39e5dd3195e, started, etcd3, https://10.129.173.94:2380, https://10.129.173.94:2379
47a96a577fe753d1, started, etcd1, https://10.129.173.92:2380, https://10.129.173.92:2379

看下 dbSize,推荐使用 --write-out=table 看,会自动换算人性化的 size。如果需要压缩的 revision 推荐使用-w=json 来获取

1
$ etcdctl endpoint status -w=table

看了下没达到默认的 2G,如果满了需要压缩执行下面的命令。每台的 revision 不同,每台都要执行下面的。

1
2
3
4
5
6
# 压缩旧版本
etcdctl compact $revision
# 清理碎片
etcdctl defrag
# 忽略告警
etcdctl alarm disarm

确认 etcd 没有问题,然后其他两个机器的 kube-apiserver 都正常,说明触发 EOF 的是 93 这台上面的 kube-apiserver。停止它后手动前台下。

kube-apiserver

1
2
$ systemctl stop kube-apiserver
$ systemctl cat kube-apiserver

然后终端上用ExecStart的部分,把--v=2改成--v=5启动,下面是输出。全部放出来,方便其他遇到的人搜到这篇文章。太长了,我就先放到最后吧。

启动后 34 秒后刷了一堆Get https://localhost:6443/apis/xxxxxxx: dial tcp 127.0.0.1:6443: i/o timeout 就退出了。参照之前的文章查了下进程,确认没有安全软件安全狗。

除去 panic 和明确的 error 和 flag 相关的报错,k8s 相关的二进制无法启动基本是和 ipv6 有关系。查看下 ipv6 情况

1
2
3
$ sysctl -a |& grep -E '(all|default)\.disable_ipv6'
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1

无论是显示的关还是开,反转下这俩参数,然后再试试发现启动后不会退出了

1
2
sysctl -w net.ipv6.conf.all.disable_ipv6=0
sysctl -w net.ipv6.conf.default.disable_ipv6=0

然后参数固化下:

1
2
3
4
cat >> /etc/sysctl.conf <<EOF
net.ipv6.conf.all.disable_ipv6 = 0
net.ipv6.conf.default.disable_ipv6 = 0
EOF

启动异常时候的日志

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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
Flag --admission-control has been deprecated, Use --enable-admission-plugins or --disable-admission-plugins instead. Will be removed in a future version.
Flag --insecure-port has been deprecated, This flag will be removed in a future version.
Flag --insecure-bind-address has been deprecated, This flag will be removed in a future version.
Flag --enable-swagger-ui has been deprecated, swagger 1.2 support has been removed
I0705 22:38:00.836860 18145 flags.go:33] FLAG: --address="127.0.0.1"
I0705 22:38:00.836914 18145 flags.go:33] FLAG: --admission-control="[NamespaceLifecycle,LimitRanger,ServiceAccount,DefaultStorageClass,ResourceQuota,NodeRestriction]"
I0705 22:38:00.836926 18145 flags.go:33] FLAG: --admission-control-config-file=""
I0705 22:38:00.836932 18145 flags.go:33] FLAG: --advertise-address="<nil>"
I0705 22:38:00.836936 18145 flags.go:33] FLAG: --allow-privileged="true"
I0705 22:38:00.836942 18145 flags.go:33] FLAG: --alsologtostderr="false"
I0705 22:38:00.836948 18145 flags.go:33] FLAG: --anonymous-auth="false"
I0705 22:38:00.836952 18145 flags.go:33] FLAG: --api-audiences="[]"
I0705 22:38:00.836959 18145 flags.go:33] FLAG: --apiserver-count="1"
I0705 22:38:00.836965 18145 flags.go:33] FLAG: --audit-dynamic-configuration="false"
I0705 22:38:00.836969 18145 flags.go:33] FLAG: --audit-log-batch-buffer-size="10000"
I0705 22:38:00.836973 18145 flags.go:33] FLAG: --audit-log-batch-max-size="1"
I0705 22:38:00.836977 18145 flags.go:33] FLAG: --audit-log-batch-max-wait="0s"
I0705 22:38:00.836982 18145 flags.go:33] FLAG: --audit-log-batch-throttle-burst="0"
I0705 22:38:00.836986 18145 flags.go:33] FLAG: --audit-log-batch-throttle-enable="false"
I0705 22:38:00.836990 18145 flags.go:33] FLAG: --audit-log-batch-throttle-qps="0"
I0705 22:38:00.836995 18145 flags.go:33] FLAG: --audit-log-format="json"
I0705 22:38:00.837000 18145 flags.go:33] FLAG: --audit-log-maxage="0"
I0705 22:38:00.837004 18145 flags.go:33] FLAG: --audit-log-maxbackup="0"
I0705 22:38:00.837008 18145 flags.go:33] FLAG: --audit-log-maxsize="0"
I0705 22:38:00.837011 18145 flags.go:33] FLAG: --audit-log-mode="blocking"
I0705 22:38:00.837015 18145 flags.go:33] FLAG: --audit-log-path=""
I0705 22:38:00.837019 18145 flags.go:33] FLAG: --audit-log-truncate-enabled="false"
I0705 22:38:00.837023 18145 flags.go:33] FLAG: --audit-log-truncate-max-batch-size="10485760"
I0705 22:38:00.837029 18145 flags.go:33] FLAG: --audit-log-truncate-max-event-size="102400"
I0705 22:38:00.837034 18145 flags.go:33] FLAG: --audit-log-version="audit.k8s.io/v1"
I0705 22:38:00.837038 18145 flags.go:33] FLAG: --audit-policy-file=""
I0705 22:38:00.837042 18145 flags.go:33] FLAG: --audit-webhook-batch-buffer-size="10000"
I0705 22:38:00.837046 18145 flags.go:33] FLAG: --audit-webhook-batch-initial-backoff="10s"
I0705 22:38:00.837051 18145 flags.go:33] FLAG: --audit-webhook-batch-max-size="400"
I0705 22:38:00.837055 18145 flags.go:33] FLAG: --audit-webhook-batch-max-wait="30s"
I0705 22:38:00.837060 18145 flags.go:33] FLAG: --audit-webhook-batch-throttle-burst="15"
I0705 22:38:00.837064 18145 flags.go:33] FLAG: --audit-webhook-batch-throttle-enable="true"
I0705 22:38:00.837068 18145 flags.go:33] FLAG: --audit-webhook-batch-throttle-qps="10"
I0705 22:38:00.837073 18145 flags.go:33] FLAG: --audit-webhook-config-file=""
I0705 22:38:00.837076 18145 flags.go:33] FLAG: --audit-webhook-initial-backoff="10s"
I0705 22:38:00.837080 18145 flags.go:33] FLAG: --audit-webhook-mode="batch"
I0705 22:38:00.837086 18145 flags.go:33] FLAG: --audit-webhook-truncate-enabled="false"
I0705 22:38:00.837090 18145 flags.go:33] FLAG: --audit-webhook-truncate-max-batch-size="10485760"
I0705 22:38:00.837094 18145 flags.go:33] FLAG: --audit-webhook-truncate-max-event-size="102400"
I0705 22:38:00.837098 18145 flags.go:33] FLAG: --audit-webhook-version="audit.k8s.io/v1"
I0705 22:38:00.837103 18145 flags.go:33] FLAG: --authentication-token-webhook-cache-ttl="2m0s"
I0705 22:38:00.837107 18145 flags.go:33] FLAG: --authentication-token-webhook-config-file=""
I0705 22:38:00.837119 18145 flags.go:33] FLAG: --authorization-mode="[Node,RBAC]"
I0705 22:38:00.837125 18145 flags.go:33] FLAG: --authorization-policy-file=""
I0705 22:38:00.837128 18145 flags.go:33] FLAG: --authorization-webhook-cache-authorized-ttl="5m0s"
I0705 22:38:00.837132 18145 flags.go:33] FLAG: --authorization-webhook-cache-unauthorized-ttl="30s"
I0705 22:38:00.837136 18145 flags.go:33] FLAG: --authorization-webhook-config-file=""
I0705 22:38:00.837140 18145 flags.go:33] FLAG: --basic-auth-file="/etc/kubernetes/cluster1/ssl/basic-auth.csv"
I0705 22:38:00.837145 18145 flags.go:33] FLAG: --bind-address="0.0.0.0"
I0705 22:38:00.837149 18145 flags.go:33] FLAG: --cert-dir="/var/run/kubernetes"
I0705 22:38:00.837153 18145 flags.go:33] FLAG: --client-ca-file="/etc/kubernetes/cluster1/ssl/ca.pem"
I0705 22:38:00.837158 18145 flags.go:33] FLAG: --cloud-config=""
I0705 22:38:00.837162 18145 flags.go:33] FLAG: --cloud-provider=""
I0705 22:38:00.837165 18145 flags.go:33] FLAG: --cloud-provider-gce-lb-src-cidrs="130.211.0.0/22,209.85.152.0/22,209.85.204.0/22,35.191.0.0/16"
I0705 22:38:00.837172 18145 flags.go:33] FLAG: --contention-profiling="false"
I0705 22:38:00.837176 18145 flags.go:33] FLAG: --cors-allowed-origins="[]"
I0705 22:38:00.837182 18145 flags.go:33] FLAG: --default-not-ready-toleration-seconds="300"
I0705 22:38:00.837186 18145 flags.go:33] FLAG: --default-unreachable-toleration-seconds="300"
I0705 22:38:00.837190 18145 flags.go:33] FLAG: --default-watch-cache-size="100"
I0705 22:38:00.837194 18145 flags.go:33] FLAG: --delete-collection-workers="1"
I0705 22:38:00.837198 18145 flags.go:33] FLAG: --deserialization-cache-size="0"
I0705 22:38:00.837202 18145 flags.go:33] FLAG: --disable-admission-plugins="[]"
I0705 22:38:00.837206 18145 flags.go:33] FLAG: --enable-admission-plugins="[]"
I0705 22:38:00.837213 18145 flags.go:33] FLAG: --enable-aggregator-routing="true"
I0705 22:38:00.837217 18145 flags.go:33] FLAG: --enable-bootstrap-token-auth="false"
I0705 22:38:00.837221 18145 flags.go:33] FLAG: --enable-garbage-collector="true"
I0705 22:38:00.837225 18145 flags.go:33] FLAG: --enable-inflight-quota-handler="false"
I0705 22:38:00.837228 18145 flags.go:33] FLAG: --enable-logs-handler="true"
I0705 22:38:00.837232 18145 flags.go:33] FLAG: --enable-swagger-ui="true"
I0705 22:38:00.837236 18145 flags.go:33] FLAG: --encryption-provider-config=""
I0705 22:38:00.837240 18145 flags.go:33] FLAG: --endpoint-reconciler-type="lease"
I0705 22:38:00.837244 18145 flags.go:33] FLAG: --etcd-cafile="/etc/kubernetes/cluster1/ssl/ca.pem"
I0705 22:38:00.837248 18145 flags.go:33] FLAG: --etcd-certfile="/etc/kubernetes/cluster1/ssl/kubernetes.pem"
I0705 22:38:00.837253 18145 flags.go:33] FLAG: --etcd-compaction-interval="5m0s"
I0705 22:38:00.837257 18145 flags.go:33] FLAG: --etcd-count-metric-poll-period="1m0s"
I0705 22:38:00.837261 18145 flags.go:33] FLAG: --etcd-keyfile="/etc/kubernetes/cluster1/ssl/kubernetes-key.pem"
I0705 22:38:00.837265 18145 flags.go:33] FLAG: --etcd-prefix="/registry"
I0705 22:38:00.837269 18145 flags.go:33] FLAG: --etcd-servers="[https://10.129.173.92:2379,https://10.129.173.93:2379,https://10.129.173.94:2379]"
I0705 22:38:00.837277 18145 flags.go:33] FLAG: --etcd-servers-overrides="[]"
I0705 22:38:00.837283 18145 flags.go:33] FLAG: --event-ttl="1h0m0s"
I0705 22:38:00.837287 18145 flags.go:33] FLAG: --experimental-encryption-provider-config=""
I0705 22:38:00.837291 18145 flags.go:33] FLAG: --external-hostname=""
I0705 22:38:00.837296 18145 flags.go:33] FLAG: --feature-gates=""
I0705 22:38:00.837303 18145 flags.go:33] FLAG: --help="false"
I0705 22:38:00.837307 18145 flags.go:33] FLAG: --http2-max-streams-per-connection="0"
I0705 22:38:00.837311 18145 flags.go:33] FLAG: --insecure-bind-address="127.0.0.1"
I0705 22:38:00.837315 18145 flags.go:33] FLAG: --insecure-port="8073"
I0705 22:38:00.837319 18145 flags.go:33] FLAG: --kubelet-certificate-authority=""
I0705 22:38:00.837323 18145 flags.go:33] FLAG: --kubelet-client-certificate="/etc/kubernetes/cluster1/ssl/kubernetes.pem"
I0705 22:38:00.837331 18145 flags.go:33] FLAG: --kubelet-client-key="/etc/kubernetes/cluster1/ssl/kubernetes-key.pem"
I0705 22:38:00.837336 18145 flags.go:33] FLAG: --kubelet-https="true"
I0705 22:38:00.837340 18145 flags.go:33] FLAG: --kubelet-port="10250"
I0705 22:38:00.837346 18145 flags.go:33] FLAG: --kubelet-preferred-address-types="[Hostname,InternalDNS,InternalIP,ExternalDNS,ExternalIP]"
I0705 22:38:00.837352 18145 flags.go:33] FLAG: --kubelet-read-only-port="10255"
I0705 22:38:00.837356 18145 flags.go:33] FLAG: --kubelet-timeout="5s"
I0705 22:38:00.837360 18145 flags.go:33] FLAG: --kubernetes-service-node-port="0"
I0705 22:38:00.837364 18145 flags.go:33] FLAG: --log-backtrace-at=":0"
I0705 22:38:00.837370 18145 flags.go:33] FLAG: --log-dir=""
I0705 22:38:00.837375 18145 flags.go:33] FLAG: --log-file=""
I0705 22:38:00.837379 18145 flags.go:33] FLAG: --log-file-max-size="1800"
I0705 22:38:00.837383 18145 flags.go:33] FLAG: --log-flush-frequency="5s"
I0705 22:38:00.837387 18145 flags.go:33] FLAG: --logtostderr="true"
I0705 22:38:00.837391 18145 flags.go:33] FLAG: --master-service-namespace="default"
I0705 22:38:00.837395 18145 flags.go:33] FLAG: --max-connection-bytes-per-sec="0"
I0705 22:38:00.837399 18145 flags.go:33] FLAG: --max-mutating-requests-inflight="200"
I0705 22:38:00.837403 18145 flags.go:33] FLAG: --max-requests-inflight="400"
I0705 22:38:00.837407 18145 flags.go:33] FLAG: --min-request-timeout="1800"
I0705 22:38:00.837411 18145 flags.go:33] FLAG: --oidc-ca-file=""
I0705 22:38:00.837415 18145 flags.go:33] FLAG: --oidc-client-id=""
I0705 22:38:00.837419 18145 flags.go:33] FLAG: --oidc-groups-claim=""
I0705 22:38:00.837422 18145 flags.go:33] FLAG: --oidc-groups-prefix=""
I0705 22:38:00.837426 18145 flags.go:33] FLAG: --oidc-issuer-url=""
I0705 22:38:00.837430 18145 flags.go:33] FLAG: --oidc-required-claim=""
I0705 22:38:00.837436 18145 flags.go:33] FLAG: --oidc-signing-algs="[RS256]"
I0705 22:38:00.837443 18145 flags.go:33] FLAG: --oidc-username-claim="sub"
I0705 22:38:00.837446 18145 flags.go:33] FLAG: --oidc-username-prefix=""
I0705 22:38:00.837450 18145 flags.go:33] FLAG: --port="8073"
I0705 22:38:00.837454 18145 flags.go:33] FLAG: --profiling="true"
I0705 22:38:00.837458 18145 flags.go:33] FLAG: --proxy-client-cert-file="/etc/kubernetes/cluster1/ssl/aggregator-proxy.pem"
I0705 22:38:00.837463 18145 flags.go:33] FLAG: --proxy-client-key-file="/etc/kubernetes/cluster1/ssl/aggregator-proxy-key.pem"
I0705 22:38:00.837468 18145 flags.go:33] FLAG: --request-timeout="1m0s"
I0705 22:38:00.837472 18145 flags.go:33] FLAG: --requestheader-allowed-names="[]"
I0705 22:38:00.837476 18145 flags.go:33] FLAG: --requestheader-client-ca-file="/etc/kubernetes/cluster1/ssl/ca.pem"
I0705 22:38:00.837480 18145 flags.go:33] FLAG: --requestheader-extra-headers-prefix="[X-Remote-Extra-]"
I0705 22:38:00.837487 18145 flags.go:33] FLAG: --requestheader-group-headers="[X-Remote-Group]"
I0705 22:38:00.837492 18145 flags.go:33] FLAG: --requestheader-username-headers="[X-Remote-User]"
I0705 22:38:00.837498 18145 flags.go:33] FLAG: --runtime-config=""
I0705 22:38:00.837505 18145 flags.go:33] FLAG: --secure-port="6443"
I0705 22:38:00.837510 18145 flags.go:33] FLAG: --service-account-api-audiences="[]"
I0705 22:38:00.837515 18145 flags.go:33] FLAG: --service-account-issuer=""
I0705 22:38:00.837518 18145 flags.go:33] FLAG: --service-account-key-file="[/etc/kubernetes/cluster1/ssl/ca-key.pem]"
I0705 22:38:00.837526 18145 flags.go:33] FLAG: --service-account-lookup="true"
I0705 22:38:00.837530 18145 flags.go:33] FLAG: --service-account-max-token-expiration="0s"
I0705 22:38:00.837534 18145 flags.go:33] FLAG: --service-account-signing-key-file=""
I0705 22:38:00.837538 18145 flags.go:33] FLAG: --service-cluster-ip-range="172.26.0.0/16"
I0705 22:38:00.837544 18145 flags.go:33] FLAG: --service-node-port-range="20000-40000"
I0705 22:38:00.837558 18145 flags.go:33] FLAG: --skip-headers="false"
I0705 22:38:00.837566 18145 flags.go:33] FLAG: --skip-log-headers="false"
I0705 22:38:00.837570 18145 flags.go:33] FLAG: --ssh-keyfile=""
I0705 22:38:00.837574 18145 flags.go:33] FLAG: --ssh-user=""
I0705 22:38:00.837578 18145 flags.go:33] FLAG: --stderrthreshold="2"
I0705 22:38:00.837582 18145 flags.go:33] FLAG: --storage-backend=""
I0705 22:38:00.837585 18145 flags.go:33] FLAG: --storage-media-type="application/vnd.kubernetes.protobuf"
I0705 22:38:00.837589 18145 flags.go:33] FLAG: --target-ram-mb="0"
I0705 22:38:00.837607 18145 flags.go:33] FLAG: --tls-cert-file="/etc/kubernetes/cluster1/ssl/kubernetes.pem"
I0705 22:38:00.837613 18145 flags.go:33] FLAG: --tls-cipher-suites="[]"
I0705 22:38:00.837617 18145 flags.go:33] FLAG: --tls-min-version=""
I0705 22:38:00.837621 18145 flags.go:33] FLAG: --tls-private-key-file="/etc/kubernetes/cluster1/ssl/kubernetes-key.pem"
I0705 22:38:00.837626 18145 flags.go:33] FLAG: --tls-sni-cert-key="[]"
I0705 22:38:00.837631 18145 flags.go:33] FLAG: --token-auth-file=""
I0705 22:38:00.837635 18145 flags.go:33] FLAG: --v="5"
I0705 22:38:00.837639 18145 flags.go:33] FLAG: --version="false"
I0705 22:38:00.837645 18145 flags.go:33] FLAG: --vmodule=""
I0705 22:38:00.837652 18145 flags.go:33] FLAG: --watch-cache="true"
I0705 22:38:00.837656 18145 flags.go:33] FLAG: --watch-cache-sizes="[]"
I0705 22:38:00.837838 18145 interface.go:384] Looking for default routes with IPv4 addresses
I0705 22:38:00.837845 18145 interface.go:389] Default route transits interface "eth0"
I0705 22:38:00.838072 18145 interface.go:196] Interface eth0 is up
I0705 22:38:00.838128 18145 interface.go:244] Interface "eth0" has 1 addresses :[10.129.173.93/22].
I0705 22:38:00.838147 18145 interface.go:211] Checking addr 10.129.173.93/22.
I0705 22:38:00.838154 18145 interface.go:218] IP found 10.129.173.93
I0705 22:38:00.838161 18145 interface.go:250] Found valid IPv4 address 10.129.173.93 for interface "eth0".
I0705 22:38:00.838167 18145 interface.go:395] Found active IP 10.129.173.93
I0705 22:38:00.838183 18145 services.go:45] Setting service IP to "172.26.0.1" (read-write).
I0705 22:38:00.838191 18145 server.go:560] external host was not specified, using 10.129.173.93
I0705 22:38:00.838200 18145 server.go:603] Initializing cache sizes based on 0MB limit
I0705 22:38:00.838462 18145 server.go:147] Version: v1.15.5
I0705 22:38:01.255999 18145 plugins.go:158] Loaded 5 mutating admission controller(s) successfully in the following order: NamespaceLifecycle,LimitRanger,ServiceAccount,NodeRestriction,DefaultStorageClass.
I0705 22:38:01.256040 18145 plugins.go:161] Loaded 3 validating admission controller(s) successfully in the following order: LimitRanger,ServiceAccount,ResourceQuota.
I0705 22:38:01.256057 18145 services.go:45] Setting service IP to "172.26.0.1" (read-write).
E0705 22:38:01.256668 18145 prometheus.go:55] failed to register depth metric admission_quota_controller: duplicate metrics collector registration attempted
E0705 22:38:01.256708 18145 prometheus.go:68] failed to register adds metric admission_quota_controller: duplicate metrics collector registration attempted
E0705 22:38:01.256750 18145 prometheus.go:82] failed to register latency metric admission_quota_controller: duplicate metrics collector registration attempted
E0705 22:38:01.256782 18145 prometheus.go:96] failed to register workDuration metric admission_quota_controller: duplicate metrics collector registration attempted
E0705 22:38:01.256822 18145 prometheus.go:112] failed to register unfinished metric admission_quota_controller: duplicate metrics collector registration attempted
E0705 22:38:01.256858 18145 prometheus.go:126] failed to register unfinished metric admission_quota_controller: duplicate metrics collector registration attempted
E0705 22:38:01.256876 18145 prometheus.go:152] failed to register depth metric admission_quota_controller: duplicate metrics collector registration attempted
E0705 22:38:01.256902 18145 prometheus.go:164] failed to register adds metric admission_quota_controller: duplicate metrics collector registration attempted
E0705 22:38:01.256976 18145 prometheus.go:176] failed to register latency metric admission_quota_controller: duplicate metrics collector registration attempted
E0705 22:38:01.257022 18145 prometheus.go:188] failed to register work_duration metric admission_quota_controller: duplicate metrics collector registration attempted
E0705 22:38:01.257057 18145 prometheus.go:203] failed to register unfinished_work_seconds metric admission_quota_controller: duplicate metrics collector registration attempted
E0705 22:38:01.257086 18145 prometheus.go:216] failed to register longest_running_processor_microseconds metric admission_quota_controller: duplicate metrics collector registration attempted
I0705 22:38:01.257111 18145 plugins.go:158] Loaded 5 mutating admission controller(s) successfully in the following order: NamespaceLifecycle,LimitRanger,ServiceAccount,NodeRestriction,DefaultStorageClass.
I0705 22:38:01.257119 18145 plugins.go:161] Loaded 3 validating admission controller(s) successfully in the following order: LimitRanger,ServiceAccount,ResourceQuota.
I0705 22:38:01.260013 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.260032 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.260104 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.260268 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.266868 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.92:2379"
I0705 22:38:01.266952 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>}]
I0705 22:38:01.267066 18145 controlbuf.go:382] transport: loopyWriter.run returning. connection error: desc = "transport is closing"
I0705 22:38:01.267074 18145 balancer_conn_wrappers.go:131] clientv3/balancer: "10.129.173.94:2379" is up but not pinned (already pinned "10.129.173.92:2379")
W0705 22:38:01.267176 18145 asm_amd64.s:1337] Failed to dial 10.129.173.93:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.267294 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.267308 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.267337 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.267425 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.273677 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.273740 18145 storage_factory.go:50] Storage caching is enabled for *apiextensions.CustomResourceDefinition with capacity 100
I0705 22:38:01.273759 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
W0705 22:38:01.273837 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.273893 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.274465 18145 store.go:1343] Monitoring customresourcedefinitions.apiextensions.k8s.io count at <storage-prefix>//apiextensions.k8s.io/customresourcedefinitions
I0705 22:38:01.274588 18145 reflector.go:160] Listing and watching *apiextensions.CustomResourceDefinition from storage/cacher.go:/apiextensions.k8s.io/customresourcedefinitions
I0705 22:38:01.277287 18145 watch_cache.go:405] Replace watchCache (rev: 75099442)
I0705 22:38:01.297217 18145 services.go:45] Setting service IP to "172.26.0.1" (read-write).
I0705 22:38:01.297246 18145 master.go:233] Using reconciler: lease
I0705 22:38:01.297293 18145 storage_factory.go:285] storing apiServerIPInfo in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.297799 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.297812 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.297844 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.297883 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.304364 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.304410 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
W0705 22:38:01.304499 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.304538 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.305969 18145 storage_factory.go:285] storing podtemplates in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.306443 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.306455 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.306484 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.306515 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.312747 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.92:2379"
I0705 22:38:01.312802 18145 storage_factory.go:50] Storage caching is enabled for *core.PodTemplate with capacity 100
I0705 22:38:01.312802 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>}]
W0705 22:38:01.312893 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.312929 18145 store.go:1343] Monitoring podtemplates count at <storage-prefix>//podtemplates
W0705 22:38:01.312949 18145 asm_amd64.s:1337] Failed to dial 10.129.173.93:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.312969 18145 reflector.go:160] Listing and watching *core.PodTemplate from storage/cacher.go:/podtemplates
I0705 22:38:01.312962 18145 storage_factory.go:285] storing events in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.313529 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.313541 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.313570 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.313640 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.316212 18145 watch_cache.go:405] Replace watchCache (rev: 75099442)
I0705 22:38:01.319641 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.319682 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.319684 18145 storage_factory.go:46] Storage caching is disabled for *core.Event
W0705 22:38:01.319767 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.319773 18145 store.go:1343] Monitoring events count at <storage-prefix>//events
W0705 22:38:01.319806 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.319815 18145 storage_factory.go:285] storing limitranges in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.320331 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.320344 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.320372 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.320409 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.326178 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.326213 18145 storage_factory.go:50] Storage caching is enabled for *core.LimitRange with capacity 100
I0705 22:38:01.326227 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.326298 18145 store.go:1343] Monitoring limitranges count at <storage-prefix>//limitranges
I0705 22:38:01.326328 18145 storage_factory.go:285] storing resourcequotas in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
W0705 22:38:01.326344 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.326352 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.326365 18145 reflector.go:160] Listing and watching *core.LimitRange from storage/cacher.go:/limitranges
I0705 22:38:01.326789 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.326801 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.326827 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.327266 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.329416 18145 watch_cache.go:405] Replace watchCache (rev: 75099442)
I0705 22:38:01.333949 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.94:2379"
I0705 22:38:01.334002 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.94:2379 <nil>}]
I0705 22:38:01.334049 18145 storage_factory.go:50] Storage caching is enabled for *core.ResourceQuota with capacity 100
W0705 22:38:01.334117 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.334183 18145 store.go:1343] Monitoring resourcequotas count at <storage-prefix>//resourcequotas
I0705 22:38:01.334225 18145 controlbuf.go:382] transport: loopyWriter.run returning. connection error: desc = "transport is closing"
I0705 22:38:01.334240 18145 reflector.go:160] Listing and watching *core.ResourceQuota from storage/cacher.go:/resourcequotas
W0705 22:38:01.334251 18145 asm_amd64.s:1337] Failed to dial 10.129.173.93:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.334409 18145 storage_factory.go:285] storing secrets in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.334997 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.335011 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.335060 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.335107 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.336791 18145 watch_cache.go:405] Replace watchCache (rev: 75099442)
I0705 22:38:01.341685 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.341737 18145 storage_factory.go:50] Storage caching is enabled for *core.Secret with capacity 100
I0705 22:38:01.341753 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.341819 18145 store.go:1343] Monitoring secrets count at <storage-prefix>//secrets
W0705 22:38:01.341843 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.341854 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.341855 18145 reflector.go:160] Listing and watching *core.Secret from storage/cacher.go:/secrets
I0705 22:38:01.341953 18145 storage_factory.go:285] storing persistentvolumes in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.342468 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.342480 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.342535 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.342579 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.345126 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.348069 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.348110 18145 storage_factory.go:50] Storage caching is enabled for *core.PersistentVolume with capacity 100
I0705 22:38:01.348133 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.348190 18145 store.go:1343] Monitoring persistentvolumes count at <storage-prefix>//persistentvolumes
W0705 22:38:01.348228 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.348239 18145 reflector.go:160] Listing and watching *core.PersistentVolume from storage/cacher.go:/persistentvolumes
W0705 22:38:01.348248 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.348373 18145 storage_factory.go:285] storing persistentvolumeclaims in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.348916 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.348930 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.348986 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.349049 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.350015 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.355158 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.355202 18145 storage_factory.go:50] Storage caching is enabled for *core.PersistentVolumeClaim with capacity 100
I0705 22:38:01.355203 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.355297 18145 store.go:1343] Monitoring persistentvolumeclaims count at <storage-prefix>//persistentvolumeclaims
I0705 22:38:01.355343 18145 reflector.go:160] Listing and watching *core.PersistentVolumeClaim from storage/cacher.go:/persistentvolumeclaims
W0705 22:38:01.355357 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.355377 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.355467 18145 controlbuf.go:382] transport: loopyWriter.run returning. connection error: desc = "transport is closing"
I0705 22:38:01.355442 18145 storage_factory.go:285] storing configmaps in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.355993 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.356010 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.356046 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.356101 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.360455 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.361771 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.361808 18145 storage_factory.go:50] Storage caching is enabled for *core.ConfigMap with capacity 100
I0705 22:38:01.361847 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.361872 18145 store.go:1343] Monitoring configmaps count at <storage-prefix>//configmaps
W0705 22:38:01.361918 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.361923 18145 reflector.go:160] Listing and watching *core.ConfigMap from storage/cacher.go:/configmaps
W0705 22:38:01.361936 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.361979 18145 storage_factory.go:285] storing namespaces in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.362436 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.362448 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.362475 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.362509 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.368369 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.368402 18145 storage_factory.go:50] Storage caching is enabled for *core.Namespace with capacity 100
I0705 22:38:01.368406 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.368475 18145 store.go:1343] Monitoring namespaces count at <storage-prefix>//namespaces
W0705 22:38:01.368480 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.368527 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.368523 18145 reflector.go:160] Listing and watching *core.Namespace from storage/cacher.go:/namespaces
I0705 22:38:01.368640 18145 storage_factory.go:285] storing endpoints in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.369074 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.369088 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.369118 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.369152 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.376059 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.376127 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.376137 18145 storage_factory.go:50] Storage caching is enabled for *core.Endpoints with capacity 1000
W0705 22:38:01.376216 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.376219 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.376246 18145 store.go:1343] Monitoring endpoints count at <storage-prefix>//services/endpoints
I0705 22:38:01.376288 18145 reflector.go:160] Listing and watching *core.Endpoints from storage/cacher.go:/services/endpoints
I0705 22:38:01.376450 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.376450 18145 storage_factory.go:285] storing nodes in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.377222 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.377246 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.377295 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.377372 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.379460 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.382925 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.382961 18145 storage_factory.go:50] Storage caching is enabled for *core.Node with capacity 1000
I0705 22:38:01.382977 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.383040 18145 store.go:1343] Monitoring nodes count at <storage-prefix>//minions
W0705 22:38:01.383054 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.383063 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.383102 18145 reflector.go:160] Listing and watching *core.Node from storage/cacher.go:/minions
I0705 22:38:01.383436 18145 storage_factory.go:285] storing pods in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.383884 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.383896 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.383921 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.383955 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.386054 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.389904 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.389951 18145 storage_factory.go:50] Storage caching is enabled for *core.Pod with capacity 1000
I0705 22:38:01.389990 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.390047 18145 store.go:1343] Monitoring pods count at <storage-prefix>//pods
W0705 22:38:01.390100 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.390107 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.390140 18145 reflector.go:160] Listing and watching *core.Pod from storage/cacher.go:/pods
I0705 22:38:01.390180 18145 storage_factory.go:285] storing serviceaccounts in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.391245 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.391263 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.391310 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.391381 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.398242 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.94:2379"
I0705 22:38:01.398285 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.94:2379 <nil>}]
I0705 22:38:01.398297 18145 storage_factory.go:50] Storage caching is enabled for *core.ServiceAccount with capacity 100
W0705 22:38:01.398378 18145 asm_amd64.s:1337] Failed to dial 10.129.173.93:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.398395 18145 store.go:1343] Monitoring serviceaccounts count at <storage-prefix>//serviceaccounts
W0705 22:38:01.398413 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.398524 18145 reflector.go:160] Listing and watching *core.ServiceAccount from storage/cacher.go:/serviceaccounts
I0705 22:38:01.398559 18145 storage_factory.go:285] storing services in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.399760 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.399789 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.399832 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.399894 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.402304 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.406325 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.406360 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.406413 18145 storage_factory.go:50] Storage caching is enabled for *core.Service with capacity 1000
I0705 22:38:01.406421 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
W0705 22:38:01.406516 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.406546 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.406580 18145 store.go:1343] Monitoring services count at <storage-prefix>//services/specs
I0705 22:38:01.406645 18145 reflector.go:160] Listing and watching *core.Service from storage/cacher.go:/services/specs
I0705 22:38:01.406642 18145 storage_factory.go:285] storing services in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.407151 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.407163 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.407208 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.407260 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.412982 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.413048 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
W0705 22:38:01.413128 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.413155 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.413252 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.413526 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.413539 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.413567 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.413619 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.414368 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.419479 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.419514 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
W0705 22:38:01.419579 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.419647 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.419647 18145 storage_factory.go:285] storing replicationcontrollers in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.420108 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.420119 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.420144 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.420203 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.426157 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.426208 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.426217 18145 storage_factory.go:50] Storage caching is enabled for *core.ReplicationController with capacity 100
W0705 22:38:01.426293 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.426306 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.426312 18145 store.go:1343] Monitoring replicationcontrollers count at <storage-prefix>//controllers
I0705 22:38:01.426333 18145 reflector.go:160] Listing and watching *core.ReplicationController from storage/cacher.go:/controllers
I0705 22:38:01.428279 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.480260 18145 storage_factory.go:285] storing bindings in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.480424 18145 storage_factory.go:285] storing componentstatuses in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.480904 18145 storage_factory.go:285] storing configmaps in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.481312 18145 storage_factory.go:285] storing endpoints in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.481698 18145 storage_factory.go:285] storing events in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.482104 18145 storage_factory.go:285] storing limitranges in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.482346 18145 storage_factory.go:285] storing namespaces in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.482426 18145 storage_factory.go:285] storing namespaces in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.482543 18145 storage_factory.go:285] storing namespaces in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.482825 18145 storage_factory.go:285] storing nodes in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.483147 18145 storage_factory.go:285] storing nodes in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.483255 18145 storage_factory.go:285] storing nodes in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.483733 18145 storage_factory.go:285] storing persistentvolumeclaims in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.483904 18145 storage_factory.go:285] storing persistentvolumeclaims in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.484203 18145 storage_factory.go:285] storing persistentvolumes in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.484330 18145 storage_factory.go:285] storing persistentvolumes in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.484703 18145 storage_factory.go:285] storing pods in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.484828 18145 storage_factory.go:285] storing pods in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.484905 18145 storage_factory.go:285] storing pods in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.484984 18145 storage_factory.go:285] storing pods in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.485119 18145 storage_factory.go:285] storing pods in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.485212 18145 storage_factory.go:285] storing pods in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.485326 18145 storage_factory.go:285] storing pods in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.485764 18145 storage_factory.go:285] storing pods in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.485937 18145 storage_factory.go:285] storing pods in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.486385 18145 storage_factory.go:285] storing podtemplates in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.486832 18145 storage_factory.go:285] storing replicationcontrollers in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.486982 18145 storage_factory.go:285] storing replicationcontrollers in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.487134 18145 storage_factory.go:285] storing replicationcontrollers in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.487533 18145 storage_factory.go:285] storing resourcequotas in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.487697 18145 storage_factory.go:285] storing resourcequotas in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.488101 18145 storage_factory.go:285] storing secrets in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.488494 18145 storage_factory.go:285] storing serviceaccounts in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.488886 18145 storage_factory.go:285] storing services in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.489313 18145 storage_factory.go:285] storing services in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.489466 18145 storage_factory.go:285] storing services in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.489537 18145 master.go:417] Skipping disabled API group "auditregistration.k8s.io".
I0705 22:38:01.489550 18145 master.go:425] Enabling API group "authentication.k8s.io".
I0705 22:38:01.489562 18145 master.go:425] Enabling API group "authorization.k8s.io".
I0705 22:38:01.489679 18145 storage_factory.go:285] storing horizontalpodautoscalers.autoscaling in autoscaling/v1, reading as autoscaling/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.490153 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.490164 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.490200 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.490237 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.496374 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.496423 18145 storage_factory.go:50] Storage caching is enabled for *autoscaling.HorizontalPodAutoscaler with capacity 100
I0705 22:38:01.496450 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.496501 18145 store.go:1343] Monitoring horizontalpodautoscalers.autoscaling count at <storage-prefix>//horizontalpodautoscalers
W0705 22:38:01.496531 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.496536 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.496589 18145 reflector.go:160] Listing and watching *autoscaling.HorizontalPodAutoscaler from storage/cacher.go:/horizontalpodautoscalers
I0705 22:38:01.496664 18145 storage_factory.go:285] storing horizontalpodautoscalers.autoscaling in autoscaling/v1, reading as autoscaling/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.497098 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.497109 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.497135 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.497176 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.500515 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.502989 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.503023 18145 storage_factory.go:50] Storage caching is enabled for *autoscaling.HorizontalPodAutoscaler with capacity 100
I0705 22:38:01.503047 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.503101 18145 store.go:1343] Monitoring horizontalpodautoscalers.autoscaling count at <storage-prefix>//horizontalpodautoscalers
W0705 22:38:01.503114 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.503161 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.503155 18145 reflector.go:160] Listing and watching *autoscaling.HorizontalPodAutoscaler from storage/cacher.go:/horizontalpodautoscalers
I0705 22:38:01.503245 18145 storage_factory.go:285] storing horizontalpodautoscalers.autoscaling in autoscaling/v1, reading as autoscaling/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.503665 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.503676 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.503702 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.503743 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.506520 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.509091 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.509124 18145 storage_factory.go:50] Storage caching is enabled for *autoscaling.HorizontalPodAutoscaler with capacity 100
I0705 22:38:01.509161 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.509195 18145 store.go:1343] Monitoring horizontalpodautoscalers.autoscaling count at <storage-prefix>//horizontalpodautoscalers
I0705 22:38:01.509211 18145 master.go:425] Enabling API group "autoscaling".
W0705 22:38:01.509223 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.509248 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.509265 18145 reflector.go:160] Listing and watching *autoscaling.HorizontalPodAutoscaler from storage/cacher.go:/horizontalpodautoscalers
I0705 22:38:01.509331 18145 storage_factory.go:285] storing jobs.batch in batch/v1, reading as batch/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.509807 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.509821 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.509848 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.509885 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.515303 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.515327 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.515362 18145 storage_factory.go:50] Storage caching is enabled for *batch.Job with capacity 100
W0705 22:38:01.515407 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.515414 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.515436 18145 store.go:1343] Monitoring jobs.batch count at <storage-prefix>//jobs
I0705 22:38:01.515472 18145 reflector.go:160] Listing and watching *batch.Job from storage/cacher.go:/jobs
I0705 22:38:01.515529 18145 storage_factory.go:285] storing cronjobs.batch in batch/v1beta1, reading as batch/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.516011 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.516023 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.516047 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.516080 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.516374 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.517439 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.522214 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.522244 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.522277 18145 storage_factory.go:50] Storage caching is enabled for *batch.CronJob with capacity 100
W0705 22:38:01.522297 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.522325 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.522347 18145 store.go:1343] Monitoring cronjobs.batch count at <storage-prefix>//cronjobs
I0705 22:38:01.522361 18145 master.go:425] Enabling API group "batch".
I0705 22:38:01.522409 18145 reflector.go:160] Listing and watching *batch.CronJob from storage/cacher.go:/cronjobs
I0705 22:38:01.522456 18145 storage_factory.go:285] storing certificatesigningrequests.certificates.k8s.io in certificates.k8s.io/v1beta1, reading as certificates.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.522889 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.522901 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.522926 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.522959 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.525358 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.529067 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.529096 18145 storage_factory.go:50] Storage caching is enabled for *certificates.CertificateSigningRequest with capacity 100
I0705 22:38:01.529108 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
W0705 22:38:01.529164 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.529169 18145 store.go:1343] Monitoring certificatesigningrequests.certificates.k8s.io count at <storage-prefix>//certificatesigningrequests
W0705 22:38:01.529172 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.529187 18145 master.go:425] Enabling API group "certificates.k8s.io".
I0705 22:38:01.529202 18145 reflector.go:160] Listing and watching *certificates.CertificateSigningRequest from storage/cacher.go:/certificatesigningrequests
I0705 22:38:01.529330 18145 storage_factory.go:285] storing leases.coordination.k8s.io in coordination.k8s.io/v1beta1, reading as coordination.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.529757 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.529769 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.529799 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.529831 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.535795 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.92:2379"
I0705 22:38:01.535826 18145 storage_factory.go:50] Storage caching is enabled for *coordination.Lease with capacity 100
I0705 22:38:01.535851 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>}]
I0705 22:38:01.535884 18145 store.go:1343] Monitoring leases.coordination.k8s.io count at <storage-prefix>//leases
W0705 22:38:01.535922 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.535951 18145 reflector.go:160] Listing and watching *coordination.Lease from storage/cacher.go:/leases
W0705 22:38:01.535986 18145 asm_amd64.s:1337] Failed to dial 10.129.173.93:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.536022 18145 storage_factory.go:285] storing leases.coordination.k8s.io in coordination.k8s.io/v1beta1, reading as coordination.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.536035 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.536453 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.536464 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.536487 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.536530 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.538229 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.543527 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.94:2379"
I0705 22:38:01.543566 18145 balancer_conn_wrappers.go:131] clientv3/balancer: "10.129.173.92:2379" is up but not pinned (already pinned "10.129.173.94:2379")
I0705 22:38:01.543625 18145 storage_factory.go:50] Storage caching is enabled for *coordination.Lease with capacity 100
I0705 22:38:01.543664 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.94:2379 <nil>}]
I0705 22:38:01.543732 18145 store.go:1343] Monitoring leases.coordination.k8s.io count at <storage-prefix>//leases
I0705 22:38:01.544459 18145 reflector.go:160] Listing and watching *coordination.Lease from storage/cacher.go:/leases
I0705 22:38:01.544471 18145 master.go:425] Enabling API group "coordination.k8s.io".
I0705 22:38:01.544507 18145 controlbuf.go:382] transport: loopyWriter.run returning. connection error: desc = "transport is closing"
I0705 22:38:01.544785 18145 storage_factory.go:285] storing replicationcontrollers in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.544955 18145 controlbuf.go:382] transport: loopyWriter.run returning. connection error: desc = "transport is closing"
W0705 22:38:01.544970 18145 asm_amd64.s:1337] Failed to dial 10.129.173.93:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.546012 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.546032 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.546074 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.546142 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.546857 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.552338 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.94:2379"
I0705 22:38:01.552372 18145 storage_factory.go:50] Storage caching is enabled for *core.ReplicationController with capacity 100
I0705 22:38:01.552402 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.94:2379 <nil>}]
I0705 22:38:01.552431 18145 store.go:1343] Monitoring replicationcontrollers count at <storage-prefix>//controllers
W0705 22:38:01.552478 18145 asm_amd64.s:1337] Failed to dial 10.129.173.93:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.552513 18145 reflector.go:160] Listing and watching *core.ReplicationController from storage/cacher.go:/controllers
W0705 22:38:01.552563 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.552569 18145 storage_factory.go:285] storing daemonsets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.553038 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.553048 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.553075 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.553108 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.554206 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.559089 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.559133 18145 storage_factory.go:50] Storage caching is enabled for *apps.DaemonSet with capacity 100
I0705 22:38:01.559160 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.559227 18145 store.go:1343] Monitoring daemonsets.apps count at <storage-prefix>//daemonsets
W0705 22:38:01.559248 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.559277 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.559295 18145 reflector.go:160] Listing and watching *apps.DaemonSet from storage/cacher.go:/daemonsets
I0705 22:38:01.559365 18145 storage_factory.go:285] storing deployments.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.559903 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.559919 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.559950 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.560049 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.562229 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.565407 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.565440 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.565451 18145 storage_factory.go:50] Storage caching is enabled for *apps.Deployment with capacity 100
W0705 22:38:01.565511 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.565538 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.565544 18145 store.go:1343] Monitoring deployments.apps count at <storage-prefix>//deployments
I0705 22:38:01.565609 18145 reflector.go:160] Listing and watching *apps.Deployment from storage/cacher.go:/deployments
I0705 22:38:01.565689 18145 storage_factory.go:285] storing ingresses.networking.k8s.io in networking.k8s.io/v1beta1, reading as networking.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.566128 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.566140 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.566173 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.566208 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.572128 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.572160 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.572184 18145 storage_factory.go:50] Storage caching is enabled for *networking.Ingress with capacity 100
W0705 22:38:01.572230 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.572257 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.572275 18145 store.go:1343] Monitoring ingresses.networking.k8s.io count at <storage-prefix>//ingress
I0705 22:38:01.572328 18145 reflector.go:160] Listing and watching *networking.Ingress from storage/cacher.go:/ingress
I0705 22:38:01.572433 18145 storage_factory.go:285] storing podsecuritypolicies.policy in policy/v1beta1, reading as policy/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.573010 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.573029 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.573060 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.573099 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.573357 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.578443 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.578472 18145 storage_factory.go:50] Storage caching is enabled for *policy.PodSecurityPolicy with capacity 100
I0705 22:38:01.578477 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
W0705 22:38:01.578536 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.578548 18145 store.go:1343] Monitoring podsecuritypolicies.policy count at <storage-prefix>//podsecuritypolicy
I0705 22:38:01.578574 18145 reflector.go:160] Listing and watching *policy.PodSecurityPolicy from storage/cacher.go:/podsecuritypolicy
W0705 22:38:01.578581 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.578667 18145 storage_factory.go:285] storing replicasets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.579104 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.579114 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.579140 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.579171 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.579353 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.580264 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.584838 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.584871 18145 storage_factory.go:50] Storage caching is enabled for *apps.ReplicaSet with capacity 100
I0705 22:38:01.584886 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.584942 18145 store.go:1343] Monitoring replicasets.apps count at <storage-prefix>//replicasets
W0705 22:38:01.584975 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.584943 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.584987 18145 reflector.go:160] Listing and watching *apps.ReplicaSet from storage/cacher.go:/replicasets
I0705 22:38:01.585104 18145 storage_factory.go:285] storing networkpolicies.networking.k8s.io in networking.k8s.io/v1, reading as networking.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.585519 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.585529 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.585553 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.585612 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.590996 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.591666 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.591699 18145 storage_factory.go:50] Storage caching is enabled for *networking.NetworkPolicy with capacity 100
I0705 22:38:01.591744 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.591767 18145 store.go:1343] Monitoring networkpolicies.networking.k8s.io count at <storage-prefix>//networkpolicies
I0705 22:38:01.591780 18145 master.go:425] Enabling API group "extensions".
W0705 22:38:01.591812 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.591816 18145 reflector.go:160] Listing and watching *networking.NetworkPolicy from storage/cacher.go:/networkpolicies
W0705 22:38:01.591814 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.591919 18145 storage_factory.go:285] storing networkpolicies.networking.k8s.io in networking.k8s.io/v1, reading as networking.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.592337 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.592347 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.592382 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.592420 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.593678 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.598473 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.598508 18145 storage_factory.go:50] Storage caching is enabled for *networking.NetworkPolicy with capacity 100
I0705 22:38:01.598534 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.598556 18145 store.go:1343] Monitoring networkpolicies.networking.k8s.io count at <storage-prefix>//networkpolicies
W0705 22:38:01.598620 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.598621 18145 reflector.go:160] Listing and watching *networking.NetworkPolicy from storage/cacher.go:/networkpolicies
W0705 22:38:01.598670 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.598678 18145 storage_factory.go:285] storing ingresses.networking.k8s.io in networking.k8s.io/v1beta1, reading as networking.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.599263 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.599279 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.599307 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.599340 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.605672 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.605867 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.605898 18145 storage_factory.go:50] Storage caching is enabled for *networking.Ingress with capacity 100
I0705 22:38:01.605918 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.605966 18145 store.go:1343] Monitoring ingresses.networking.k8s.io count at <storage-prefix>//ingress
I0705 22:38:01.605981 18145 master.go:425] Enabling API group "networking.k8s.io".
W0705 22:38:01.605983 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.606016 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.606017 18145 storage_factory.go:285] storing runtimeclasses.node.k8s.io in node.k8s.io/v1beta1, reading as node.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.606036 18145 reflector.go:160] Listing and watching *networking.Ingress from storage/cacher.go:/ingress
I0705 22:38:01.606558 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.606571 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.606613 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.606667 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.612169 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.612196 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.612210 18145 storage_factory.go:50] Storage caching is enabled for *node.RuntimeClass with capacity 100
W0705 22:38:01.612254 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.612274 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.612300 18145 store.go:1343] Monitoring runtimeclasses.node.k8s.io count at <storage-prefix>//runtimeclasses
I0705 22:38:01.612325 18145 master.go:425] Enabling API group "node.k8s.io".
I0705 22:38:01.612343 18145 reflector.go:160] Listing and watching *node.RuntimeClass from storage/cacher.go:/runtimeclasses
I0705 22:38:01.612348 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.612449 18145 storage_factory.go:285] storing poddisruptionbudgets.policy in policy/v1beta1, reading as policy/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.612946 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.612958 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.612989 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.613026 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.618576 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.618621 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.618644 18145 storage_factory.go:50] Storage caching is enabled for *policy.PodDisruptionBudget with capacity 100
W0705 22:38:01.618680 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.618713 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.618732 18145 store.go:1343] Monitoring poddisruptionbudgets.policy count at <storage-prefix>//poddisruptionbudgets
I0705 22:38:01.618756 18145 reflector.go:160] Listing and watching *policy.PodDisruptionBudget from storage/cacher.go:/poddisruptionbudgets
I0705 22:38:01.618878 18145 storage_factory.go:285] storing podsecuritypolicies.policy in policy/v1beta1, reading as policy/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.619304 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.619315 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.619340 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.619372 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.620634 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.621640 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.625143 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.625177 18145 storage_factory.go:50] Storage caching is enabled for *policy.PodSecurityPolicy with capacity 100
I0705 22:38:01.625238 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.625266 18145 reflector.go:160] Listing and watching *policy.PodSecurityPolicy from storage/cacher.go:/podsecuritypolicy
I0705 22:38:01.625246 18145 store.go:1343] Monitoring podsecuritypolicies.policy count at <storage-prefix>//podsecuritypolicy
W0705 22:38:01.625317 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.625324 18145 master.go:425] Enabling API group "policy".
W0705 22:38:01.625351 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.625367 18145 storage_factory.go:285] storing roles.rbac.authorization.k8s.io in rbac.authorization.k8s.io/v1, reading as rbac.authorization.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.625915 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.625934 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.625979 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.626040 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.627123 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.632111 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.632147 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.632160 18145 storage_factory.go:50] Storage caching is enabled for *rbac.Role with capacity 100
W0705 22:38:01.632224 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.632295 18145 store.go:1343] Monitoring roles.rbac.authorization.k8s.io count at <storage-prefix>//roles
W0705 22:38:01.632296 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.632328 18145 reflector.go:160] Listing and watching *rbac.Role from storage/cacher.go:/roles
I0705 22:38:01.632406 18145 storage_factory.go:285] storing rolebindings.rbac.authorization.k8s.io in rbac.authorization.k8s.io/v1, reading as rbac.authorization.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.632889 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.632904 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.632930 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.632988 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.634959 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.639061 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.639098 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
W0705 22:38:01.639170 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.639101 18145 storage_factory.go:50] Storage caching is enabled for *rbac.RoleBinding with capacity 100
W0705 22:38:01.639217 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.639258 18145 store.go:1343] Monitoring rolebindings.rbac.authorization.k8s.io count at <storage-prefix>//rolebindings
I0705 22:38:01.639292 18145 storage_factory.go:285] storing clusterroles.rbac.authorization.k8s.io in rbac.authorization.k8s.io/v1, reading as rbac.authorization.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.639326 18145 reflector.go:160] Listing and watching *rbac.RoleBinding from storage/cacher.go:/rolebindings
I0705 22:38:01.639724 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.639736 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.639761 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.639792 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.641705 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.645513 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.645546 18145 storage_factory.go:50] Storage caching is enabled for *rbac.ClusterRole with capacity 100
I0705 22:38:01.645589 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.645616 18145 store.go:1343] Monitoring clusterroles.rbac.authorization.k8s.io count at <storage-prefix>//clusterroles
I0705 22:38:01.645686 18145 reflector.go:160] Listing and watching *rbac.ClusterRole from storage/cacher.go:/clusterroles
W0705 22:38:01.645696 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.645689 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.645776 18145 storage_factory.go:285] storing clusterrolebindings.rbac.authorization.k8s.io in rbac.authorization.k8s.io/v1, reading as rbac.authorization.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.646238 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.646250 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.646277 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.646312 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.652231 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.652258 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.652280 18145 storage_factory.go:50] Storage caching is enabled for *rbac.ClusterRoleBinding with capacity 100
W0705 22:38:01.652325 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.652374 18145 store.go:1343] Monitoring clusterrolebindings.rbac.authorization.k8s.io count at <storage-prefix>//clusterrolebindings
W0705 22:38:01.652385 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.652417 18145 reflector.go:160] Listing and watching *rbac.ClusterRoleBinding from storage/cacher.go:/clusterrolebindings
I0705 22:38:01.652484 18145 storage_factory.go:285] storing roles.rbac.authorization.k8s.io in rbac.authorization.k8s.io/v1, reading as rbac.authorization.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.652951 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.652963 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.652990 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.653027 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.653114 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.655550 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.659098 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.659135 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.659162 18145 storage_factory.go:50] Storage caching is enabled for *rbac.Role with capacity 100
W0705 22:38:01.659210 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.659216 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.659231 18145 store.go:1343] Monitoring roles.rbac.authorization.k8s.io count at <storage-prefix>//roles
I0705 22:38:01.659290 18145 reflector.go:160] Listing and watching *rbac.Role from storage/cacher.go:/roles
I0705 22:38:01.659382 18145 storage_factory.go:285] storing rolebindings.rbac.authorization.k8s.io in rbac.authorization.k8s.io/v1, reading as rbac.authorization.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.659882 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.659894 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.659921 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.659976 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.661045 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.666391 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.666434 18145 storage_factory.go:50] Storage caching is enabled for *rbac.RoleBinding with capacity 100
I0705 22:38:01.666455 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.666501 18145 store.go:1343] Monitoring rolebindings.rbac.authorization.k8s.io count at <storage-prefix>//rolebindings
I0705 22:38:01.666563 18145 reflector.go:160] Listing and watching *rbac.RoleBinding from storage/cacher.go:/rolebindings
W0705 22:38:01.666586 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.666570 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.667163 18145 storage_factory.go:285] storing clusterroles.rbac.authorization.k8s.io in rbac.authorization.k8s.io/v1, reading as rbac.authorization.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.667615 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.667628 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.667659 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.667696 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.669460 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.673937 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.92:2379"
I0705 22:38:01.673974 18145 storage_factory.go:50] Storage caching is enabled for *rbac.ClusterRole with capacity 100
I0705 22:38:01.673998 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>}]
I0705 22:38:01.674038 18145 store.go:1343] Monitoring clusterroles.rbac.authorization.k8s.io count at <storage-prefix>//clusterroles
W0705 22:38:01.674107 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.674139 18145 reflector.go:160] Listing and watching *rbac.ClusterRole from storage/cacher.go:/clusterroles
W0705 22:38:01.674241 18145 asm_amd64.s:1337] Failed to dial 10.129.173.93:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.674246 18145 controlbuf.go:382] transport: loopyWriter.run returning. connection error: desc = "transport is closing"
I0705 22:38:01.674250 18145 storage_factory.go:285] storing clusterrolebindings.rbac.authorization.k8s.io in rbac.authorization.k8s.io/v1, reading as rbac.authorization.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.674768 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.674781 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.674809 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.674843 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.679062 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.680225 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.680261 18145 storage_factory.go:50] Storage caching is enabled for *rbac.ClusterRoleBinding with capacity 100
I0705 22:38:01.680286 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.680333 18145 store.go:1343] Monitoring clusterrolebindings.rbac.authorization.k8s.io count at <storage-prefix>//clusterrolebindings
I0705 22:38:01.680363 18145 master.go:425] Enabling API group "rbac.authorization.k8s.io".
I0705 22:38:01.680382 18145 reflector.go:160] Listing and watching *rbac.ClusterRoleBinding from storage/cacher.go:/clusterrolebindings
W0705 22:38:01.680417 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.680389 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.682487 18145 storage_factory.go:285] storing priorityclasses.scheduling.k8s.io in scheduling.k8s.io/v1, reading as scheduling.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.682847 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.682943 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.682958 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.682986 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.683031 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.688965 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.689018 18145 storage_factory.go:50] Storage caching is enabled for *scheduling.PriorityClass with capacity 100
I0705 22:38:01.689064 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.689105 18145 store.go:1343] Monitoring priorityclasses.scheduling.k8s.io count at <storage-prefix>//priorityclasses
W0705 22:38:01.689143 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.689144 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.689160 18145 reflector.go:160] Listing and watching *scheduling.PriorityClass from storage/cacher.go:/priorityclasses
I0705 22:38:01.689271 18145 storage_factory.go:285] storing priorityclasses.scheduling.k8s.io in scheduling.k8s.io/v1, reading as scheduling.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.689806 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.689819 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.689858 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.689924 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.691729 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.696232 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.94:2379"
I0705 22:38:01.696268 18145 storage_factory.go:50] Storage caching is enabled for *scheduling.PriorityClass with capacity 100
I0705 22:38:01.696271 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.94:2379 <nil>}]
I0705 22:38:01.696334 18145 store.go:1343] Monitoring priorityclasses.scheduling.k8s.io count at <storage-prefix>//priorityclasses
I0705 22:38:01.696348 18145 master.go:425] Enabling API group "scheduling.k8s.io".
W0705 22:38:01.696351 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.696382 18145 reflector.go:160] Listing and watching *scheduling.PriorityClass from storage/cacher.go:/priorityclasses
W0705 22:38:01.696400 18145 asm_amd64.s:1337] Failed to dial 10.129.173.93:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.696458 18145 master.go:417] Skipping disabled API group "settings.k8s.io".
I0705 22:38:01.696568 18145 storage_factory.go:285] storing storageclasses.storage.k8s.io in storage.k8s.io/v1, reading as storage.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.697044 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.697056 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.697082 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.697116 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.697826 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.703204 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.92:2379"
I0705 22:38:01.703245 18145 storage_factory.go:50] Storage caching is enabled for *storage.StorageClass with capacity 100
I0705 22:38:01.703295 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>}]
I0705 22:38:01.703320 18145 store.go:1343] Monitoring storageclasses.storage.k8s.io count at <storage-prefix>//storageclasses
W0705 22:38:01.703359 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.703394 18145 reflector.go:160] Listing and watching *storage.StorageClass from storage/cacher.go:/storageclasses
I0705 22:38:01.703456 18145 storage_factory.go:285] storing volumeattachments.storage.k8s.io in storage.k8s.io/v1, reading as storage.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
W0705 22:38:01.703398 18145 asm_amd64.s:1337] Failed to dial 10.129.173.93:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.703972 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.703988 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.704034 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.704108 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.705744 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.710344 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.710372 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.710376 18145 storage_factory.go:50] Storage caching is enabled for *storage.VolumeAttachment with capacity 100
W0705 22:38:01.710430 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.710445 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.710450 18145 store.go:1343] Monitoring volumeattachments.storage.k8s.io count at <storage-prefix>//volumeattachments
I0705 22:38:01.710464 18145 reflector.go:160] Listing and watching *storage.VolumeAttachment from storage/cacher.go:/volumeattachments
I0705 22:38:01.710483 18145 storage_factory.go:285] storing csinodes.storage.k8s.io in storage.k8s.io/v1beta1, reading as storage.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.710942 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.710954 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.710990 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.711054 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.713079 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.716838 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.716867 18145 storage_factory.go:50] Storage caching is enabled for *storage.CSINode with capacity 100
I0705 22:38:01.716906 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
W0705 22:38:01.716965 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.717340 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.717348 18145 store.go:1343] Monitoring csinodes.storage.k8s.io count at <storage-prefix>//csinodes
I0705 22:38:01.717384 18145 storage_factory.go:285] storing csidrivers.storage.k8s.io in storage.k8s.io/v1beta1, reading as storage.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.717555 18145 reflector.go:160] Listing and watching *storage.CSINode from storage/cacher.go:/csinodes
I0705 22:38:01.719158 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.719180 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.719235 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.719314 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.725650 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.94:2379"
I0705 22:38:01.725704 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.94:2379 <nil>}]
I0705 22:38:01.725750 18145 storage_factory.go:50] Storage caching is enabled for *storage.CSIDriver with capacity 100
W0705 22:38:01.725830 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.725833 18145 asm_amd64.s:1337] Failed to dial 10.129.173.93:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.725881 18145 store.go:1343] Monitoring csidrivers.storage.k8s.io count at <storage-prefix>//csidrivers
I0705 22:38:01.725922 18145 reflector.go:160] Listing and watching *storage.CSIDriver from storage/cacher.go:/csidrivers
I0705 22:38:01.726070 18145 storage_factory.go:285] storing storageclasses.storage.k8s.io in storage.k8s.io/v1, reading as storage.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.726147 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.726622 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.726641 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.726682 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.726742 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.727907 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.733148 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.733192 18145 storage_factory.go:50] Storage caching is enabled for *storage.StorageClass with capacity 100
I0705 22:38:01.733195 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.733264 18145 store.go:1343] Monitoring storageclasses.storage.k8s.io count at <storage-prefix>//storageclasses
W0705 22:38:01.733277 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.733282 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.733318 18145 reflector.go:160] Listing and watching *storage.StorageClass from storage/cacher.go:/storageclasses
I0705 22:38:01.733393 18145 storage_factory.go:285] storing volumeattachments.storage.k8s.io in storage.k8s.io/v1, reading as storage.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.733942 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.733956 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.733983 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.734017 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.739573 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.739653 18145 storage_factory.go:50] Storage caching is enabled for *storage.VolumeAttachment with capacity 100
I0705 22:38:01.739670 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.739743 18145 store.go:1343] Monitoring volumeattachments.storage.k8s.io count at <storage-prefix>//volumeattachments
I0705 22:38:01.739770 18145 master.go:425] Enabling API group "storage.k8s.io".
W0705 22:38:01.739785 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.739794 18145 reflector.go:160] Listing and watching *storage.VolumeAttachment from storage/cacher.go:/volumeattachments
W0705 22:38:01.739820 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.739830 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.739938 18145 storage_factory.go:285] storing deployments.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.740394 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.740405 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.740433 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.740471 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.745885 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.746023 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.746067 18145 storage_factory.go:50] Storage caching is enabled for *apps.Deployment with capacity 100
I0705 22:38:01.746068 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.746150 18145 store.go:1343] Monitoring deployments.apps count at <storage-prefix>//deployments
I0705 22:38:01.746192 18145 reflector.go:160] Listing and watching *apps.Deployment from storage/cacher.go:/deployments
W0705 22:38:01.746199 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.746195 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.746278 18145 storage_factory.go:285] storing statefulsets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.746862 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.746876 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.746903 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.746941 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.752900 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.752930 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
W0705 22:38:01.752989 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.752995 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.753021 18145 storage_factory.go:50] Storage caching is enabled for *apps.StatefulSet with capacity 100
I0705 22:38:01.753114 18145 store.go:1343] Monitoring statefulsets.apps count at <storage-prefix>//statefulsets
I0705 22:38:01.753145 18145 reflector.go:160] Listing and watching *apps.StatefulSet from storage/cacher.go:/statefulsets
I0705 22:38:01.753245 18145 storage_factory.go:285] storing controllerrevisions.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.753664 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.753785 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.753799 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.753835 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.753881 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.759938 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.759972 18145 storage_factory.go:50] Storage caching is enabled for *apps.ControllerRevision with capacity 100
I0705 22:38:01.759996 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.760029 18145 store.go:1343] Monitoring controllerrevisions.apps count at <storage-prefix>//controllerrevisions
W0705 22:38:01.760072 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.760088 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.760094 18145 reflector.go:160] Listing and watching *apps.ControllerRevision from storage/cacher.go:/controllerrevisions
I0705 22:38:01.760179 18145 storage_factory.go:285] storing deployments.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.760648 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.760660 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.760693 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.760752 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.761629 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.762737 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.766537 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.766570 18145 storage_factory.go:50] Storage caching is enabled for *apps.Deployment with capacity 100
I0705 22:38:01.766574 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.766639 18145 store.go:1343] Monitoring deployments.apps count at <storage-prefix>//deployments
W0705 22:38:01.766666 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.766667 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.766671 18145 reflector.go:160] Listing and watching *apps.Deployment from storage/cacher.go:/deployments
I0705 22:38:01.766798 18145 storage_factory.go:285] storing statefulsets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.767271 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.767283 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.767309 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.767408 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.773951 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.92:2379"
I0705 22:38:01.773995 18145 storage_factory.go:50] Storage caching is enabled for *apps.StatefulSet with capacity 100
I0705 22:38:01.773998 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>}]
I0705 22:38:01.774074 18145 store.go:1343] Monitoring statefulsets.apps count at <storage-prefix>//statefulsets
W0705 22:38:01.774125 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.774172 18145 reflector.go:160] Listing and watching *apps.StatefulSet from storage/cacher.go:/statefulsets
W0705 22:38:01.774188 18145 asm_amd64.s:1337] Failed to dial 10.129.173.93:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.774230 18145 storage_factory.go:285] storing daemonsets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.774946 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.774963 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.774996 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.775036 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.776461 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.779672 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.780664 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.780705 18145 storage_factory.go:50] Storage caching is enabled for *apps.DaemonSet with capacity 100
I0705 22:38:01.780734 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.780809 18145 store.go:1343] Monitoring daemonsets.apps count at <storage-prefix>//daemonsets
I0705 22:38:01.780836 18145 reflector.go:160] Listing and watching *apps.DaemonSet from storage/cacher.go:/daemonsets
W0705 22:38:01.780811 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.780867 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.780956 18145 storage_factory.go:285] storing replicasets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.781418 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.781428 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.781460 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.781499 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.782842 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.787419 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.787444 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
W0705 22:38:01.787502 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.787530 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.787553 18145 storage_factory.go:50] Storage caching is enabled for *apps.ReplicaSet with capacity 100
I0705 22:38:01.787656 18145 store.go:1343] Monitoring replicasets.apps count at <storage-prefix>//replicasets
I0705 22:38:01.787742 18145 reflector.go:160] Listing and watching *apps.ReplicaSet from storage/cacher.go:/replicasets
I0705 22:38:01.787796 18145 storage_factory.go:285] storing controllerrevisions.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.788235 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.788246 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.788273 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.788315 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.794135 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.794631 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.92:2379"
I0705 22:38:01.794681 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>}]
I0705 22:38:01.794701 18145 storage_factory.go:50] Storage caching is enabled for *apps.ControllerRevision with capacity 100
W0705 22:38:01.794771 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.794819 18145 store.go:1343] Monitoring controllerrevisions.apps count at <storage-prefix>//controllerrevisions
W0705 22:38:01.794829 18145 asm_amd64.s:1337] Failed to dial 10.129.173.93:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.794861 18145 reflector.go:160] Listing and watching *apps.ControllerRevision from storage/cacher.go:/controllerrevisions
I0705 22:38:01.794960 18145 storage_factory.go:285] storing deployments.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.795409 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.795421 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.795450 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.795502 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.797129 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.801393 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.801432 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.801471 18145 storage_factory.go:50] Storage caching is enabled for *apps.Deployment with capacity 100
W0705 22:38:01.801508 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.801536 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.801545 18145 store.go:1343] Monitoring deployments.apps count at <storage-prefix>//deployments
I0705 22:38:01.801562 18145 reflector.go:160] Listing and watching *apps.Deployment from storage/cacher.go:/deployments
I0705 22:38:01.801702 18145 storage_factory.go:285] storing statefulsets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.802137 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.802147 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.802184 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.802251 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.807741 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.807776 18145 storage_factory.go:50] Storage caching is enabled for *apps.StatefulSet with capacity 100
I0705 22:38:01.807792 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.807849 18145 store.go:1343] Monitoring statefulsets.apps count at <storage-prefix>//statefulsets
W0705 22:38:01.807897 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.807922 18145 reflector.go:160] Listing and watching *apps.StatefulSet from storage/cacher.go:/statefulsets
W0705 22:38:01.807964 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.807960 18145 storage_factory.go:285] storing daemonsets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.808424 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.808435 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.809098 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.809163 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.809901 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.814015 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.814893 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.814938 18145 storage_factory.go:50] Storage caching is enabled for *apps.DaemonSet with capacity 100
I0705 22:38:01.814943 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
W0705 22:38:01.815016 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.815024 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.815026 18145 store.go:1343] Monitoring daemonsets.apps count at <storage-prefix>//daemonsets
I0705 22:38:01.815048 18145 reflector.go:160] Listing and watching *apps.DaemonSet from storage/cacher.go:/daemonsets
I0705 22:38:01.815185 18145 storage_factory.go:285] storing replicasets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.815699 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.815712 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.815762 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.815819 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.821338 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.821378 18145 storage_factory.go:50] Storage caching is enabled for *apps.ReplicaSet with capacity 100
I0705 22:38:01.821343 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.821406 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.821445 18145 store.go:1343] Monitoring replicasets.apps count at <storage-prefix>//replicasets
W0705 22:38:01.821497 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.821514 18145 reflector.go:160] Listing and watching *apps.ReplicaSet from storage/cacher.go:/replicasets
W0705 22:38:01.821554 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.821562 18145 storage_factory.go:285] storing controllerrevisions.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.822050 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.822063 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.822109 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.822173 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.828748 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.828791 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.828823 18145 storage_factory.go:50] Storage caching is enabled for *apps.ControllerRevision with capacity 100
W0705 22:38:01.828858 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.828865 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.828923 18145 store.go:1343] Monitoring controllerrevisions.apps count at <storage-prefix>//controllerrevisions
I0705 22:38:01.828944 18145 master.go:425] Enabling API group "apps".
I0705 22:38:01.828977 18145 storage_factory.go:285] storing validatingwebhookconfigurations.admissionregistration.k8s.io in admissionregistration.k8s.io/v1beta1, reading as admissionregistration.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.828998 18145 reflector.go:160] Listing and watching *apps.ControllerRevision from storage/cacher.go:/controllerrevisions
I0705 22:38:01.829405 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.829417 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.829444 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.829477 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.832275 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.833018 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.835374 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.835425 18145 storage_factory.go:50] Storage caching is enabled for *admissionregistration.ValidatingWebhookConfiguration with capacity 100
I0705 22:38:01.835447 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
W0705 22:38:01.835516 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
W0705 22:38:01.835523 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.835521 18145 store.go:1343] Monitoring validatingwebhookconfigurations.admissionregistration.k8s.io count at <storage-prefix>//validatingwebhookconfigurations
I0705 22:38:01.835546 18145 reflector.go:160] Listing and watching *admissionregistration.ValidatingWebhookConfiguration from storage/cacher.go:/validatingwebhookconfigurations
I0705 22:38:01.835570 18145 storage_factory.go:285] storing mutatingwebhookconfigurations.admissionregistration.k8s.io in admissionregistration.k8s.io/v1beta1, reading as admissionregistration.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.836092 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.836103 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.836130 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.836163 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.837500 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.843429 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.843486 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.843504 18145 storage_factory.go:50] Storage caching is enabled for *admissionregistration.MutatingWebhookConfiguration with capacity 100
W0705 22:38:01.843562 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.843696 18145 store.go:1343] Monitoring mutatingwebhookconfigurations.admissionregistration.k8s.io count at <storage-prefix>//mutatingwebhookconfigurations
I0705 22:38:01.843729 18145 master.go:425] Enabling API group "admissionregistration.k8s.io".
W0705 22:38:01.843815 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.843787 18145 storage_factory.go:285] storing events in v1, reading as __internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.844020 18145 reflector.go:160] Listing and watching *admissionregistration.MutatingWebhookConfiguration from storage/cacher.go:/mutatingwebhookconfigurations
I0705 22:38:01.844236 18145 controlbuf.go:382] transport: loopyWriter.run returning. connection error: desc = "transport is closing"
I0705 22:38:01.844544 18145 client.go:354] parsed scheme: ""
I0705 22:38:01.844556 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:01.844583 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:01.844651 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:01.850614 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:01.850627 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:01.850643 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:01.850668 18145 storage_factory.go:46] Storage caching is disabled for *core.Event
I0705 22:38:01.850771 18145 store.go:1343] Monitoring events count at <storage-prefix>//events
I0705 22:38:01.850791 18145 master.go:425] Enabling API group "events.k8s.io".
W0705 22:38:01.850817 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.850841 18145 controlbuf.go:382] transport: loopyWriter.run returning. connection error: desc = "transport is closing"
W0705 22:38:01.850860 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:01.954244 18145 storage_factory.go:285] storing tokenreviews.authentication.k8s.io in authentication.k8s.io/v1, reading as authentication.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.954407 18145 storage_factory.go:285] storing tokenreviews.authentication.k8s.io in authentication.k8s.io/v1, reading as authentication.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.954618 18145 storage_factory.go:285] storing localsubjectaccessreviews.authorization.k8s.io in authorization.k8s.io/v1, reading as authorization.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.954700 18145 storage_factory.go:285] storing selfsubjectaccessreviews.authorization.k8s.io in authorization.k8s.io/v1, reading as authorization.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.954785 18145 storage_factory.go:285] storing selfsubjectrulesreviews.authorization.k8s.io in authorization.k8s.io/v1, reading as authorization.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.954852 18145 storage_factory.go:285] storing subjectaccessreviews.authorization.k8s.io in authorization.k8s.io/v1, reading as authorization.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.955039 18145 storage_factory.go:285] storing localsubjectaccessreviews.authorization.k8s.io in authorization.k8s.io/v1, reading as authorization.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.955186 18145 storage_factory.go:285] storing selfsubjectaccessreviews.authorization.k8s.io in authorization.k8s.io/v1, reading as authorization.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.955253 18145 storage_factory.go:285] storing selfsubjectrulesreviews.authorization.k8s.io in authorization.k8s.io/v1, reading as authorization.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.955326 18145 storage_factory.go:285] storing subjectaccessreviews.authorization.k8s.io in authorization.k8s.io/v1, reading as authorization.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.955939 18145 storage_factory.go:285] storing horizontalpodautoscalers.autoscaling in autoscaling/v1, reading as autoscaling/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.956125 18145 storage_factory.go:285] storing horizontalpodautoscalers.autoscaling in autoscaling/v1, reading as autoscaling/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.956633 18145 storage_factory.go:285] storing horizontalpodautoscalers.autoscaling in autoscaling/v1, reading as autoscaling/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.956819 18145 storage_factory.go:285] storing horizontalpodautoscalers.autoscaling in autoscaling/v1, reading as autoscaling/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.957276 18145 storage_factory.go:285] storing horizontalpodautoscalers.autoscaling in autoscaling/v1, reading as autoscaling/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.957422 18145 storage_factory.go:285] storing horizontalpodautoscalers.autoscaling in autoscaling/v1, reading as autoscaling/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.957939 18145 storage_factory.go:285] storing jobs.batch in batch/v1, reading as batch/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.958119 18145 storage_factory.go:285] storing jobs.batch in batch/v1, reading as batch/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.958615 18145 storage_factory.go:285] storing cronjobs.batch in batch/v1beta1, reading as batch/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.959458 18145 storage_factory.go:285] storing cronjobs.batch in batch/v1beta1, reading as batch/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
W0705 22:38:01.959508 18145 genericapiserver.go:351] Skipping API batch/v2alpha1 because it has no resources.
I0705 22:38:01.959965 18145 storage_factory.go:285] storing certificatesigningrequests.certificates.k8s.io in certificates.k8s.io/v1beta1, reading as certificates.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.960065 18145 storage_factory.go:285] storing certificatesigningrequests.certificates.k8s.io in certificates.k8s.io/v1beta1, reading as certificates.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.960202 18145 storage_factory.go:285] storing certificatesigningrequests.certificates.k8s.io in certificates.k8s.io/v1beta1, reading as certificates.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.960724 18145 storage_factory.go:285] storing leases.coordination.k8s.io in coordination.k8s.io/v1beta1, reading as coordination.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.961138 18145 storage_factory.go:285] storing leases.coordination.k8s.io in coordination.k8s.io/v1beta1, reading as coordination.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.961675 18145 storage_factory.go:285] storing daemonsets.extensions in apps/v1, reading as extensions/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.961861 18145 storage_factory.go:285] storing daemonsets.extensions in apps/v1, reading as extensions/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.962283 18145 storage_factory.go:285] storing deployments.extensions in apps/v1, reading as extensions/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.962374 18145 storage_factory.go:285] storing deployments.extensions in apps/v1, reading as extensions/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.962535 18145 storage_factory.go:285] storing deployments.extensions in apps/v1, reading as extensions/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.962709 18145 storage_factory.go:285] storing deployments.extensions in apps/v1, reading as extensions/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.963138 18145 storage_factory.go:285] storing ingresses.extensions in networking.k8s.io/v1beta1, reading as extensions/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.963278 18145 storage_factory.go:285] storing ingresses.extensions in networking.k8s.io/v1beta1, reading as extensions/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.963727 18145 storage_factory.go:285] storing networkpolicies.extensions in networking.k8s.io/v1, reading as extensions/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.964049 18145 storage_factory.go:285] storing podsecuritypolicies.extensions in policy/v1beta1, reading as extensions/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.964505 18145 storage_factory.go:285] storing replicasets.extensions in apps/v1, reading as extensions/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.964702 18145 storage_factory.go:285] storing replicasets.extensions in apps/v1, reading as extensions/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.965393 18145 storage_factory.go:285] storing replicasets.extensions in apps/v1, reading as extensions/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.965440 18145 storage_factory.go:285] storing replicationcontrollers.extensions in v1, reading as extensions/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.965587 18145 storage_factory.go:285] storing replicationcontrollers.extensions in v1, reading as extensions/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.966078 18145 storage_factory.go:285] storing networkpolicies.networking.k8s.io in networking.k8s.io/v1, reading as networking.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.966475 18145 storage_factory.go:285] storing ingresses.networking.k8s.io in networking.k8s.io/v1beta1, reading as networking.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.966634 18145 storage_factory.go:285] storing ingresses.networking.k8s.io in networking.k8s.io/v1beta1, reading as networking.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.967053 18145 storage_factory.go:285] storing runtimeclasses.node.k8s.io in node.k8s.io/v1beta1, reading as node.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
W0705 22:38:01.967095 18145 genericapiserver.go:351] Skipping API node.k8s.io/v1alpha1 because it has no resources.
I0705 22:38:01.967569 18145 storage_factory.go:285] storing poddisruptionbudgets.policy in policy/v1beta1, reading as policy/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.967746 18145 storage_factory.go:285] storing poddisruptionbudgets.policy in policy/v1beta1, reading as policy/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.968069 18145 storage_factory.go:285] storing podsecuritypolicies.policy in policy/v1beta1, reading as policy/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.968450 18145 storage_factory.go:285] storing clusterrolebindings.rbac.authorization.k8s.io in rbac.authorization.k8s.io/v1, reading as rbac.authorization.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.968782 18145 storage_factory.go:285] storing clusterroles.rbac.authorization.k8s.io in rbac.authorization.k8s.io/v1, reading as rbac.authorization.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.969174 18145 storage_factory.go:285] storing rolebindings.rbac.authorization.k8s.io in rbac.authorization.k8s.io/v1, reading as rbac.authorization.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.969538 18145 storage_factory.go:285] storing roles.rbac.authorization.k8s.io in rbac.authorization.k8s.io/v1, reading as rbac.authorization.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.969891 18145 storage_factory.go:285] storing clusterrolebindings.rbac.authorization.k8s.io in rbac.authorization.k8s.io/v1, reading as rbac.authorization.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.970204 18145 storage_factory.go:285] storing clusterroles.rbac.authorization.k8s.io in rbac.authorization.k8s.io/v1, reading as rbac.authorization.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.971161 18145 storage_factory.go:285] storing rolebindings.rbac.authorization.k8s.io in rbac.authorization.k8s.io/v1, reading as rbac.authorization.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.971562 18145 storage_factory.go:285] storing roles.rbac.authorization.k8s.io in rbac.authorization.k8s.io/v1, reading as rbac.authorization.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
W0705 22:38:01.971614 18145 genericapiserver.go:351] Skipping API rbac.authorization.k8s.io/v1alpha1 because it has no resources.
I0705 22:38:01.971959 18145 storage_factory.go:285] storing priorityclasses.scheduling.k8s.io in scheduling.k8s.io/v1, reading as scheduling.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.972304 18145 storage_factory.go:285] storing priorityclasses.scheduling.k8s.io in scheduling.k8s.io/v1, reading as scheduling.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
W0705 22:38:01.972342 18145 genericapiserver.go:351] Skipping API scheduling.k8s.io/v1alpha1 because it has no resources.
I0705 22:38:01.972684 18145 storage_factory.go:285] storing storageclasses.storage.k8s.io in storage.k8s.io/v1, reading as storage.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.973037 18145 storage_factory.go:285] storing volumeattachments.storage.k8s.io in storage.k8s.io/v1, reading as storage.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.973178 18145 storage_factory.go:285] storing volumeattachments.storage.k8s.io in storage.k8s.io/v1, reading as storage.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.973545 18145 storage_factory.go:285] storing csidrivers.storage.k8s.io in storage.k8s.io/v1beta1, reading as storage.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.973841 18145 storage_factory.go:285] storing csinodes.storage.k8s.io in storage.k8s.io/v1beta1, reading as storage.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.974138 18145 storage_factory.go:285] storing storageclasses.storage.k8s.io in storage.k8s.io/v1, reading as storage.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.974435 18145 storage_factory.go:285] storing volumeattachments.storage.k8s.io in storage.k8s.io/v1, reading as storage.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
W0705 22:38:01.974482 18145 genericapiserver.go:351] Skipping API storage.k8s.io/v1alpha1 because it has no resources.
I0705 22:38:01.974974 18145 storage_factory.go:285] storing controllerrevisions.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.975387 18145 storage_factory.go:285] storing daemonsets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.975552 18145 storage_factory.go:285] storing daemonsets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.976543 18145 storage_factory.go:285] storing deployments.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.976761 18145 storage_factory.go:285] storing deployments.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.976906 18145 storage_factory.go:285] storing deployments.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.977277 18145 storage_factory.go:285] storing replicasets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.977404 18145 storage_factory.go:285] storing replicasets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.977530 18145 storage_factory.go:285] storing replicasets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.977953 18145 storage_factory.go:285] storing statefulsets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.978104 18145 storage_factory.go:285] storing statefulsets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.978247 18145 storage_factory.go:285] storing statefulsets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.978707 18145 storage_factory.go:285] storing controllerrevisions.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.979080 18145 storage_factory.go:285] storing daemonsets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.979237 18145 storage_factory.go:285] storing daemonsets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.979612 18145 storage_factory.go:285] storing deployments.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.979751 18145 storage_factory.go:285] storing deployments.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.979874 18145 storage_factory.go:285] storing deployments.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.980238 18145 storage_factory.go:285] storing replicasets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.980373 18145 storage_factory.go:285] storing replicasets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.980500 18145 storage_factory.go:285] storing replicasets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.980918 18145 storage_factory.go:285] storing statefulsets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.981586 18145 storage_factory.go:285] storing statefulsets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.981758 18145 storage_factory.go:285] storing statefulsets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.982238 18145 storage_factory.go:285] storing controllerrevisions.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.982585 18145 storage_factory.go:285] storing deployments.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.982685 18145 storage_factory.go:285] storing deployments.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.982814 18145 storage_factory.go:285] storing deployments.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.982947 18145 storage_factory.go:285] storing deployments.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.983330 18145 storage_factory.go:285] storing statefulsets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.983478 18145 storage_factory.go:285] storing statefulsets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.983624 18145 storage_factory.go:285] storing statefulsets.apps in apps/v1, reading as apps/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.984096 18145 storage_factory.go:285] storing mutatingwebhookconfigurations.admissionregistration.k8s.io in admissionregistration.k8s.io/v1beta1, reading as admissionregistration.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.984466 18145 storage_factory.go:285] storing validatingwebhookconfigurations.admissionregistration.k8s.io in admissionregistration.k8s.io/v1beta1, reading as admissionregistration.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:01.984926 18145 storage_factory.go:285] storing events.events.k8s.io in v1, reading as events.k8s.io/__internal from storagebackend.Config{Type:"", Prefix:"/registry", Transport:storagebackend.TransportConfig{ServerList:[]string{"https://10.129.173.92:2379", "https://10.129.173.93:2379", "https://10.129.173.94:2379"}, KeyFile:"/etc/kubernetes/cluster1/ssl/kubernetes-key.pem", CertFile:"/etc/kubernetes/cluster1/ssl/kubernetes.pem", CAFile:"/etc/kubernetes/cluster1/ssl/ca.pem"}, Paging:true, Codec:runtime.Codec(nil), EncodeVersioner:runtime.GroupVersioner(nil), Transformer:value.Transformer(nil), CompactionInterval:300000000000, CountMetricPollPeriod:60000000000}
I0705 22:38:02.254177 18145 client.go:354] parsed scheme: ""
I0705 22:38:02.254203 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:02.254244 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:02.254372 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:02.261077 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.94:2379"
I0705 22:38:02.261128 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.94:2379 <nil>}]
W0705 22:38:02.261209 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
W0705 22:38:02.261287 18145 asm_amd64.s:1337] Failed to dial 10.129.173.93:2379: grpc: the connection is closing; please retry.
I0705 22:38:02.603860 18145 healthz.go:107] Installing healthz checkers:"ping","log","etcd","poststarthook/generic-apiserver-start-informers","poststarthook/start-apiextensions-informers","poststarthook/start-apiextensions-controllers","poststarthook/crd-informer-synced","poststarthook/bootstrap-controller","poststarthook/rbac/bootstrap-roles","poststarthook/scheduling/bootstrap-system-priority-classes","poststarthook/ca-registration","poststarthook/start-kube-apiserver-admission-initializer"
I0705 22:38:02.646973 18145 healthz.go:107] Installing healthz checkers:"ping","log","etcd","poststarthook/generic-apiserver-start-informers","poststarthook/start-apiextensions-informers","poststarthook/start-apiextensions-controllers","poststarthook/crd-informer-synced"
E0705 22:38:02.648065 18145 prometheus.go:55] failed to register depth metric admission_quota_controller: duplicate metrics collector registration attempted
E0705 22:38:02.648116 18145 prometheus.go:68] failed to register adds metric admission_quota_controller: duplicate metrics collector registration attempted
E0705 22:38:02.648155 18145 prometheus.go:82] failed to register latency metric admission_quota_controller: duplicate metrics collector registration attempted
E0705 22:38:02.648181 18145 prometheus.go:96] failed to register workDuration metric admission_quota_controller: duplicate metrics collector registration attempted
E0705 22:38:02.648208 18145 prometheus.go:112] failed to register unfinished metric admission_quota_controller: duplicate metrics collector registration attempted
E0705 22:38:02.648232 18145 prometheus.go:126] failed to register unfinished metric admission_quota_controller: duplicate metrics collector registration attempted
E0705 22:38:02.648256 18145 prometheus.go:152] failed to register depth metric admission_quota_controller: duplicate metrics collector registration attempted
E0705 22:38:02.648279 18145 prometheus.go:164] failed to register adds metric admission_quota_controller: duplicate metrics collector registration attempted
E0705 22:38:02.648323 18145 prometheus.go:176] failed to register latency metric admission_quota_controller: duplicate metrics collector registration attempted
E0705 22:38:02.648401 18145 prometheus.go:188] failed to register work_duration metric admission_quota_controller: duplicate metrics collector registration attempted
E0705 22:38:02.648426 18145 prometheus.go:203] failed to register unfinished_work_seconds metric admission_quota_controller: duplicate metrics collector registration attempted
E0705 22:38:02.648449 18145 prometheus.go:216] failed to register longest_running_processor_microseconds metric admission_quota_controller: duplicate metrics collector registration attempted
I0705 22:38:02.648476 18145 plugins.go:158] Loaded 5 mutating admission controller(s) successfully in the following order: NamespaceLifecycle,LimitRanger,ServiceAccount,NodeRestriction,DefaultStorageClass.
I0705 22:38:02.648483 18145 plugins.go:161] Loaded 3 validating admission controller(s) successfully in the following order: LimitRanger,ServiceAccount,ResourceQuota.
I0705 22:38:02.650334 18145 client.go:354] parsed scheme: ""
I0705 22:38:02.650349 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:02.650387 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:02.650508 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:02.656909 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:02.656960 18145 storage_factory.go:50] Storage caching is enabled for *apiregistration.APIService with capacity 1000
I0705 22:38:02.657001 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
W0705 22:38:02.657086 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
W0705 22:38:02.657094 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
I0705 22:38:02.657250 18145 store.go:1343] Monitoring apiservices.apiregistration.k8s.io count at <storage-prefix>//apiregistration.k8s.io/apiservices
I0705 22:38:02.657324 18145 reflector.go:160] Listing and watching *apiregistration.APIService from storage/cacher.go:/apiregistration.k8s.io/apiservices
I0705 22:38:02.657709 18145 client.go:354] parsed scheme: ""
I0705 22:38:02.657729 18145 client.go:354] scheme "" not registered, fallback to default scheme
I0705 22:38:02.657761 18145 asm_amd64.s:1337] ccResolverWrapper: sending new addresses to cc: [{10.129.173.92:2379 0 <nil>}]
I0705 22:38:02.657796 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.92:2379 <nil>} {10.129.173.93:2379 <nil>} {10.129.173.94:2379 <nil>}]
I0705 22:38:02.663447 18145 balancer_conn_wrappers.go:131] clientv3/balancer: pin "10.129.173.93:2379"
I0705 22:38:02.663513 18145 asm_amd64.s:1337] balancerWrapper: got update addr from Notify: [{10.129.173.93:2379 <nil>}]
I0705 22:38:02.663518 18145 storage_factory.go:50] Storage caching is enabled for *apiregistration.APIService with capacity 1000
W0705 22:38:02.663656 18145 asm_amd64.s:1337] Failed to dial 10.129.173.92:2379: grpc: the connection is closing; please retry.
W0705 22:38:02.663610 18145 asm_amd64.s:1337] Failed to dial 10.129.173.94:2379: grpc: the connection is closing; please retry.
I0705 22:38:02.663728 18145 store.go:1343] Monitoring apiservices.apiregistration.k8s.io count at <storage-prefix>//apiregistration.k8s.io/apiservices
I0705 22:38:02.663773 18145 reflector.go:160] Listing and watching *apiregistration.APIService from storage/cacher.go:/apiregistration.k8s.io/apiservices
I0705 22:38:02.665260 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:02.666477 18145 watch_cache.go:405] Replace watchCache (rev: 75099443)
I0705 22:38:02.674592 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:02.674627 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:03.616355 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:03.616397 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:04.268801 18145 deprecated_insecure_serving.go:53] Serving insecurely on 127.0.0.1:8073
I0705 22:38:04.268882 18145 healthz.go:107] Installing healthz checkers:"ping","log","etcd","poststarthook/generic-apiserver-start-informers","poststarthook/start-apiextensions-informers","poststarthook/start-apiextensions-controllers","poststarthook/crd-informer-synced","poststarthook/bootstrap-controller","poststarthook/rbac/bootstrap-roles","poststarthook/scheduling/bootstrap-system-priority-classes","poststarthook/ca-registration","poststarthook/start-kube-apiserver-admission-initializer","poststarthook/start-kube-aggregator-informers","poststarthook/apiservice-registration-controller","poststarthook/apiservice-status-available-controller","poststarthook/apiservice-openapi-controller","poststarthook/kube-apiserver-autoregistration","autoregister-completion"
I0705 22:38:04.269477 18145 handler.go:153] kube-aggregator: GET "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by nonGoRestful
I0705 22:38:04.269524 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by NotFoundHandler
I0705 22:38:04.269546 18145 handler.go:143] kube-apiserver: GET "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by gorestful with webservice /api/v1
I0705 22:38:04.269551 18145 handler.go:153] kube-aggregator: GET "/api/v1/pods" satisfied by nonGoRestful
I0705 22:38:04.269572 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/pods" satisfied by NotFoundHandler
I0705 22:38:04.269582 18145 handler.go:143] kube-apiserver: GET "/api/v1/pods" satisfied by gorestful with webservice /api/v1
I0705 22:38:04.269487 18145 handler.go:153] kube-aggregator: GET "/api/v1/nodes" satisfied by nonGoRestful
I0705 22:38:04.269624 18145 handler.go:153] kube-aggregator: GET "/api/v1/persistentvolumes" satisfied by nonGoRestful
I0705 22:38:04.269643 18145 handler.go:153] kube-aggregator: GET "/apis/policy/v1beta1/poddisruptionbudgets" satisfied by nonGoRestful
I0705 22:38:04.269667 18145 pathrecorder.go:253] kube-aggregator: "/apis/policy/v1beta1/poddisruptionbudgets" satisfied by NotFoundHandler
I0705 22:38:04.269626 18145 handler.go:153] kube-aggregator: GET "/apis/apps/v1/replicasets" satisfied by nonGoRestful
I0705 22:38:04.269685 18145 handler.go:143] kube-apiserver: GET "/apis/policy/v1beta1/poddisruptionbudgets" satisfied by gorestful with webservice /apis/policy/v1beta1
I0705 22:38:04.269694 18145 pathrecorder.go:253] kube-aggregator: "/apis/apps/v1/replicasets" satisfied by NotFoundHandler
I0705 22:38:04.269711 18145 handler.go:153] kube-aggregator: GET "/api/v1/persistentvolumeclaims" satisfied by nonGoRestful
I0705 22:38:04.269754 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/persistentvolumeclaims" satisfied by NotFoundHandler
I0705 22:38:04.269755 18145 handler.go:143] kube-apiserver: GET "/apis/apps/v1/replicasets" satisfied by gorestful with webservice /apis/apps/v1
I0705 22:38:04.269648 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/persistentvolumes" satisfied by NotFoundHandler
I0705 22:38:04.269805 18145 handler.go:143] kube-apiserver: GET "/api/v1/persistentvolumes" satisfied by gorestful with webservice /api/v1
I0705 22:38:04.269807 18145 handler.go:153] kube-aggregator: GET "/apis/apps/v1/statefulsets" satisfied by nonGoRestful
I0705 22:38:04.269843 18145 pathrecorder.go:253] kube-aggregator: "/apis/apps/v1/statefulsets" satisfied by NotFoundHandler
I0705 22:38:04.269863 18145 handler.go:143] kube-apiserver: GET "/apis/apps/v1/statefulsets" satisfied by gorestful with webservice /apis/apps/v1
I0705 22:38:04.269740 18145 handler.go:153] kube-aggregator: GET "/apis/storage.k8s.io/v1/storageclasses" satisfied by nonGoRestful
I0705 22:38:04.269905 18145 pathrecorder.go:253] kube-aggregator: "/apis/storage.k8s.io/v1/storageclasses" satisfied by NotFoundHandler
I0705 22:38:04.269926 18145 handler.go:143] kube-apiserver: GET "/apis/storage.k8s.io/v1/storageclasses" satisfied by gorestful with webservice /apis/storage.k8s.io/v1
I0705 22:38:04.269501 18145 handler.go:153] kube-aggregator: GET "/api/v1/replicationcontrollers" satisfied by nonGoRestful
I0705 22:38:04.270002 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/replicationcontrollers" satisfied by NotFoundHandler
I0705 22:38:04.270029 18145 handler.go:143] kube-apiserver: GET "/api/v1/replicationcontrollers" satisfied by gorestful with webservice /api/v1
I0705 22:38:04.269615 18145 handler.go:153] kube-aggregator: GET "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by nonGoRestful
I0705 22:38:04.270116 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by NotFoundHandler
I0705 22:38:04.270137 18145 handler.go:143] kube-apiserver: GET "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by gorestful with webservice /api/v1
I0705 22:38:04.270197 18145 wrap.go:47] GET /api/v1/persistentvolumes?limit=500&resourceVersion=0: (896.994µs) 200 [kube-scheduler/v1.15.5 (linux/amd64) kubernetes/20c265f/scheduler 127.0.0.1:47384]
I0705 22:38:04.270317 18145 wrap.go:47] GET /apis/policy/v1beta1/poddisruptionbudgets?limit=500&resourceVersion=0: (810.468µs) 200 [kube-scheduler/v1.15.5 (linux/amd64) kubernetes/20c265f/scheduler 127.0.0.1:47382]
I0705 22:38:04.269636 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/nodes" satisfied by NotFoundHandler
I0705 22:38:04.270387 18145 handler.go:143] kube-apiserver: GET "/api/v1/nodes" satisfied by gorestful with webservice /api/v1
I0705 22:38:04.270408 18145 secure_serving.go:116] Serving securely on [::]:6443
I0705 22:38:04.269501 18145 handler.go:153] kube-aggregator: GET "/api/v1/services" satisfied by nonGoRestful
I0705 22:38:04.270438 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/services" satisfied by NotFoundHandler
I0705 22:38:04.270446 18145 apiservice_controller.go:94] Starting APIServiceRegistrationController
I0705 22:38:04.270455 18145 handler.go:143] kube-apiserver: GET "/api/v1/services" satisfied by gorestful with webservice /api/v1
I0705 22:38:04.270468 18145 cache.go:32] Waiting for caches to sync for APIServiceRegistrationController controller
I0705 22:38:04.270497 18145 wrap.go:47] GET /apis/storage.k8s.io/v1/storageclasses?limit=500&resourceVersion=0: (944.078µs) 200 [kube-scheduler/v1.15.5 (linux/amd64) kubernetes/20c265f/scheduler 127.0.0.1:47386]
I0705 22:38:04.270522 18145 crdregistration_controller.go:112] Starting crd-autoregister controller
I0705 22:38:04.270535 18145 controller_utils.go:1029] Waiting for caches to sync for crd-autoregister controller
I0705 22:38:04.270538 18145 available_controller.go:376] Starting AvailableConditionController
I0705 22:38:04.270559 18145 wrap.go:47] GET /api/v1/replicationcontrollers?limit=500&resourceVersion=0: (1.21442ms) 200 [kube-scheduler/v1.15.5 (linux/amd64) kubernetes/20c265f/scheduler 127.0.0.1:47388]
I0705 22:38:04.270572 18145 naming_controller.go:288] Starting NamingConditionController
I0705 22:38:04.270575 18145 establishing_controller.go:73] Starting EstablishingController
I0705 22:38:04.270652 18145 nonstructuralschema_controller.go:191] Starting NonStructuralSchemaConditionController
I0705 22:38:04.270550 18145 crd_finalizer.go:255] Starting CRDFinalizer
I0705 22:38:04.270509 18145 autoregister_controller.go:140] Starting autoregister controller
I0705 22:38:04.270683 18145 cache.go:32] Waiting for caches to sync for autoregister controller
I0705 22:38:04.270523 18145 discovery.go:214] Invalidating discovery information
I0705 22:38:04.270694 18145 wrap.go:47] GET /apis/apps/v1/statefulsets?limit=500&resourceVersion=0: (1.172166ms) 200 [kube-scheduler/v1.15.5 (linux/amd64) kubernetes/20c265f/scheduler 127.0.0.1:47392]
I0705 22:38:04.270730 18145 controller.go:81] Starting OpenAPI AggregationController
I0705 22:38:04.270745 18145 discovery.go:214] Invalidating discovery information
I0705 22:38:04.270567 18145 customresource_discovery_controller.go:208] Starting DiscoveryController
I0705 22:38:04.270566 18145 cache.go:32] Waiting for caches to sync for AvailableConditionController controller
I0705 22:38:04.270560 18145 controller.go:83] Starting OpenAPI controller
I0705 22:38:04.270815 18145 reflector.go:122] Starting reflector *v1.Node (10m0s) from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.269778 18145 handler.go:143] kube-apiserver: GET "/api/v1/persistentvolumeclaims" satisfied by gorestful with webservice /api/v1
I0705 22:38:04.270831 18145 reflector.go:160] Listing and watching *v1.Node from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.271226 18145 reflector.go:122] Starting reflector *v1.VolumeAttachment (10m0s) from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.271245 18145 wrap.go:47] GET /api/v1/nodes?limit=500&resourceVersion=0: (1.966293ms) 200 [kube-scheduler/v1.15.5 (linux/amd64) kubernetes/20c265f/scheduler 127.0.0.1:47378]
I0705 22:38:04.271268 18145 handler.go:153] kube-aggregator: GET "/apis/storage.k8s.io/v1/storageclasses" satisfied by nonGoRestful
I0705 22:38:04.271289 18145 pathrecorder.go:253] kube-aggregator: "/apis/storage.k8s.io/v1/storageclasses" satisfied by NotFoundHandler
I0705 22:38:04.271294 18145 reflector.go:122] Starting reflector *v1.ClusterRoleBinding (10m0s) from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.271313 18145 reflector.go:160] Listing and watching *v1.ClusterRoleBinding from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.271226 18145 reflector.go:122] Starting reflector *v1.Role (10m0s) from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.271330 18145 reflector.go:160] Listing and watching *v1.Role from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.271335 18145 wrap.go:47] GET /api/v1/services?limit=500&resourceVersion=0: (2.065372ms) 200 [kube-scheduler/v1.15.5 (linux/amd64) kubernetes/20c265f/scheduler 127.0.0.1:47380]
I0705 22:38:04.271277 18145 reflector.go:122] Starting reflector *v1.Service (10m0s) from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.271421 18145 reflector.go:160] Listing and watching *v1.Service from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.271299 18145 handler.go:143] kube-apiserver: GET "/apis/storage.k8s.io/v1/storageclasses" satisfied by gorestful with webservice /apis/storage.k8s.io/v1
I0705 22:38:04.271246 18145 reflector.go:160] Listing and watching *v1.VolumeAttachment from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.270926 18145 reflector.go:122] Starting reflector *v1.ClusterRole (10m0s) from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.271521 18145 reflector.go:160] Listing and watching *v1.ClusterRole from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.271547 18145 reflector.go:122] Starting reflector *v1.Namespace (10m0s) from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.271560 18145 reflector.go:160] Listing and watching *v1.Namespace from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.271568 18145 get.go:250] Starting watch for /apis/storage.k8s.io/v1/storageclasses, rv=75099443 labels= fields= timeout=5m1s
I0705 22:38:04.271011 18145 handler.go:153] kube-aggregator: GET "/api/v1/persistentvolumes" satisfied by nonGoRestful
I0705 22:38:04.271591 18145 reflector.go:122] Starting reflector *v1.StorageClass (10m0s) from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.271628 18145 reflector.go:160] Listing and watching *v1.StorageClass from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.270877 18145 reflector.go:122] Starting reflector *apiextensions.CustomResourceDefinition (5m0s) from k8s.io/apiextensions-apiserver/pkg/client/informers/internalversion/factory.go:117
I0705 22:38:04.271679 18145 reflector.go:160] Listing and watching *apiextensions.CustomResourceDefinition from k8s.io/apiextensions-apiserver/pkg/client/informers/internalversion/factory.go:117
I0705 22:38:04.271690 18145 reflector.go:122] Starting reflector *v1.ServiceAccount (10m0s) from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.271728 18145 reflector.go:160] Listing and watching *v1.ServiceAccount from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.271618 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/persistentvolumes" satisfied by NotFoundHandler
I0705 22:38:04.271772 18145 handler.go:143] kube-apiserver: GET "/api/v1/persistentvolumes" satisfied by gorestful with webservice /api/v1
I0705 22:38:04.271831 18145 reflector.go:122] Starting reflector *v1.LimitRange (10m0s) from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.271845 18145 reflector.go:122] Starting reflector *v1.RoleBinding (10m0s) from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.271870 18145 reflector.go:160] Listing and watching *v1.RoleBinding from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.271856 18145 reflector.go:160] Listing and watching *v1.LimitRange from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.271105 18145 wrap.go:47] GET /api/v1/persistentvolumeclaims?limit=500&resourceVersion=0: (1.59494ms) 200 [kube-scheduler/v1.15.5 (linux/amd64) kubernetes/20c265f/scheduler 127.0.0.1:47390]
I0705 22:38:04.272020 18145 get.go:250] Starting watch for /api/v1/persistentvolumes, rv=75099443 labels= fields= timeout=5m27s
I0705 22:38:04.271112 18145 reflector.go:122] Starting reflector *v1.PersistentVolume (10m0s) from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.271077 18145 reflector.go:122] Starting reflector *v1.Secret (10m0s) from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.272079 18145 handler.go:153] kube-aggregator: GET "/apis/apps/v1/statefulsets" satisfied by nonGoRestful
I0705 22:38:04.272104 18145 pathrecorder.go:253] kube-aggregator: "/apis/apps/v1/statefulsets" satisfied by NotFoundHandler
I0705 22:38:04.272086 18145 reflector.go:160] Listing and watching *v1.Secret from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.272125 18145 handler.go:143] kube-apiserver: GET "/apis/apps/v1/statefulsets" satisfied by gorestful with webservice /apis/apps/v1
I0705 22:38:04.271432 18145 reflector.go:122] Starting reflector *v1.Endpoints (10m0s) from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.272173 18145 reflector.go:160] Listing and watching *v1.Endpoints from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.271027 18145 handler.go:153] kube-aggregator: GET "/apis/policy/v1beta1/poddisruptionbudgets" satisfied by nonGoRestful
I0705 22:38:04.272219 18145 pathrecorder.go:253] kube-aggregator: "/apis/policy/v1beta1/poddisruptionbudgets" satisfied by NotFoundHandler
I0705 22:38:04.272236 18145 handler.go:143] kube-apiserver: GET "/apis/policy/v1beta1/poddisruptionbudgets" satisfied by gorestful with webservice /apis/policy/v1beta1
E0705 22:38:04.272283 18145 controller.go:148] Unable to remove old endpoints from kubernetes service: StorageError: key not found, Code: 1, Key: /registry/masterleases/10.129.173.93, ResourceVersion: 0, AdditionalErrorMsg:
I0705 22:38:04.271034 18145 reflector.go:122] Starting reflector *v1.ResourceQuota (10m0s) from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.272332 18145 get.go:250] Starting watch for /apis/apps/v1/statefulsets, rv=75099443 labels= fields= timeout=5m58s
I0705 22:38:04.272351 18145 reflector.go:160] Listing and watching *v1.ResourceQuota from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.272413 18145 wrap.go:47] GET /api/v1/namespaces/kube-system/endpoints/kube-controller-manager?timeout=10s: (2.904677ms) 200 [kube-controller-manager/v1.15.5 (linux/amd64) kubernetes/20c265f/leader-election 127.0.0.1:47734]
I0705 22:38:04.272069 18145 reflector.go:160] Listing and watching *v1.PersistentVolume from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.272410 18145 get.go:250] Starting watch for /apis/policy/v1beta1/poddisruptionbudgets, rv=75099443 labels= fields= timeout=6m16s
I0705 22:38:04.271906 18145 wrap.go:47] GET /api/v1/namespaces/kube-system/endpoints/kube-scheduler?timeout=10s: (2.535252ms) 200 [kube-scheduler/v1.15.5 (linux/amd64) kubernetes/20c265f/leader-election 127.0.0.1:47866]
I0705 22:38:04.270860 18145 reflector.go:122] Starting reflector *apiregistration.APIService (30s) from k8s.io/kube-aggregator/pkg/client/informers/internalversion/factory.go:117
I0705 22:38:04.271255 18145 handler.go:153] kube-aggregator: GET "/api/v1/replicationcontrollers" satisfied by nonGoRestful
I0705 22:38:04.272581 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/replicationcontrollers" satisfied by NotFoundHandler
I0705 22:38:04.272618 18145 handler.go:143] kube-apiserver: GET "/api/v1/replicationcontrollers" satisfied by gorestful with webservice /api/v1
I0705 22:38:04.272540 18145 reflector.go:160] Listing and watching *apiregistration.APIService from k8s.io/kube-aggregator/pkg/client/informers/internalversion/factory.go:117
I0705 22:38:04.272651 18145 handler.go:153] kube-aggregator: GET "/api/v1/services" satisfied by nonGoRestful
I0705 22:38:04.272689 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/services" satisfied by NotFoundHandler
I0705 22:38:04.272550 18145 handler.go:153] kube-aggregator: GET "/api/v1/nodes" satisfied by nonGoRestful
I0705 22:38:04.272736 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/nodes" satisfied by NotFoundHandler
I0705 22:38:04.272749 18145 handler.go:143] kube-apiserver: GET "/api/v1/nodes" satisfied by gorestful with webservice /api/v1
I0705 22:38:04.272763 18145 reflector.go:122] Starting reflector *v1.Pod (10m0s) from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.272781 18145 reflector.go:160] Listing and watching *v1.Pod from k8s.io/client-go/informers/factory.go:133
I0705 22:38:04.272707 18145 handler.go:153] kube-aggregator: GET "/api/v1/persistentvolumeclaims" satisfied by nonGoRestful
I0705 22:38:04.272807 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/persistentvolumeclaims" satisfied by NotFoundHandler
I0705 22:38:04.272709 18145 handler.go:143] kube-apiserver: GET "/api/v1/services" satisfied by gorestful with webservice /api/v1
I0705 22:38:04.272823 18145 handler.go:143] kube-apiserver: GET "/api/v1/persistentvolumeclaims" satisfied by gorestful with webservice /api/v1
I0705 22:38:04.272852 18145 get.go:250] Starting watch for /api/v1/replicationcontrollers, rv=75099443 labels= fields= timeout=9m32s
I0705 22:38:04.272924 18145 get.go:250] Starting watch for /api/v1/nodes, rv=75099443 labels= fields= timeout=5m3s
I0705 22:38:04.273029 18145 get.go:250] Starting watch for /api/v1/persistentvolumeclaims, rv=75099443 labels= fields= timeout=9m31s
I0705 22:38:04.273029 18145 get.go:250] Starting watch for /api/v1/services, rv=75099443 labels= fields= timeout=6m33s
I0705 22:38:04.274175 18145 wrap.go:47] GET /apis/apps/v1/replicasets?limit=500&resourceVersion=0: (4.688192ms) 200 [kube-scheduler/v1.15.5 (linux/amd64) kubernetes/20c265f/scheduler 127.0.0.1:47394]
I0705 22:38:04.276744 18145 handler.go:153] kube-aggregator: GET "/apis/apps/v1/replicasets" satisfied by nonGoRestful
I0705 22:38:04.276763 18145 pathrecorder.go:253] kube-aggregator: "/apis/apps/v1/replicasets" satisfied by NotFoundHandler
I0705 22:38:04.276773 18145 handler.go:143] kube-apiserver: GET "/apis/apps/v1/replicasets" satisfied by gorestful with webservice /apis/apps/v1
I0705 22:38:04.276915 18145 get.go:250] Starting watch for /apis/apps/v1/replicasets, rv=75099443 labels= fields= timeout=6m28s
I0705 22:38:04.278832 18145 wrap.go:47] GET /api/v1/pods?fieldSelector=status.phase%21%3DFailed%2Cstatus.phase%21%3DSucceeded&limit=500&resourceVersion=0: (9.407581ms) 200 [kube-scheduler/v1.15.5 (linux/amd64) kubernetes/20c265f/scheduler 127.0.0.1:47396]
I0705 22:38:04.289292 18145 handler.go:153] kube-aggregator: GET "/api/v1/pods" satisfied by nonGoRestful
I0705 22:38:04.289312 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/pods" satisfied by NotFoundHandler
I0705 22:38:04.289321 18145 handler.go:143] kube-apiserver: GET "/api/v1/pods" satisfied by gorestful with webservice /api/v1
I0705 22:38:04.289495 18145 get.go:250] Starting watch for /api/v1/pods, rv=75099443 labels= fields=status.phase!=Failed,status.phase!=Succeeded timeout=7m21s
I0705 22:38:05.268153 18145 controller.go:107] OpenAPI AggregationController: Processing item
I0705 22:38:05.268190 18145 controller.go:130] OpenAPI AggregationController: action for item : Nothing (removed from the queue).
I0705 22:38:05.268201 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000000
I0705 22:38:05.268208 18145 controller.go:130] OpenAPI AggregationController: action for item k8s_internal_local_delegation_chain_0000000000: Nothing (removed from the queue).
I0705 22:38:05.268215 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:05.268278 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:05.268310 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:05.268358 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:05.268389 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:05.268397 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:06.268539 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:06.268663 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:06.268687 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:06.268752 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:06.268776 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:06.268785 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:07.268914 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:07.269013 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:07.269030 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:07.269080 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:07.269105 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:07.269113 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:07.554461 18145 handler.go:153] kube-aggregator: GET "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by nonGoRestful
I0705 22:38:07.554491 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by NotFoundHandler
I0705 22:38:07.554501 18145 handler.go:143] kube-apiserver: GET "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by gorestful with webservice /api/v1
I0705 22:38:07.556815 18145 wrap.go:47] GET /api/v1/namespaces/kube-system/endpoints/kube-controller-manager?timeout=10s: (2.426905ms) 200 [kube-controller-manager/v1.15.5 (linux/amd64) kubernetes/20c265f/leader-election 127.0.0.1:47734]
I0705 22:38:08.269219 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:08.269327 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:08.269343 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:08.269394 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:08.269425 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:08.269434 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:08.419039 18145 handler.go:153] kube-aggregator: GET "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by nonGoRestful
I0705 22:38:08.419077 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by NotFoundHandler
I0705 22:38:08.419089 18145 handler.go:143] kube-apiserver: GET "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by gorestful with webservice /api/v1
I0705 22:38:08.421916 18145 wrap.go:47] GET /api/v1/namespaces/kube-system/endpoints/kube-scheduler?timeout=10s: (2.948807ms) 200 [kube-scheduler/v1.15.5 (linux/amd64) kubernetes/20c265f/leader-election 127.0.0.1:47866]
I0705 22:38:09.269557 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:09.269664 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:09.269680 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:09.269747 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:09.269778 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:09.269786 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:10.269881 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:10.269989 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:10.270004 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:10.270056 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:10.270083 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:10.270092 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:11.270200 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:11.270306 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:11.270321 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:11.270373 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:11.270398 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:11.270408 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:11.483133 18145 handler.go:153] kube-aggregator: GET "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by nonGoRestful
I0705 22:38:11.483166 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by NotFoundHandler
I0705 22:38:11.483178 18145 handler.go:143] kube-apiserver: GET "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by gorestful with webservice /api/v1
I0705 22:38:11.485580 18145 wrap.go:47] GET /api/v1/namespaces/kube-system/endpoints/kube-controller-manager?timeout=10s: (2.529963ms) 200 [kube-controller-manager/v1.15.5 (linux/amd64) kubernetes/20c265f/leader-election 127.0.0.1:47734]
I0705 22:38:11.598249 18145 handler.go:153] kube-aggregator: GET "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by nonGoRestful
I0705 22:38:11.598284 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by NotFoundHandler
I0705 22:38:11.598294 18145 handler.go:143] kube-apiserver: GET "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by gorestful with webservice /api/v1
I0705 22:38:11.601107 18145 wrap.go:47] GET /api/v1/namespaces/kube-system/endpoints/kube-scheduler?timeout=10s: (2.928152ms) 200 [kube-scheduler/v1.15.5 (linux/amd64) kubernetes/20c265f/leader-election 127.0.0.1:47866]
I0705 22:38:12.270550 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:12.270681 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:12.270698 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:12.270752 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:12.270801 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:12.270809 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:13.270887 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:13.270984 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:13.271000 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:13.271050 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:13.271074 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:13.271083 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:13.693554 18145 handler.go:153] kube-aggregator: GET "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by nonGoRestful
I0705 22:38:13.693619 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by NotFoundHandler
I0705 22:38:13.693637 18145 handler.go:143] kube-apiserver: GET "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by gorestful with webservice /api/v1
I0705 22:38:13.696146 18145 wrap.go:47] GET /api/v1/namespaces/kube-system/endpoints/kube-controller-manager?timeout=10s: (2.666525ms) 200 [kube-controller-manager/v1.15.5 (linux/amd64) kubernetes/20c265f/leader-election 127.0.0.1:47734]
I0705 22:38:14.271182 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:14.271290 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:14.271305 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:14.271356 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:14.271380 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:14.271398 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:14.380002 18145 handler.go:153] kube-aggregator: GET "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by nonGoRestful
I0705 22:38:14.380035 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by NotFoundHandler
I0705 22:38:14.380045 18145 handler.go:143] kube-apiserver: GET "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by gorestful with webservice /api/v1
I0705 22:38:14.382250 18145 wrap.go:47] GET /api/v1/namespaces/kube-system/endpoints/kube-scheduler?timeout=10s: (2.312715ms) 200 [kube-scheduler/v1.15.5 (linux/amd64) kubernetes/20c265f/leader-election 127.0.0.1:47866]
I0705 22:38:15.271510 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:15.271590 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:15.271616 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:15.271664 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:15.271688 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:15.271696 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:16.271827 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:16.271937 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:16.271980 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:16.272042 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:16.272065 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:16.272073 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:17.272204 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:17.272313 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:17.272329 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:17.272380 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:17.272405 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:17.272414 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:17.283099 18145 handler.go:153] kube-aggregator: GET "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by nonGoRestful
I0705 22:38:17.283123 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by NotFoundHandler
I0705 22:38:17.283133 18145 handler.go:143] kube-apiserver: GET "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by gorestful with webservice /api/v1
I0705 22:38:17.285196 18145 wrap.go:47] GET /api/v1/namespaces/kube-system/endpoints/kube-controller-manager?timeout=10s: (2.159257ms) 200 [kube-controller-manager/v1.15.5 (linux/amd64) kubernetes/20c265f/leader-election 127.0.0.1:47734]
I0705 22:38:17.870495 18145 handler.go:153] kube-aggregator: GET "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by nonGoRestful
I0705 22:38:17.870526 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by NotFoundHandler
I0705 22:38:17.870543 18145 handler.go:143] kube-apiserver: GET "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by gorestful with webservice /api/v1
I0705 22:38:17.873004 18145 wrap.go:47] GET /api/v1/namespaces/kube-system/endpoints/kube-scheduler?timeout=10s: (2.577282ms) 200 [kube-scheduler/v1.15.5 (linux/amd64) kubernetes/20c265f/leader-election 127.0.0.1:47866]
I0705 22:38:18.272560 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:18.272685 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:18.272701 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:18.272760 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:18.272786 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:18.272794 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:19.272924 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:19.273020 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:19.273035 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:19.273084 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:19.273106 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:19.273116 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:19.659566 18145 handler.go:153] kube-aggregator: GET "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by nonGoRestful
I0705 22:38:19.659613 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by NotFoundHandler
I0705 22:38:19.659624 18145 handler.go:143] kube-apiserver: GET "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by gorestful with webservice /api/v1
I0705 22:38:19.662463 18145 wrap.go:47] GET /api/v1/namespaces/kube-system/endpoints/kube-controller-manager?timeout=10s: (2.967004ms) 200 [kube-controller-manager/v1.15.5 (linux/amd64) kubernetes/20c265f/leader-election 127.0.0.1:47734]
I0705 22:38:20.273261 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:20.273367 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:20.273382 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:20.273429 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:20.273451 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:20.273459 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:21.273614 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:21.273740 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:21.273759 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:21.273840 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:21.273866 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:21.273878 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:22.126431 18145 handler.go:153] kube-aggregator: GET "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by nonGoRestful
I0705 22:38:22.126472 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by NotFoundHandler
I0705 22:38:22.126482 18145 handler.go:143] kube-apiserver: GET "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by gorestful with webservice /api/v1
I0705 22:38:22.129022 18145 wrap.go:47] GET /api/v1/namespaces/kube-system/endpoints/kube-scheduler?timeout=10s: (2.675659ms) 200 [kube-scheduler/v1.15.5 (linux/amd64) kubernetes/20c265f/leader-election 127.0.0.1:47866]
I0705 22:38:22.273990 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:22.274084 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:22.274097 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:22.274146 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:22.274168 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:22.274176 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:22.957210 18145 handler.go:153] kube-aggregator: GET "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by nonGoRestful
I0705 22:38:22.957246 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by NotFoundHandler
I0705 22:38:22.957255 18145 handler.go:143] kube-apiserver: GET "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by gorestful with webservice /api/v1
I0705 22:38:22.959473 18145 wrap.go:47] GET /api/v1/namespaces/kube-system/endpoints/kube-controller-manager?timeout=10s: (2.335823ms) 200 [kube-controller-manager/v1.15.5 (linux/amd64) kubernetes/20c265f/leader-election 127.0.0.1:47734]
I0705 22:38:23.274299 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:23.274407 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:23.274422 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:23.274471 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:23.274492 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:23.274500 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:24.274621 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:24.274734 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:24.274749 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:24.274801 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:24.274824 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:24.274832 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:24.618447 18145 handler.go:153] kube-aggregator: GET "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by nonGoRestful
I0705 22:38:24.618488 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by NotFoundHandler
I0705 22:38:24.618498 18145 handler.go:143] kube-apiserver: GET "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by gorestful with webservice /api/v1
I0705 22:38:24.621739 18145 wrap.go:47] GET /api/v1/namespaces/kube-system/endpoints/kube-scheduler?timeout=10s: (3.351212ms) 200 [kube-scheduler/v1.15.5 (linux/amd64) kubernetes/20c265f/leader-election 127.0.0.1:47866]
I0705 22:38:25.274963 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:25.275074 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:25.275092 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:25.275145 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:25.275181 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:25.275190 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:26.275293 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:26.275395 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:26.275410 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:26.275465 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:26.275488 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:26.275497 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:26.925578 18145 handler.go:153] kube-aggregator: GET "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by nonGoRestful
I0705 22:38:26.925641 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by NotFoundHandler
I0705 22:38:26.925652 18145 handler.go:143] kube-apiserver: GET "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by gorestful with webservice /api/v1
I0705 22:38:26.927894 18145 wrap.go:47] GET /api/v1/namespaces/kube-system/endpoints/kube-controller-manager?timeout=10s: (2.404426ms) 200 [kube-controller-manager/v1.15.5 (linux/amd64) kubernetes/20c265f/leader-election 127.0.0.1:47734]
I0705 22:38:27.275645 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:27.275777 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:27.275793 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:27.275846 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:27.275868 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:27.275877 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:28.276002 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:28.276107 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:28.276122 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:28.276172 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:28.276194 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:28.276203 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:28.664065 18145 handler.go:153] kube-aggregator: GET "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by nonGoRestful
I0705 22:38:28.664097 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by NotFoundHandler
I0705 22:38:28.664107 18145 handler.go:143] kube-apiserver: GET "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by gorestful with webservice /api/v1
I0705 22:38:28.666395 18145 wrap.go:47] GET /api/v1/namespaces/kube-system/endpoints/kube-scheduler?timeout=10s: (2.399236ms) 200 [kube-scheduler/v1.15.5 (linux/amd64) kubernetes/20c265f/leader-election 127.0.0.1:47866]
I0705 22:38:29.276334 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:29.276422 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:29.276436 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:29.276489 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:29.276522 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:29.276531 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:30.276644 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:30.276774 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:30.276790 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:30.276843 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:30.276868 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:30.276877 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:30.616203 18145 handler.go:153] kube-aggregator: GET "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by nonGoRestful
I0705 22:38:30.616236 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by NotFoundHandler
I0705 22:38:30.616246 18145 handler.go:143] kube-apiserver: GET "/api/v1/namespaces/kube-system/endpoints/kube-controller-manager" satisfied by gorestful with webservice /api/v1
I0705 22:38:30.618555 18145 wrap.go:47] GET /api/v1/namespaces/kube-system/endpoints/kube-controller-manager?timeout=10s: (2.432457ms) 200 [kube-controller-manager/v1.15.5 (linux/amd64) kubernetes/20c265f/leader-election 127.0.0.1:47734]
I0705 22:38:31.277014 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:31.277123 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:31.277138 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:31.277186 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:31.277207 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:31.277216 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:32.277331 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:32.277437 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:32.277452 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:32.277515 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:32.277542 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:32.277551 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:32.511091 18145 handler.go:153] kube-aggregator: GET "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by nonGoRestful
I0705 22:38:32.511128 18145 pathrecorder.go:253] kube-aggregator: "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by NotFoundHandler
I0705 22:38:32.511138 18145 handler.go:143] kube-apiserver: GET "/api/v1/namespaces/kube-system/endpoints/kube-scheduler" satisfied by gorestful with webservice /api/v1
I0705 22:38:32.513369 18145 wrap.go:47] GET /api/v1/namespaces/kube-system/endpoints/kube-scheduler?timeout=10s: (2.359242ms) 200 [kube-scheduler/v1.15.5 (linux/amd64) kubernetes/20c265f/leader-election 127.0.0.1:47866]
I0705 22:38:33.277687 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:33.277802 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:33.277817 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:33.277883 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:33.277906 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:33.277915 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:34.270818 18145 discovery.go:214] Invalidating discovery information
I0705 22:38:34.271625 18145 trace.go:81] Trace[916838159]: "Reflector k8s.io/client-go/informers/factory.go:133 ListAndWatch" (started: 2021-07-05 22:38:04.271124387 +0800 CST m=+3.485745147) (total time: 30.000454926s):
Trace[916838159]: [30.000454926s] [30.000454926s] END
E0705 22:38:34.271664 18145 reflector.go:125] k8s.io/client-go/informers/factory.go:133: Failed to list *v1.Node: Get https://localhost:6443/api/v1/nodes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:6443: i/o timeout
I0705 22:38:34.271749 18145 trace.go:81] Trace[1068818673]: "Reflector k8s.io/client-go/informers/factory.go:133 ListAndWatch" (started: 2021-07-05 22:38:04.271318857 +0800 CST m=+3.485939616) (total time: 30.000409266s):
Trace[1068818673]: [30.000409266s] [30.000409266s] END
I0705 22:38:34.271762 18145 trace.go:81] Trace[1453832293]: "Reflector k8s.io/client-go/informers/factory.go:133 ListAndWatch" (started: 2021-07-05 22:38:04.271338371 +0800 CST m=+3.485959213) (total time: 30.00039864s):
Trace[1453832293]: [30.00039864s] [30.00039864s] END
E0705 22:38:34.271784 18145 reflector.go:125] k8s.io/client-go/informers/factory.go:133: Failed to list *v1.Role: Get https://localhost:6443/apis/rbac.authorization.k8s.io/v1/roles?limit=500&resourceVersion=0: dial tcp 127.0.0.1:6443: i/o timeout
I0705 22:38:34.271764 18145 trace.go:81] Trace[1415476892]: "Reflector k8s.io/client-go/informers/factory.go:133 ListAndWatch" (started: 2021-07-05 22:38:04.271426707 +0800 CST m=+3.486047513) (total time: 30.000302054s):
Trace[1415476892]: [30.000302054s] [30.000302054s] END
E0705 22:38:34.271817 18145 reflector.go:125] k8s.io/client-go/informers/factory.go:133: Failed to list *v1.Service: Get https://localhost:6443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:6443: i/o timeout
E0705 22:38:34.271764 18145 reflector.go:125] k8s.io/client-go/informers/factory.go:133: Failed to list *v1.ClusterRoleBinding: Get https://localhost:6443/apis/rbac.authorization.k8s.io/v1/clusterrolebindings?limit=500&resourceVersion=0: dial tcp 127.0.0.1:6443: i/o timeout
I0705 22:38:34.271863 18145 trace.go:81] Trace[1943398002]: "Reflector k8s.io/client-go/informers/factory.go:133 ListAndWatch" (started: 2021-07-05 22:38:04.27156591 +0800 CST m=+3.486186674) (total time: 30.000282292s):
Trace[1943398002]: [30.000282292s] [30.000282292s] END
E0705 22:38:34.271873 18145 reflector.go:125] k8s.io/client-go/informers/factory.go:133: Failed to list *v1.Namespace: Get https://localhost:6443/api/v1/namespaces?limit=500&resourceVersion=0: dial tcp 127.0.0.1:6443: i/o timeout
I0705 22:38:34.271862 18145 trace.go:81] Trace[2040039466]: "Reflector k8s.io/client-go/informers/factory.go:133 ListAndWatch" (started: 2021-07-05 22:38:04.271529276 +0800 CST m=+3.486150039) (total time: 30.000321445s):
Trace[2040039466]: [30.000321445s] [30.000321445s] END
E0705 22:38:34.271884 18145 reflector.go:125] k8s.io/client-go/informers/factory.go:133: Failed to list *v1.ClusterRole: Get https://localhost:6443/apis/rbac.authorization.k8s.io/v1/clusterroles?limit=500&resourceVersion=0: dial tcp 127.0.0.1:6443: i/o timeout
I0705 22:38:34.271906 18145 trace.go:81] Trace[1482887971]: "Reflector k8s.io/client-go/informers/factory.go:133 ListAndWatch" (started: 2021-07-05 22:38:04.271448982 +0800 CST m=+3.486069767) (total time: 30.000436887s):
Trace[1482887971]: [30.000436887s] [30.000436887s] END
E0705 22:38:34.271923 18145 reflector.go:125] k8s.io/client-go/informers/factory.go:133: Failed to list *v1.VolumeAttachment: Get https://localhost:6443/apis/storage.k8s.io/v1/volumeattachments?limit=500&resourceVersion=0: dial tcp 127.0.0.1:6443: i/o timeout
I0705 22:38:34.271952 18145 trace.go:81] Trace[1817353754]: "Reflector k8s.io/client-go/informers/factory.go:133 ListAndWatch" (started: 2021-07-05 22:38:04.271633058 +0800 CST m=+3.486253814) (total time: 30.000305162s):
Trace[1817353754]: [30.000305162s] [30.000305162s] END
E0705 22:38:34.271961 18145 reflector.go:125] k8s.io/client-go/informers/factory.go:133: Failed to list *v1.StorageClass: Get https://localhost:6443/apis/storage.k8s.io/v1/storageclasses?limit=500&resourceVersion=0: dial tcp 127.0.0.1:6443: i/o timeout
I0705 22:38:34.272034 18145 trace.go:81] Trace[1163666912]: "Reflector k8s.io/apiextensions-apiserver/pkg/client/informers/internalversion/factory.go:117 ListAndWatch" (started: 2021-07-05 22:38:04.27168685 +0800 CST m=+3.486307613) (total time: 30.000322616s):
Trace[1163666912]: [30.000322616s] [30.000322616s] END
E0705 22:38:34.272081 18145 reflector.go:125] k8s.io/apiextensions-apiserver/pkg/client/informers/internalversion/factory.go:117: Failed to list *apiextensions.CustomResourceDefinition: Get https://localhost:6443/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions?limit=500&resourceVersion=0: dial tcp 127.0.0.1:6443: i/o timeout
I0705 22:38:34.272069 18145 trace.go:81] Trace[821616895]: "Reflector k8s.io/client-go/informers/factory.go:133 ListAndWatch" (started: 2021-07-05 22:38:04.271737097 +0800 CST m=+3.486357868) (total time: 30.0003199s):
Trace[821616895]: [30.0003199s] [30.0003199s] END
E0705 22:38:34.272096 18145 reflector.go:125] k8s.io/client-go/informers/factory.go:133: Failed to list *v1.ServiceAccount: Get https://localhost:6443/api/v1/serviceaccounts?limit=500&resourceVersion=0: dial tcp 127.0.0.1:6443: i/o timeout
I0705 22:38:34.272148 18145 trace.go:81] Trace[1495176524]: "Reflector k8s.io/client-go/informers/factory.go:133 ListAndWatch" (started: 2021-07-05 22:38:04.271923158 +0800 CST m=+3.486543922) (total time: 30.000215143s):
Trace[1495176524]: [30.000215143s] [30.000215143s] END
E0705 22:38:34.272162 18145 reflector.go:125] k8s.io/client-go/informers/factory.go:133: Failed to list *v1.LimitRange: Get https://localhost:6443/api/v1/limitranges?limit=500&resourceVersion=0: dial tcp 127.0.0.1:6443: i/o timeout
I0705 22:38:34.272297 18145 trace.go:81] Trace[1304373005]: "Reflector k8s.io/client-go/informers/factory.go:133 ListAndWatch" (started: 2021-07-05 22:38:04.271876523 +0800 CST m=+3.486497285) (total time: 30.000397052s):
Trace[1304373005]: [30.000397052s] [30.000397052s] END
E0705 22:38:34.272308 18145 reflector.go:125] k8s.io/client-go/informers/factory.go:133: Failed to list *v1.RoleBinding: Get https://localhost:6443/apis/rbac.authorization.k8s.io/v1/rolebindings?limit=500&resourceVersion=0: dial tcp 127.0.0.1:6443: i/o timeout
I0705 22:38:34.272401 18145 trace.go:81] Trace[2092646535]: "Reflector k8s.io/client-go/informers/factory.go:133 ListAndWatch" (started: 2021-07-05 22:38:04.27211704 +0800 CST m=+3.486737797) (total time: 30.000268938s):
Trace[2092646535]: [30.000268938s] [30.000268938s] END
E0705 22:38:34.272410 18145 reflector.go:125] k8s.io/client-go/informers/factory.go:133: Failed to list *v1.Secret: Get https://localhost:6443/api/v1/secrets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:6443: i/o timeout
I0705 22:38:34.272483 18145 trace.go:81] Trace[475362393]: "Reflector k8s.io/client-go/informers/factory.go:133 ListAndWatch" (started: 2021-07-05 22:38:04.272182677 +0800 CST m=+3.486803437) (total time: 30.000287299s):
Trace[475362393]: [30.000287299s] [30.000287299s] END
E0705 22:38:34.272490 18145 reflector.go:125] k8s.io/client-go/informers/factory.go:133: Failed to list *v1.Endpoints: Get https://localhost:6443/api/v1/endpoints?limit=500&resourceVersion=0: dial tcp 127.0.0.1:6443: i/o timeout
I0705 22:38:34.272688 18145 trace.go:81] Trace[990205759]: "Reflector k8s.io/client-go/informers/factory.go:133 ListAndWatch" (started: 2021-07-05 22:38:04.272462183 +0800 CST m=+3.487082944) (total time: 30.000213936s):
Trace[990205759]: [30.000213936s] [30.000213936s] END
E0705 22:38:34.272697 18145 reflector.go:125] k8s.io/client-go/informers/factory.go:133: Failed to list *v1.PersistentVolume: Get https://localhost:6443/api/v1/persistentvolumes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:6443: i/o timeout
I0705 22:38:34.272692 18145 trace.go:81] Trace[24141869]: "Reflector k8s.io/client-go/informers/factory.go:133 ListAndWatch" (started: 2021-07-05 22:38:04.27236239 +0800 CST m=+3.486983158) (total time: 30.000315126s):
Trace[24141869]: [30.000315126s] [30.000315126s] END
E0705 22:38:34.272707 18145 reflector.go:125] k8s.io/client-go/informers/factory.go:133: Failed to list *v1.ResourceQuota: Get https://localhost:6443/api/v1/resourcequotas?limit=500&resourceVersion=0: dial tcp 127.0.0.1:6443: i/o timeout
I0705 22:38:34.272982 18145 trace.go:81] Trace[868760541]: "Reflector k8s.io/kube-aggregator/pkg/client/informers/internalversion/factory.go:117 ListAndWatch" (started: 2021-07-05 22:38:04.272649159 +0800 CST m=+3.487269923) (total time: 30.000318724s):
Trace[868760541]: [30.000318724s] [30.000318724s] END
E0705 22:38:34.272991 18145 reflector.go:125] k8s.io/kube-aggregator/pkg/client/informers/internalversion/factory.go:117: Failed to list *apiregistration.APIService: Get https://localhost:6443/apis/apiregistration.k8s.io/v1/apiservices?limit=500&resourceVersion=0: dial tcp 127.0.0.1:6443: i/o timeout
I0705 22:38:34.273086 18145 trace.go:81] Trace[1379481655]: "Reflector k8s.io/client-go/informers/factory.go:133 ListAndWatch" (started: 2021-07-05 22:38:04.272785699 +0800 CST m=+3.487406462) (total time: 30.000282688s):
Trace[1379481655]: [30.000282688s] [30.000282688s] END
E0705 22:38:34.273100 18145 reflector.go:125] k8s.io/client-go/informers/factory.go:133: Failed to list *v1.Pod: Get https://localhost:6443/api/v1/pods?limit=500&resourceVersion=0: dial tcp 127.0.0.1:6443: i/o timeout
F0705 22:38:34.275033 18145 controller.go:157] Unable to perform initial IP allocation check: unable to refresh the service IP block: Get https://localhost:6443/api/v1/services: dial tcp 127.0.0.1:6443: i/o timeout
I0705 22:38:34.303248 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000001
I0705 22:38:34.341834 18145 handler.go:153] kube-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:34.341849 18145 pathrecorder.go:240] kube-apiserver: "/openapi/v2" satisfied by exact match
I0705 22:38:34.341904 18145 controller.go:105] OpenAPI AggregationController: Processing item k8s_internal_local_delegation_chain_0000000002
I0705 22:38:34.341926 18145 handler.go:153] apiextensions-apiserver: GET "/openapi/v2" satisfied by nonGoRestful
I0705 22:38:34.341934 18145 pathrecorder.go:240] apiextensions-apiserver: "/openapi/v2" satisfied by exact match

参考

CATALOG
  1. 1. 环境信息
  2. 2. 故障现象
  3. 3. 处理过程
    1. 3.1. etcd的错误
    2. 3.2. kube-apiserver
    3. 3.3. 启动异常时候的日志
  4. 4. 参考