-
Notifications
You must be signed in to change notification settings - Fork 0
/
acs-engineissue
5423 lines (5263 loc) · 937 KB
/
acs-engineissue
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
<!-- Thanks for filing an issue! Before hitting the button, please answer these questions. It's helpful to search the existing GitHub issues first. It's likely that another user has already reported the issue you're facing, or it's a known issue that we're already aware of-->
**Is this a request for help?**:
---
**Is this an ISSUE or FEATURE REQUEST?** (choose one):
Issue
---
**What version of acs-engine?**:
0.19.0
---
<!--
If this is a ISSUE, please:
- Fill in as much of the template below as you can. If you leave out
deployed the following model
{
"apiVersion": "vlabs",
"properties": {
"orchestratorProfile": {
"orchestratorType": "Kubernetes",
"orchestratorRelease": "1.10",
"kubernetesConfig": {
"networkPlugin": "kubenet"
}
},
"masterProfile": {
"count": 1,
"dnsPrefix": "wsc-k8s-win",
"vmSize": "Standard_D4_v3"
},
"agentPoolProfiles": [
{
"name": "windowspool1",
"count": 4,
"vmSize": "Standard_D2_v2",
"availabilityProfile": "VirtualMachineScaleSets",
"storageProfile": "ManagedDisks",
"osType": "Windows"
}
],
"windowsProfile": {
"adminUsername": "dinor",
"adminPassword": "Corp123!!!!!",
"imageVersion": "1709.0.20180524"
},
"linuxProfile": {
"adminUsername": "wscuser",
"ssh": {
"publicKeys": [
{
"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCz7gkqOUUUlCObjgevthzsfFEUGPxm/8+tQYqDXQ/Z0aCOB25cvSHepTWPb0fFJ8fCqp/+9mxJg8tRBphgzPAkPmoX1fEe05TPm3RQQiQiljZPiKhnxnDI9kCyPI/Fp7cmhklEDFN9aMy/0/3Jx87pIktS0KPC9U/WMrtmNr/0LeKva/0+NgvJkm3mcqAFBH3pBVsnVQrGObp7cHXVXZAas6mjhqsTLjs52T1OQkRtilZsjV9kjvD5qU9tfKRVFBLZGIsVZsCGN4+i3R0UfrCRG6EYqezLZMMf5B5jCugD68kEVPSbsccMVijPDbLWmqIlLX45 [email protected]"
}
]
}
},
"servicePrincipalProfile": {
"clientId": "%%%%%%",
"secret": "%%%%%%%%"
}
}
}
used one master deploy complete successfully
NAME STATUS ROLES AGE VERSION
31252acs000000 Ready <none> 23m v1.10.5
31252acs000001 Ready <none> 23m v1.10.5
31252acs000002 Ready <none> 23m v1.10.5
31252acs000003 Ready <none> 23m v1.10.5
k8s-master-31252362-0 Ready master 23m v1.10.5
deploying iis simple pod
{
"apiVersion": "v1",
"kind": "Pod",
"metadata": {
"name": "iis",
"labels": {
"name": "iis"
}
},
"spec": {
"containers": [
{
"name": "iis",
"image": "microsoft/iis:windowsservercore-1709",
"ports": [
{
"containerPort": 80
}
]
}
],
"nodeSelector": {
"beta.kubernetes.io/os": "windows"
}
}
}
deployment fails with /:
wscuser@k8s-master-31252362-0:~$ kubectl describe pods
Name: iis
Namespace: default
Node: 31252acs000003/10.240.0.7
Start Time: Mon, 02 Jul 2018 16:20:26 +0000
Labels: name=iis
Annotations: kubectl.kubernetes.io/last-applied-configuration={"apiVersion":"v1","kind":"Pod","metadata":{"annotations":{},"labels":{"name":"iis"},"name":"iis","namespace":"default"},"spec":{"containers":[{"image"...
Status: Pending
IP:
Containers:
iis:
Container ID:
Image: microsoft/iis:windowsservercore-1709
Image ID:
Port: 80/TCP
Host Port: 0/TCP
State: Waiting
Reason: ContainerCreating
Ready: False
Restart Count: 0
Environment: <none>
Mounts:
/var/run/secrets/kubernetes.io/serviceaccount from default-token-f6c67 (ro)
Conditions:
Type Status
Initialized True
Ready False
PodScheduled True
Volumes:
default-token-f6c67:
Type: Secret (a volume populated by a Secret)
SecretName: default-token-f6c67
Optional: false
QoS Class: BestEffort
Node-Selectors: beta.kubernetes.io/os=windows
Tolerations: node.kubernetes.io/not-ready:NoExecute for 300s
node.kubernetes.io/unreachable:NoExecute for 300s
Events:
Type Reason Age From Message
---- ------ ---- ---- -------
Normal Scheduled 12m default-scheduler Successfully assigned iis to 31252acs000003
Normal SuccessfulMountVolume 12m kubelet, 31252acs000003 MountVolume.SetUp succeeded for volume "default-token-f6c67"
Normal SandboxChanged 11m (x12 over 12m) kubelet, 31252acs000003 Pod sandbox changed, it will be killed and re-created.
Warning FailedCreatePodSandBox 2m (x139 over 12m) kubelet, 31252acs000003 Failed create pod sandbox: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
looking at the cni logs at the pod node i see the following ;/
start *********************************************************************************************
ontainernetworking/cni/pkg/skel.(*dispatcher).pluginMain(0xc042046240, 0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:173 +0x2a9
github.com/containernetworking/cni/pkg/skel.PluginMainWithError(0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:210 +0xf4
visualstudio.com/containernetworking/cni/cni.(*Plugin).Execute(0xc042068028, 0x631520, 0xc042044500, 0x0, 0xc04207fc20)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0xf9
main.main()
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/plugin/main.go:43 +0x35c
E0702 16:30:24.888232 3800 cni.go:259] Error adding network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:24.888232 3800 cni.go:227] Error while adding to cni network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:26.522372 3800 remote_runtime.go:92] RunPodSandbox from runtime service failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:26.522372 3800 kuberuntime_sandbox.go:54] CreatePodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:26.522372 3800 kuberuntime_manager.go:646] createPodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:26.522372 3800 pod_workers.go:186] Error syncing pod d3f75963-7e13-11e8-a6e8-000d3a36a486 ("iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)"), skipping: failed to "CreatePodSandbox" for "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" with CreatePodSandboxError: "CreatePodSandbox for pod \"iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)\" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod \"iis_default\" network: netplugin failed but error parsing its diagnostic message \"\": unexpected end of JSON input"
I0702 16:30:26.920372 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerDied", Data:"88997b6757a4796804c14f6a5747fc27ffc1767da05c0c1fe91d0edc84618d66"}
W0702 16:30:26.920372 3800 pod_container_deletor.go:77] Container "88997b6757a4796804c14f6a5747fc27ffc1767da05c0c1fe91d0edc84618d66" not found in pod's containers
I0702 16:30:27.222310 3800 kuberuntime_manager.go:403] No ready sandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" can be found. Need to start a new one
E0702 16:30:28.049944 3800 kubelet_network.go:225] Failed to ensure that nat chain KUBE-MARK-DROP exists: error creating chain "KUBE-MARK-DROP": executable file not found in %PATH%:
E0702 16:30:29.031168 3800 docker_sandbox.go:657] ResolvConfPath is empty.
E0702 16:30:29.040032 3800 helpers.go:739] eviction manager: failed to construct signal: "allocatableMemory.available" error: system container "pods" not found in metrics
W0702 16:30:29.040032 3800 helpers.go:812] eviction manager: no observation found for eviction signal nodefs.inodesFree
I0702 16:30:29.056167 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerStarted", Data:"23d6ff1989fe277af9e466262054944d9d732ac34ce5dd3c32a78fc43bc5505a"}
{"level":"debug","msg":"[cni-net] Plugin wcn-net version b9c3a1d-dirty.","time":"2018-07-02T16:30:29Z"}
{"level":"debug","msg":"[net] Network interface: {Index:13 MTU:1500 Name:vEthernet (Ethernet 3) HardwareAddr:00:0d:3a:36:aa:b4 Flags:up|broadcast|multicast} with IP addresses: [fe80::3c58:1b0:c6f2:43af/64 10.240.0.7/16]","time":"2018-07-02T16:30:29Z"}
{"level":"debug","msg":"[net] Network interface: {Index:1 MTU:-1 Name:Loopback Pseudo-Interface 1 HardwareAddr: Flags:up|loopback|multicast} with IP addresses: [::1/128 127.0.0.1/8]","time":"2018-07-02T16:30:29Z"}
{"level":"debug","msg":"[net] Network interface: {Index:2 MTU:1500 Name:vEthernet (nat) HardwareAddr:00:15:5d:95:9c:c6 Flags:up|broadcast|multicast} with IP addresses: [fe80::1cd:2ac0:72c7:89fb/64 172.31.64.1/20]","time":"2018-07-02T16:30:29Z"}
{"level":"debug","msg":"[cni-net] Plugin started.","time":"2018-07-02T16:30:29Z"}
{"level":"debug","msg":"[cni-net] Processing ADD command with args {ContainerID:23d6ff1989fe277af9e466262054944d9d732ac34ce5dd3c32a78fc43bc5505a Netns:none IfName:eth0 Args:IgnoreUnknown=1;K8S_POD_NAMESPACE=default;K8S_POD_NAME=iis;K8S_POD_INFRA_CONTAINER_ID=23d6ff1989fe277af9e466262054944d9d732ac34ce5dd3c32a78fc43bc5505a Path:/opt/wincni.exe/bin;c:\\k\\cni}.","time":"2018-07-02T16:30:29Z"}
{"level":"debug","msg":"[cni-net] Read network configuration \u0026{CniVersion:0.2.0 Name:l2bridge Type:wincni.exe Ipam:{Type: Environment:azure AddrSpace: Subnet:\u003cnone\u003e Address: QueryInterval: Routes:[{Dst:{IP:\u003cnil\u003e Mask:\u003cnil\u003e} GW:10.240.0.1}]} DNS:{Nameservers:[10.0.0.10] Domain: Search:[svc.cluster.local] Options:[]} RuntimeConfig:{PortMappings:[]} AdditionalArgs:[{Name:EndpointPolicy Value:[123 34 69 120 99 101 112 116 105 111 110 76 105 115 116 34 58 91 34 49 48 46 50 52 52 46 48 46 48 47 49 54 34 44 34 49 48 46 50 52 48 46 48 46 48 47 49 54 34 93 44 34 84 121 112 101 34 58 34 79 117 116 66 111 117 110 100 78 65 84 34 125]} {Name:EndpointPolicy Value:[123 34 68 101 115 116 105 110 97 116 105 111 110 80 114 101 102 105 120 34 58 34 49 48 46 48 46 48 46 48 47 49 54 34 44 34 78 101 101 100 69 110 99 97 112 34 58 116 114 117 101 44 34 84 121 112 101 34 58 34 82 79 85 84 69 34 125]}]}.","time":"2018-07-02T16:30:29Z"}
panic: runtime error: index out of range
goroutine 1 [running]:
visualstudio.com/containernetworking/cni/cni.(*NetworkConfig).GetNetworkInfo(0xc04204c140, 0x29)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/cni.go:175 +0x70e
visualstudio.com/containernetworking/cni/cni/network.(*netPlugin).Add(0xc042044500, 0xc042094070, 0x1, 0x0)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/network.go:108 +0x35b
visualstudio.com/containernetworking/cni/cni.(PluginApi).Add-fm(0xc042094070, 0xc04204bbc8, 0x5)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0x40
github.com/containernetworking/cni/pkg/skel.(*dispatcher).checkVersionAndCall(0xc042046240, 0xc042094070, 0x6311a0, 0xc0420c81e0, 0xc042065e78, 0x0, 0x41055f)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:162 +0x1a6
github.com/containernetworking/cni/pkg/skel.(*dispatcher).pluginMain(0xc042046240, 0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:173 +0x2a9
github.com/containernetworking/cni/pkg/skel.PluginMainWithError(0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:210 +0xf4
visualstudio.com/containernetworking/cni/cni.(*Plugin).Execute(0xc042068028, 0x631520, 0xc042044500, 0x0, 0xc04207fc20)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0xf9
main.main()
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/plugin/main.go:43 +0x35c
E0702 16:30:29.107168 3800 cni.go:259] Error adding network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:29.107168 3800 cni.go:227] Error while adding to cni network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:30.475050 3800 remote_runtime.go:92] RunPodSandbox from runtime service failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:30.475050 3800 kuberuntime_sandbox.go:54] CreatePodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:30.475050 3800 kuberuntime_manager.go:646] createPodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:30.476046 3800 pod_workers.go:186] Error syncing pod d3f75963-7e13-11e8-a6e8-000d3a36a486 ("iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)"), skipping: failed to "CreatePodSandbox" for "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" with CreatePodSandboxError: "CreatePodSandbox for pod \"iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)\" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod \"iis_default\" network: netplugin failed but error parsing its diagnostic message \"\": unexpected end of JSON input"
I0702 16:30:31.187507 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerDied", Data:"23d6ff1989fe277af9e466262054944d9d732ac34ce5dd3c32a78fc43bc5505a"}
W0702 16:30:31.187507 3800 pod_container_deletor.go:77] Container "23d6ff1989fe277af9e466262054944d9d732ac34ce5dd3c32a78fc43bc5505a" not found in pod's containers
I0702 16:30:31.488266 3800 kuberuntime_manager.go:403] No ready sandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" can be found. Need to start a new one
I0702 16:30:32.395285 3800 kubelet_node_status.go:491] Using Node Hostname from cloudprovider: "31252acs000003"
E0702 16:30:33.180258 3800 docker_sandbox.go:657] ResolvConfPath is empty.
I0702 16:30:33.196237 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerStarted", Data:"0d0324ba30f32c5bc605c1595673ce5887e023c5f0025b1c87e5d31418aa1e63"}
{"level":"debug","msg":"[cni-net] Plugin wcn-net version b9c3a1d-dirty.","time":"2018-07-02T16:30:33Z"}
{"level":"debug","msg":"[net] Network interface: {Index:13 MTU:1500 Name:vEthernet (Ethernet 3) HardwareAddr:00:0d:3a:36:aa:b4 Flags:up|broadcast|multicast} with IP addresses: [fe80::3c58:1b0:c6f2:43af/64 10.240.0.7/16]","time":"2018-07-02T16:30:33Z"}
{"level":"debug","msg":"[net] Network interface: {Index:1 MTU:-1 Name:Loopback Pseudo-Interface 1 HardwareAddr: Flags:up|loopback|multicast} with IP addresses: [::1/128 127.0.0.1/8]","time":"2018-07-02T16:30:33Z"}
{"level":"debug","msg":"[net] Network interface: {Index:2 MTU:1500 Name:vEthernet (nat) HardwareAddr:00:15:5d:95:9c:c6 Flags:up|broadcast|multicast} with IP addresses: [fe80::1cd:2ac0:72c7:89fb/64 172.31.64.1/20]","time":"2018-07-02T16:30:33Z"}
{"level":"debug","msg":"[cni-net] Plugin started.","time":"2018-07-02T16:30:33Z"}
{"level":"debug","msg":"[cni-net] Processing ADD command with args {ContainerID:0d0324ba30f32c5bc605c1595673ce5887e023c5f0025b1c87e5d31418aa1e63 Netns:none IfName:eth0 Args:IgnoreUnknown=1;K8S_POD_NAMESPACE=default;K8S_POD_NAME=iis;K8S_POD_INFRA_CONTAINER_ID=0d0324ba30f32c5bc605c1595673ce5887e023c5f0025b1c87e5d31418aa1e63 Path:/opt/wincni.exe/bin;c:\\k\\cni}.","time":"2018-07-02T16:30:33Z"}
{"level":"debug","msg":"[cni-net] Read network configuration \u0026{CniVersion:0.2.0 Name:l2bridge Type:wincni.exe Ipam:{Type: Environment:azure AddrSpace: Subnet:\u003cnone\u003e Address: QueryInterval: Routes:[{Dst:{IP:\u003cnil\u003e Mask:\u003cnil\u003e} GW:10.240.0.1}]} DNS:{Nameservers:[10.0.0.10] Domain: Search:[svc.cluster.local] Options:[]} RuntimeConfig:{PortMappings:[]} AdditionalArgs:[{Name:EndpointPolicy Value:[123 34 69 120 99 101 112 116 105 111 110 76 105 115 116 34 58 91 34 49 48 46 50 52 52 46 48 46 48 47 49 54 34 44 34 49 48 46 50 52 48 46 48 46 48 47 49 54 34 93 44 34 84 121 112 101 34 58 34 79 117 116 66 111 117 110 100 78 65 84 34 125]} {Name:EndpointPolicy Value:[123 34 68 101 115 116 105 110 97 116 105 111 110 80 114 101 102 105 120 34 58 34 49 48 46 48 46 48 46 48 47 49 54 34 44 34 78 101 101 100 69 110 99 97 112 34 58 116 114 117 101 44 34 84 121 112 101 34 58 34 82 79 85 84 69 34 125]}]}.","time":"2018-07-02T16:30:33Z"}
panic: runtime error: index out of range
goroutine 1 [running]:
visualstudio.com/containernetworking/cni/cni.(*NetworkConfig).GetNetworkInfo(0xc04204c140, 0x29)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/cni.go:175 +0x70e
visualstudio.com/containernetworking/cni/cni/network.(*netPlugin).Add(0xc042044500, 0xc042094070, 0x1, 0x0)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/network.go:108 +0x35b
visualstudio.com/containernetworking/cni/cni.(PluginApi).Add-fm(0xc042094070, 0xc04204bbc8, 0x5)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0x40
github.com/containernetworking/cni/pkg/skel.(*dispatcher).checkVersionAndCall(0xc042046240, 0xc042094070, 0x6311a0, 0xc0420c81e0, 0xc042065e78, 0x0, 0x41055f)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:162 +0x1a6
github.com/containernetworking/cni/pkg/skel.(*dispatcher).pluginMain(0xc042046240, 0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:173 +0x2a9
github.com/containernetworking/cni/pkg/skel.PluginMainWithError(0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:210 +0xf4
visualstudio.com/containernetworking/cni/cni.(*Plugin).Execute(0xc042068028, 0x631520, 0xc042044500, 0x0, 0xc04207fc20)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0xf9
main.main()
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/plugin/main.go:43 +0x35c
E0702 16:30:33.266246 3800 cni.go:259] Error adding network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:33.266246 3800 cni.go:227] Error while adding to cni network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:34.975764 3800 remote_runtime.go:92] RunPodSandbox from runtime service failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:34.975764 3800 kuberuntime_sandbox.go:54] CreatePodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:34.975764 3800 kuberuntime_manager.go:646] createPodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:34.975764 3800 pod_workers.go:186] Error syncing pod d3f75963-7e13-11e8-a6e8-000d3a36a486 ("iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)"), skipping: failed to "CreatePodSandbox" for "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" with CreatePodSandboxError: "CreatePodSandbox for pod \"iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)\" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod \"iis_default\" network: netplugin failed but error parsing its diagnostic message \"\": unexpected end of JSON input"
I0702 16:30:35.221056 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerDied", Data:"0d0324ba30f32c5bc605c1595673ce5887e023c5f0025b1c87e5d31418aa1e63"}
W0702 16:30:35.221056 3800 pod_container_deletor.go:77] Container "0d0324ba30f32c5bc605c1595673ce5887e023c5f0025b1c87e5d31418aa1e63" not found in pod's containers
I0702 16:30:35.521607 3800 kuberuntime_manager.go:403] No ready sandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" can be found. Need to start a new one
E0702 16:30:37.197489 3800 docker_sandbox.go:657] ResolvConfPath is empty.
I0702 16:30:37.221488 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerStarted", Data:"b2ad745788ecb8498075628b76af700888fe702e50a0a031e643e26d8b564738"}
{"level":"debug","msg":"[cni-net] Plugin wcn-net version b9c3a1d-dirty.","time":"2018-07-02T16:30:37Z"}
{"level":"debug","msg":"[net] Network interface: {Index:13 MTU:1500 Name:vEthernet (Ethernet 3) HardwareAddr:00:0d:3a:36:aa:b4 Flags:up|broadcast|multicast} with IP addresses: [fe80::3c58:1b0:c6f2:43af/64 10.240.0.7/16]","time":"2018-07-02T16:30:37Z"}
{"level":"debug","msg":"[net] Network interface: {Index:1 MTU:-1 Name:Loopback Pseudo-Interface 1 HardwareAddr: Flags:up|loopback|multicast} with IP addresses: [::1/128 127.0.0.1/8]","time":"2018-07-02T16:30:37Z"}
{"level":"debug","msg":"[net] Network interface: {Index:2 MTU:1500 Name:vEthernet (nat) HardwareAddr:00:15:5d:95:9c:c6 Flags:up|broadcast|multicast} with IP addresses: [fe80::1cd:2ac0:72c7:89fb/64 172.31.64.1/20]","time":"2018-07-02T16:30:37Z"}
{"level":"debug","msg":"[cni-net] Plugin started.","time":"2018-07-02T16:30:37Z"}
{"level":"debug","msg":"[cni-net] Processing ADD command with args {ContainerID:b2ad745788ecb8498075628b76af700888fe702e50a0a031e643e26d8b564738 Netns:none IfName:eth0 Args:IgnoreUnknown=1;K8S_POD_NAMESPACE=default;K8S_POD_NAME=iis;K8S_POD_INFRA_CONTAINER_ID=b2ad745788ecb8498075628b76af700888fe702e50a0a031e643e26d8b564738 Path:/opt/wincni.exe/bin;c:\\k\\cni}.","time":"2018-07-02T16:30:37Z"}
{"level":"debug","msg":"[cni-net] Read network configuration \u0026{CniVersion:0.2.0 Name:l2bridge Type:wincni.exe Ipam:{Type: Environment:azure AddrSpace: Subnet:\u003cnone\u003e Address: QueryInterval: Routes:[{Dst:{IP:\u003cnil\u003e Mask:\u003cnil\u003e} GW:10.240.0.1}]} DNS:{Nameservers:[10.0.0.10] Domain: Search:[svc.cluster.local] Options:[]} RuntimeConfig:{PortMappings:[]} AdditionalArgs:[{Name:EndpointPolicy Value:[123 34 69 120 99 101 112 116 105 111 110 76 105 115 116 34 58 91 34 49 48 46 50 52 52 46 48 46 48 47 49 54 34 44 34 49 48 46 50 52 48 46 48 46 48 47 49 54 34 93 44 34 84 121 112 101 34 58 34 79 117 116 66 111 117 110 100 78 65 84 34 125]} {Name:EndpointPolicy Value:[123 34 68 101 115 116 105 110 97 116 105 111 110 80 114 101 102 105 120 34 58 34 49 48 46 48 46 48 46 48 47 49 54 34 44 34 78 101 101 100 69 110 99 97 112 34 58 116 114 117 101 44 34 84 121 112 101 34 58 34 82 79 85 84 69 34 125]}]}.","time":"2018-07-02T16:30:37Z"}
panic: runtime error: index out of range
goroutine 1 [running]:
visualstudio.com/containernetworking/cni/cni.(*NetworkConfig).GetNetworkInfo(0xc04204c140, 0x29)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/cni.go:175 +0x70e
visualstudio.com/containernetworking/cni/cni/network.(*netPlugin).Add(0xc042044500, 0xc042094070, 0x1, 0x0)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/network.go:108 +0x35b
visualstudio.com/containernetworking/cni/cni.(PluginApi).Add-fm(0xc042094070, 0xc04204bbc8, 0x5)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0x40
github.com/containernetworking/cni/pkg/skel.(*dispatcher).checkVersionAndCall(0xc042046240, 0xc042094070, 0x6311a0, 0xc0420c81e0, 0xc042065e78, 0x0, 0x41055f)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:162 +0x1a6
github.com/containernetworking/cni/pkg/skel.(*dispatcher).pluginMain(0xc042046240, 0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:173 +0x2a9
github.com/containernetworking/cni/pkg/skel.PluginMainWithError(0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:210 +0xf4
visualstudio.com/containernetworking/cni/cni.(*Plugin).Execute(0xc042068028, 0x631520, 0xc042044500, 0x0, 0xc04207fc20)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0xf9
main.main()
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/plugin/main.go:43 +0x35c
E0702 16:30:37.277519 3800 cni.go:259] Error adding network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:37.277519 3800 cni.go:227] Error while adding to cni network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:38.664233 3800 remote_runtime.go:92] RunPodSandbox from runtime service failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:38.664233 3800 kuberuntime_sandbox.go:54] CreatePodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:38.665129 3800 kuberuntime_manager.go:646] createPodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:38.665129 3800 pod_workers.go:186] Error syncing pod d3f75963-7e13-11e8-a6e8-000d3a36a486 ("iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)"), skipping: failed to "CreatePodSandbox" for "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" with CreatePodSandboxError: "CreatePodSandbox for pod \"iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)\" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod \"iis_default\" network: netplugin failed but error parsing its diagnostic message \"\": unexpected end of JSON input"
E0702 16:30:39.057077 3800 helpers.go:739] eviction manager: failed to construct signal: "allocatableMemory.available" error: system container "pods" not found in metrics
W0702 16:30:39.057077 3800 helpers.go:812] eviction manager: no observation found for eviction signal nodefs.inodesFree
I0702 16:30:39.342646 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerDied", Data:"b2ad745788ecb8498075628b76af700888fe702e50a0a031e643e26d8b564738"}
W0702 16:30:39.342646 3800 pod_container_deletor.go:77] Container "b2ad745788ecb8498075628b76af700888fe702e50a0a031e643e26d8b564738" not found in pod's containers
I0702 16:30:39.644434 3800 kuberuntime_manager.go:403] No ready sandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" can be found. Need to start a new one
E0702 16:30:41.291016 3800 docker_sandbox.go:657] ResolvConfPath is empty.
I0702 16:30:41.314017 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerStarted", Data:"292ddd07914a294824569aca2a2bc023779c415aaedb3302824540b3de275695"}
{"level":"debug","msg":"[cni-net] Plugin wcn-net version b9c3a1d-dirty.","time":"2018-07-02T16:30:41Z"}
{"level":"debug","msg":"[net] Network interface: {Index:13 MTU:1500 Name:vEthernet (Ethernet 3) HardwareAddr:00:0d:3a:36:aa:b4 Flags:up|broadcast|multicast} with IP addresses: [fe80::3c58:1b0:c6f2:43af/64 10.240.0.7/16]","time":"2018-07-02T16:30:41Z"}
{"level":"debug","msg":"[net] Network interface: {Index:1 MTU:-1 Name:Loopback Pseudo-Interface 1 HardwareAddr: Flags:up|loopback|multicast} with IP addresses: [::1/128 127.0.0.1/8]","time":"2018-07-02T16:30:41Z"}
{"level":"debug","msg":"[net] Network interface: {Index:2 MTU:1500 Name:vEthernet (nat) HardwareAddr:00:15:5d:95:9c:c6 Flags:up|broadcast|multicast} with IP addresses: [fe80::1cd:2ac0:72c7:89fb/64 172.31.64.1/20]","time":"2018-07-02T16:30:41Z"}
{"level":"debug","msg":"[cni-net] Plugin started.","time":"2018-07-02T16:30:41Z"}
{"level":"debug","msg":"[cni-net] Processing ADD command with args {ContainerID:292ddd07914a294824569aca2a2bc023779c415aaedb3302824540b3de275695 Netns:none IfName:eth0 Args:IgnoreUnknown=1;K8S_POD_NAMESPACE=default;K8S_POD_NAME=iis;K8S_POD_INFRA_CONTAINER_ID=292ddd07914a294824569aca2a2bc023779c415aaedb3302824540b3de275695 Path:/opt/wincni.exe/bin;c:\\k\\cni}.","time":"2018-07-02T16:30:41Z"}
{"level":"debug","msg":"[cni-net] Read network configuration \u0026{CniVersion:0.2.0 Name:l2bridge Type:wincni.exe Ipam:{Type: Environment:azure AddrSpace: Subnet:\u003cnone\u003e Address: QueryInterval: Routes:[{Dst:{IP:\u003cnil\u003e Mask:\u003cnil\u003e} GW:10.240.0.1}]} DNS:{Nameservers:[10.0.0.10] Domain: Search:[svc.cluster.local] Options:[]} RuntimeConfig:{PortMappings:[]} AdditionalArgs:[{Name:EndpointPolicy Value:[123 34 69 120 99 101 112 116 105 111 110 76 105 115 116 34 58 91 34 49 48 46 50 52 52 46 48 46 48 47 49 54 34 44 34 49 48 46 50 52 48 46 48 46 48 47 49 54 34 93 44 34 84 121 112 101 34 58 34 79 117 116 66 111 117 110 100 78 65 84 34 125]} {Name:EndpointPolicy Value:[123 34 68 101 115 116 105 110 97 116 105 111 110 80 114 101 102 105 120 34 58 34 49 48 46 48 46 48 46 48 47 49 54 34 44 34 78 101 101 100 69 110 99 97 112 34 58 116 114 117 101 44 34 84 121 112 101 34 58 34 82 79 85 84 69 34 125]}]}.","time":"2018-07-02T16:30:41Z"}
panic: runtime error: index out of range
goroutine 1 [running]:
visualstudio.com/containernetworking/cni/cni.(*NetworkConfig).GetNetworkInfo(0xc04204c140, 0x29)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/cni.go:175 +0x70e
visualstudio.com/containernetworking/cni/cni/network.(*netPlugin).Add(0xc042044500, 0xc042094070, 0x1, 0x0)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/network.go:108 +0x35b
visualstudio.com/containernetworking/cni/cni.(PluginApi).Add-fm(0xc042094070, 0xc04204bbc8, 0x5)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0x40
github.com/containernetworking/cni/pkg/skel.(*dispatcher).checkVersionAndCall(0xc042046240, 0xc042094070, 0x6311a0, 0xc0420c81e0, 0xc042065e78, 0x0, 0x41055f)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:162 +0x1a6
github.com/containernetworking/cni/pkg/skel.(*dispatcher).pluginMain(0xc042046240, 0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:173 +0x2a9
github.com/containernetworking/cni/pkg/skel.PluginMainWithError(0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:210 +0xf4
visualstudio.com/containernetworking/cni/cni.(*Plugin).Execute(0xc042068028, 0x631520, 0xc042044500, 0x0, 0xc04207fc20)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0xf9
main.main()
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/plugin/main.go:43 +0x35c
E0702 16:30:41.377016 3800 cni.go:259] Error adding network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:41.377016 3800 cni.go:227] Error while adding to cni network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
I0702 16:30:42.415261 3800 kubelet_node_status.go:491] Using Node Hostname from cloudprovider: "31252acs000003"
E0702 16:30:42.804272 3800 remote_runtime.go:92] RunPodSandbox from runtime service failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:42.804272 3800 kuberuntime_sandbox.go:54] CreatePodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:42.804272 3800 kuberuntime_manager.go:646] createPodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:42.804272 3800 pod_workers.go:186] Error syncing pod d3f75963-7e13-11e8-a6e8-000d3a36a486 ("iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)"), skipping: failed to "CreatePodSandbox" for "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" with CreatePodSandboxError: "CreatePodSandbox for pod \"iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)\" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod \"iis_default\" network: netplugin failed but error parsing its diagnostic message \"\": unexpected end of JSON input"
I0702 16:30:43.456073 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerDied", Data:"292ddd07914a294824569aca2a2bc023779c415aaedb3302824540b3de275695"}
W0702 16:30:43.456073 3800 pod_container_deletor.go:77] Container "292ddd07914a294824569aca2a2bc023779c415aaedb3302824540b3de275695" not found in pod's containers
I0702 16:30:43.758641 3800 kuberuntime_manager.go:403] No ready sandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" can be found. Need to start a new one
E0702 16:30:45.447133 3800 docker_sandbox.go:657] ResolvConfPath is empty.
I0702 16:30:45.470133 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerStarted", Data:"12e59661ab5944200512ea5b84b5c151260e189a3ca612676a2396139cd5286c"}
{"level":"debug","msg":"[cni-net] Plugin wcn-net version b9c3a1d-dirty.","time":"2018-07-02T16:30:45Z"}
{"level":"debug","msg":"[net] Network interface: {Index:13 MTU:1500 Name:vEthernet (Ethernet 3) HardwareAddr:00:0d:3a:36:aa:b4 Flags:up|broadcast|multicast} with IP addresses: [fe80::3c58:1b0:c6f2:43af/64 10.240.0.7/16]","time":"2018-07-02T16:30:45Z"}
{"level":"debug","msg":"[net] Network interface: {Index:1 MTU:-1 Name:Loopback Pseudo-Interface 1 HardwareAddr: Flags:up|loopback|multicast} with IP addresses: [::1/128 127.0.0.1/8]","time":"2018-07-02T16:30:45Z"}
{"level":"debug","msg":"[net] Network interface: {Index:2 MTU:1500 Name:vEthernet (nat) HardwareAddr:00:15:5d:95:9c:c6 Flags:up|broadcast|multicast} with IP addresses: [fe80::1cd:2ac0:72c7:89fb/64 172.31.64.1/20]","time":"2018-07-02T16:30:45Z"}
{"level":"debug","msg":"[cni-net] Plugin started.","time":"2018-07-02T16:30:45Z"}
{"level":"debug","msg":"[cni-net] Processing ADD command with args {ContainerID:12e59661ab5944200512ea5b84b5c151260e189a3ca612676a2396139cd5286c Netns:none IfName:eth0 Args:IgnoreUnknown=1;K8S_POD_NAMESPACE=default;K8S_POD_NAME=iis;K8S_POD_INFRA_CONTAINER_ID=12e59661ab5944200512ea5b84b5c151260e189a3ca612676a2396139cd5286c Path:/opt/wincni.exe/bin;c:\\k\\cni}.","time":"2018-07-02T16:30:45Z"}
{"level":"debug","msg":"[cni-net] Read network configuration \u0026{CniVersion:0.2.0 Name:l2bridge Type:wincni.exe Ipam:{Type: Environment:azure AddrSpace: Subnet:\u003cnone\u003e Address: QueryInterval: Routes:[{Dst:{IP:\u003cnil\u003e Mask:\u003cnil\u003e} GW:10.240.0.1}]} DNS:{Nameservers:[10.0.0.10] Domain: Search:[svc.cluster.local] Options:[]} RuntimeConfig:{PortMappings:[]} AdditionalArgs:[{Name:EndpointPolicy Value:[123 34 69 120 99 101 112 116 105 111 110 76 105 115 116 34 58 91 34 49 48 46 50 52 52 46 48 46 48 47 49 54 34 44 34 49 48 46 50 52 48 46 48 46 48 47 49 54 34 93 44 34 84 121 112 101 34 58 34 79 117 116 66 111 117 110 100 78 65 84 34 125]} {Name:EndpointPolicy Value:[123 34 68 101 115 116 105 110 97 116 105 111 110 80 114 101 102 105 120 34 58 34 49 48 46 48 46 48 46 48 47 49 54 34 44 34 78 101 101 100 69 110 99 97 112 34 58 116 114 117 101 44 34 84 121 112 101 34 58 34 82 79 85 84 69 34 125]}]}.","time":"2018-07-02T16:30:45Z"}
panic: runtime error: index out of range
goroutine 1 [running]:
visualstudio.com/containernetworking/cni/cni.(*NetworkConfig).GetNetworkInfo(0xc04204c140, 0x29)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/cni.go:175 +0x70e
visualstudio.com/containernetworking/cni/cni/network.(*netPlugin).Add(0xc042044500, 0xc042094070, 0x1, 0x0)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/network.go:108 +0x35b
visualstudio.com/containernetworking/cni/cni.(PluginApi).Add-fm(0xc042094070, 0xc04204bbc8, 0x5)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0x40
github.com/containernetworking/cni/pkg/skel.(*dispatcher).checkVersionAndCall(0xc042046240, 0xc042094070, 0x6311a0, 0xc0420c81e0, 0xc042065e78, 0x0, 0x41055f)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:162 +0x1a6
github.com/containernetworking/cni/pkg/skel.(*dispatcher).pluginMain(0xc042046240, 0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:173 +0x2a9
github.com/containernetworking/cni/pkg/skel.PluginMainWithError(0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:210 +0xf4
visualstudio.com/containernetworking/cni/cni.(*Plugin).Execute(0xc042068028, 0x631520, 0xc042044500, 0x0, 0xc04207fc20)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0xf9
main.main()
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/plugin/main.go:43 +0x35c
E0702 16:30:45.528138 3800 cni.go:259] Error adding network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:45.528138 3800 cni.go:227] Error while adding to cni network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:47.318993 3800 remote_runtime.go:92] RunPodSandbox from runtime service failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:47.318993 3800 kuberuntime_sandbox.go:54] CreatePodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:47.318993 3800 kuberuntime_manager.go:646] createPodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:47.318993 3800 pod_workers.go:186] Error syncing pod d3f75963-7e13-11e8-a6e8-000d3a36a486 ("iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)"), skipping: failed to "CreatePodSandbox" for "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" with CreatePodSandboxError: "CreatePodSandbox for pod \"iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)\" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod \"iis_default\" network: netplugin failed but error parsing its diagnostic message \"\": unexpected end of JSON input"
I0702 16:30:47.496334 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerDied", Data:"12e59661ab5944200512ea5b84b5c151260e189a3ca612676a2396139cd5286c"}
W0702 16:30:47.496334 3800 pod_container_deletor.go:77] Container "12e59661ab5944200512ea5b84b5c151260e189a3ca612676a2396139cd5286c" not found in pod's containers
I0702 16:30:47.796955 3800 kuberuntime_manager.go:403] No ready sandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" can be found. Need to start a new one
E0702 16:30:49.636351 3800 docker_sandbox.go:657] ResolvConfPath is empty.
E0702 16:30:49.643356 3800 helpers.go:739] eviction manager: failed to construct signal: "allocatableMemory.available" error: system container "pods" not found in metrics
W0702 16:30:49.643356 3800 helpers.go:812] eviction manager: no observation found for eviction signal nodefs.inodesFree
{"level":"debug","msg":"[cni-net] Plugin wcn-net version b9c3a1d-dirty.","time":"2018-07-02T16:30:49Z"}
{"level":"debug","msg":"[net] Network interface: {Index:13 MTU:1500 Name:vEthernet (Ethernet 3) HardwareAddr:00:0d:3a:36:aa:b4 Flags:up|broadcast|multicast} with IP addresses: [fe80::3c58:1b0:c6f2:43af/64 10.240.0.7/16]","time":"2018-07-02T16:30:49Z"}
{"level":"debug","msg":"[net] Network interface: {Index:1 MTU:-1 Name:Loopback Pseudo-Interface 1 HardwareAddr: Flags:up|loopback|multicast} with IP addresses: [::1/128 127.0.0.1/8]","time":"2018-07-02T16:30:49Z"}
{"level":"debug","msg":"[net] Network interface: {Index:2 MTU:1500 Name:vEthernet (nat) HardwareAddr:00:15:5d:95:9c:c6 Flags:up|broadcast|multicast} with IP addresses: [fe80::1cd:2ac0:72c7:89fb/64 172.31.64.1/20]","time":"2018-07-02T16:30:49Z"}
{"level":"debug","msg":"[cni-net] Plugin started.","time":"2018-07-02T16:30:49Z"}
{"level":"debug","msg":"[cni-net] Processing ADD command with args {ContainerID:373e42dfdd23cb3042e914307db7a517ba5875994308ae32479cef0c365ee678 Netns:none IfName:eth0 Args:IgnoreUnknown=1;K8S_POD_NAMESPACE=default;K8S_POD_NAME=iis;K8S_POD_INFRA_CONTAINER_ID=373e42dfdd23cb3042e914307db7a517ba5875994308ae32479cef0c365ee678 Path:/opt/wincni.exe/bin;c:\\k\\cni}.","time":"2018-07-02T16:30:49Z"}
{"level":"debug","msg":"[cni-net] Read network configuration \u0026{CniVersion:0.2.0 Name:l2bridge Type:wincni.exe Ipam:{Type: Environment:azure AddrSpace: Subnet:\u003cnone\u003e Address: QueryInterval: Routes:[{Dst:{IP:\u003cnil\u003e Mask:\u003cnil\u003e} GW:10.240.0.1}]} DNS:{Nameservers:[10.0.0.10] Domain: Search:[svc.cluster.local] Options:[]} RuntimeConfig:{PortMappings:[]} AdditionalArgs:[{Name:EndpointPolicy Value:[123 34 69 120 99 101 112 116 105 111 110 76 105 115 116 34 58 91 34 49 48 46 50 52 52 46 48 46 48 47 49 54 34 44 34 49 48 46 50 52 48 46 48 46 48 47 49 54 34 93 44 34 84 121 112 101 34 58 34 79 117 116 66 111 117 110 100 78 65 84 34 125]} {Name:EndpointPolicy Value:[123 34 68 101 115 116 105 110 97 116 105 111 110 80 114 101 102 105 120 34 58 34 49 48 46 48 46 48 46 48 47 49 54 34 44 34 78 101 101 100 69 110 99 97 112 34 58 116 114 117 101 44 34 84 121 112 101 34 58 34 82 79 85 84 69 34 125]}]}.","time":"2018-07-02T16:30:49Z"}
panic: runtime error: index out of range
goroutine 1 [running]:
visualstudio.com/containernetworking/cni/cni.(*NetworkConfig).GetNetworkInfo(0xc04204c140, 0x29)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/cni.go:175 +0x70e
visualstudio.com/containernetworking/cni/cni/network.(*netPlugin).Add(0xc042044500, 0xc042094070, 0x1, 0x0)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/network.go:108 +0x35b
visualstudio.com/containernetworking/cni/cni.(PluginApi).Add-fm(0xc042094070, 0xc04204bbc8, 0x5)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0x40
github.com/containernetworking/cni/pkg/skel.(*dispatcher).checkVersionAndCall(0xc042046240, 0xc042094070, 0x6311a0, 0xc0420c81e0, 0xc042065e78, 0x0, 0x41055f)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:162 +0x1a6
github.com/containernetworking/cni/pkg/skel.(*dispatcher).pluginMain(0xc042046240, 0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:173 +0x2a9
github.com/containernetworking/cni/pkg/skel.PluginMainWithError(0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:210 +0xf4
visualstudio.com/containernetworking/cni/cni.(*Plugin).Execute(0xc042068028, 0x631520, 0xc042044500, 0x0, 0xc04207fc20)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0xf9
main.main()
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/plugin/main.go:43 +0x35c
E0702 16:30:49.728352 3800 cni.go:259] Error adding network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:49.728352 3800 cni.go:227] Error while adding to cni network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:49.967882 3800 kuberuntime_manager.go:859] PodSandboxStatus of sandbox "e6cc9a6e4b96fc7f95f983aa426ee67a252c20ac00c15f4d0d17805ea9269125" for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" error: rpc error: code = Unknown desc = Error: No such container: e6cc9a6e4b96fc7f95f983aa426ee67a252c20ac00c15f4d0d17805ea9269125
E0702 16:30:49.967882 3800 generic.go:241] PLEG: Ignoring events for pod iis/default: rpc error: code = Unknown desc = Error: No such container: e6cc9a6e4b96fc7f95f983aa426ee67a252c20ac00c15f4d0d17805ea9269125
E0702 16:30:51.225751 3800 remote_runtime.go:92] RunPodSandbox from runtime service failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:51.225751 3800 kuberuntime_sandbox.go:54] CreatePodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:51.225751 3800 kuberuntime_manager.go:646] createPodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:51.225751 3800 pod_workers.go:186] Error syncing pod d3f75963-7e13-11e8-a6e8-000d3a36a486 ("iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)"), skipping: failed to "CreatePodSandbox" for "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" with CreatePodSandboxError: "CreatePodSandbox for pod \"iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)\" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod \"iis_default\" network: netplugin failed but error parsing its diagnostic message \"\": unexpected end of JSON input"
I0702 16:30:51.229754 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerDied", Data:"373e42dfdd23cb3042e914307db7a517ba5875994308ae32479cef0c365ee678"}
W0702 16:30:51.229754 3800 pod_container_deletor.go:77] Container "373e42dfdd23cb3042e914307db7a517ba5875994308ae32479cef0c365ee678" not found in pod's containers
I0702 16:30:51.530420 3800 kuberuntime_manager.go:403] No ready sandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" can be found. Need to start a new one
I0702 16:30:52.445458 3800 kubelet_node_status.go:491] Using Node Hostname from cloudprovider: "31252acs000003"
E0702 16:30:53.477791 3800 docker_sandbox.go:657] ResolvConfPath is empty.
I0702 16:30:53.484791 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerStarted", Data:"38be0c61b74b4305f10daba50c63eb264c4a51ad0255846d3eb5cb199a2f0e2c"}
{"level":"debug","msg":"[cni-net] Plugin wcn-net version b9c3a1d-dirty.","time":"2018-07-02T16:30:53Z"}
{"level":"debug","msg":"[net] Network interface: {Index:13 MTU:1500 Name:vEthernet (Ethernet 3) HardwareAddr:00:0d:3a:36:aa:b4 Flags:up|broadcast|multicast} with IP addresses: [fe80::3c58:1b0:c6f2:43af/64 10.240.0.7/16]","time":"2018-07-02T16:30:53Z"}
{"level":"debug","msg":"[net] Network interface: {Index:1 MTU:-1 Name:Loopback Pseudo-Interface 1 HardwareAddr: Flags:up|loopback|multicast} with IP addresses: [::1/128 127.0.0.1/8]","time":"2018-07-02T16:30:53Z"}
{"level":"debug","msg":"[net] Network interface: {Index:2 MTU:1500 Name:vEthernet (nat) HardwareAddr:00:15:5d:95:9c:c6 Flags:up|broadcast|multicast} with IP addresses: [fe80::1cd:2ac0:72c7:89fb/64 172.31.64.1/20]","time":"2018-07-02T16:30:53Z"}
{"level":"debug","msg":"[cni-net] Plugin started.","time":"2018-07-02T16:30:53Z"}
{"level":"debug","msg":"[cni-net] Processing ADD command with args {ContainerID:38be0c61b74b4305f10daba50c63eb264c4a51ad0255846d3eb5cb199a2f0e2c Netns:none IfName:eth0 Args:IgnoreUnknown=1;K8S_POD_NAMESPACE=default;K8S_POD_NAME=iis;K8S_POD_INFRA_CONTAINER_ID=38be0c61b74b4305f10daba50c63eb264c4a51ad0255846d3eb5cb199a2f0e2c Path:/opt/wincni.exe/bin;c:\\k\\cni}.","time":"2018-07-02T16:30:53Z"}
{"level":"debug","msg":"[cni-net] Read network configuration \u0026{CniVersion:0.2.0 Name:l2bridge Type:wincni.exe Ipam:{Type: Environment:azure AddrSpace: Subnet:\u003cnone\u003e Address: QueryInterval: Routes:[{Dst:{IP:\u003cnil\u003e Mask:\u003cnil\u003e} GW:10.240.0.1}]} DNS:{Nameservers:[10.0.0.10] Domain: Search:[svc.cluster.local] Options:[]} RuntimeConfig:{PortMappings:[]} AdditionalArgs:[{Name:EndpointPolicy Value:[123 34 69 120 99 101 112 116 105 111 110 76 105 115 116 34 58 91 34 49 48 46 50 52 52 46 48 46 48 47 49 54 34 44 34 49 48 46 50 52 48 46 48 46 48 47 49 54 34 93 44 34 84 121 112 101 34 58 34 79 117 116 66 111 117 110 100 78 65 84 34 125]} {Name:EndpointPolicy Value:[123 34 68 101 115 116 105 110 97 116 105 111 110 80 114 101 102 105 120 34 58 34 49 48 46 48 46 48 46 48 47 49 54 34 44 34 78 101 101 100 69 110 99 97 112 34 58 116 114 117 101 44 34 84 121 112 101 34 58 34 82 79 85 84 69 34 125]}]}.","time":"2018-07-02T16:30:53Z"}
panic: runtime error: index out of range
goroutine 1 [running]:
visualstudio.com/containernetworking/cni/cni.(*NetworkConfig).GetNetworkInfo(0xc04204c140, 0x29)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/cni.go:175 +0x70e
visualstudio.com/containernetworking/cni/cni/network.(*netPlugin).Add(0xc042044500, 0xc042094070, 0x1, 0x0)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/network.go:108 +0x35b
visualstudio.com/containernetworking/cni/cni.(PluginApi).Add-fm(0xc042094070, 0xc04204bbc8, 0x5)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0x40
github.com/containernetworking/cni/pkg/skel.(*dispatcher).checkVersionAndCall(0xc042046240, 0xc042094070, 0x6311a0, 0xc0420c81e0, 0xc042065e78, 0x0, 0x41055f)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:162 +0x1a6
github.com/containernetworking/cni/pkg/skel.(*dispatcher).pluginMain(0xc042046240, 0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:173 +0x2a9
github.com/containernetworking/cni/pkg/skel.PluginMainWithError(0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:210 +0xf4
visualstudio.com/containernetworking/cni/cni.(*Plugin).Execute(0xc042068028, 0x631520, 0xc042044500, 0x0, 0xc04207fc20)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0xf9
main.main()
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/plugin/main.go:43 +0x35c
E0702 16:30:53.554413 3800 cni.go:259] Error adding network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:53.554413 3800 cni.go:227] Error while adding to cni network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:55.007255 3800 remote_runtime.go:92] RunPodSandbox from runtime service failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:55.007255 3800 kuberuntime_sandbox.go:54] CreatePodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:55.007255 3800 kuberuntime_manager.go:646] createPodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:55.007255 3800 pod_workers.go:186] Error syncing pod d3f75963-7e13-11e8-a6e8-000d3a36a486 ("iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)"), skipping: failed to "CreatePodSandbox" for "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" with CreatePodSandboxError: "CreatePodSandbox for pod \"iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)\" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod \"iis_default\" network: netplugin failed but error parsing its diagnostic message \"\": unexpected end of JSON input"
I0702 16:30:55.493017 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerDied", Data:"38be0c61b74b4305f10daba50c63eb264c4a51ad0255846d3eb5cb199a2f0e2c"}
W0702 16:30:55.494021 3800 pod_container_deletor.go:77] Container "38be0c61b74b4305f10daba50c63eb264c4a51ad0255846d3eb5cb199a2f0e2c" not found in pod's containers
I0702 16:30:55.859858 3800 kuberuntime_manager.go:403] No ready sandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" can be found. Need to start a new one
E0702 16:30:57.571509 3800 docker_sandbox.go:657] ResolvConfPath is empty.
I0702 16:30:57.579512 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerStarted", Data:"c9f17da72e19b37016c591d8c226431b1d692b28195ca0418da47ffc237ac21e"}
{"level":"debug","msg":"[cni-net] Plugin wcn-net version b9c3a1d-dirty.","time":"2018-07-02T16:30:57Z"}
{"level":"debug","msg":"[net] Network interface: {Index:13 MTU:1500 Name:vEthernet (Ethernet 3) HardwareAddr:00:0d:3a:36:aa:b4 Flags:up|broadcast|multicast} with IP addresses: [fe80::3c58:1b0:c6f2:43af/64 10.240.0.7/16]","time":"2018-07-02T16:30:57Z"}
{"level":"debug","msg":"[net] Network interface: {Index:1 MTU:-1 Name:Loopback Pseudo-Interface 1 HardwareAddr: Flags:up|loopback|multicast} with IP addresses: [::1/128 127.0.0.1/8]","time":"2018-07-02T16:30:57Z"}
{"level":"debug","msg":"[net] Network interface: {Index:2 MTU:1500 Name:vEthernet (nat) HardwareAddr:00:15:5d:95:9c:c6 Flags:up|broadcast|multicast} with IP addresses: [fe80::1cd:2ac0:72c7:89fb/64 172.31.64.1/20]","time":"2018-07-02T16:30:57Z"}
{"level":"debug","msg":"[cni-net] Plugin started.","time":"2018-07-02T16:30:57Z"}
{"level":"debug","msg":"[cni-net] Processing ADD command with args {ContainerID:c9f17da72e19b37016c591d8c226431b1d692b28195ca0418da47ffc237ac21e Netns:none IfName:eth0 Args:IgnoreUnknown=1;K8S_POD_NAMESPACE=default;K8S_POD_NAME=iis;K8S_POD_INFRA_CONTAINER_ID=c9f17da72e19b37016c591d8c226431b1d692b28195ca0418da47ffc237ac21e Path:/opt/wincni.exe/bin;c:\\k\\cni}.","time":"2018-07-02T16:30:57Z"}
{"level":"debug","msg":"[cni-net] Read network configuration \u0026{CniVersion:0.2.0 Name:l2bridge Type:wincni.exe Ipam:{Type: Environment:azure AddrSpace: Subnet:\u003cnone\u003e Address: QueryInterval: Routes:[{Dst:{IP:\u003cnil\u003e Mask:\u003cnil\u003e} GW:10.240.0.1}]} DNS:{Nameservers:[10.0.0.10] Domain: Search:[svc.cluster.local] Options:[]} RuntimeConfig:{PortMappings:[]} AdditionalArgs:[{Name:EndpointPolicy Value:[123 34 69 120 99 101 112 116 105 111 110 76 105 115 116 34 58 91 34 49 48 46 50 52 52 46 48 46 48 47 49 54 34 44 34 49 48 46 50 52 48 46 48 46 48 47 49 54 34 93 44 34 84 121 112 101 34 58 34 79 117 116 66 111 117 110 100 78 65 84 34 125]} {Name:EndpointPolicy Value:[123 34 68 101 115 116 105 110 97 116 105 111 110 80 114 101 102 105 120 34 58 34 49 48 46 48 46 48 46 48 47 49 54 34 44 34 78 101 101 100 69 110 99 97 112 34 58 116 114 117 101 44 34 84 121 112 101 34 58 34 82 79 85 84 69 34 125]}]}.","time":"2018-07-02T16:30:57Z"}
panic: runtime error: index out of range
goroutine 1 [running]:
visualstudio.com/containernetworking/cni/cni.(*NetworkConfig).GetNetworkInfo(0xc04204c140, 0x29)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/cni.go:175 +0x70e
visualstudio.com/containernetworking/cni/cni/network.(*netPlugin).Add(0xc042044500, 0xc042094070, 0x1, 0x0)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/network.go:108 +0x35b
visualstudio.com/containernetworking/cni/cni.(PluginApi).Add-fm(0xc042094070, 0xc04204bbc8, 0x5)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0x40
github.com/containernetworking/cni/pkg/skel.(*dispatcher).checkVersionAndCall(0xc042046240, 0xc042094070, 0x6311a0, 0xc0420c81e0, 0xc042065e78, 0x0, 0x41055f)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:162 +0x1a6
github.com/containernetworking/cni/pkg/skel.(*dispatcher).pluginMain(0xc042046240, 0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:173 +0x2a9
github.com/containernetworking/cni/pkg/skel.PluginMainWithError(0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:210 +0xf4
visualstudio.com/containernetworking/cni/cni.(*Plugin).Execute(0xc042068028, 0x631520, 0xc042044500, 0x0, 0xc04207fc20)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0xf9
main.main()
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/plugin/main.go:43 +0x35c
E0702 16:30:57.649536 3800 cni.go:259] Error adding network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:57.649536 3800 cni.go:227] Error while adding to cni network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:59.100904 3800 remote_runtime.go:92] RunPodSandbox from runtime service failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:59.100904 3800 kuberuntime_sandbox.go:54] CreatePodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:59.101922 3800 kuberuntime_manager.go:646] createPodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:30:59.101922 3800 pod_workers.go:186] Error syncing pod d3f75963-7e13-11e8-a6e8-000d3a36a486 ("iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)"), skipping: failed to "CreatePodSandbox" for "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" with CreatePodSandboxError: "CreatePodSandbox for pod \"iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)\" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod \"iis_default\" network: netplugin failed but error parsing its diagnostic message \"\": unexpected end of JSON input"
E0702 16:30:59.729291 3800 helpers.go:739] eviction manager: failed to construct signal: "allocatableMemory.available" error: system container "pods" not found in metrics
W0702 16:30:59.729291 3800 helpers.go:812] eviction manager: no observation found for eviction signal nodefs.inodesFree
I0702 16:30:59.732290 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerDied", Data:"c9f17da72e19b37016c591d8c226431b1d692b28195ca0418da47ffc237ac21e"}
W0702 16:30:59.732290 3800 pod_container_deletor.go:77] Container "c9f17da72e19b37016c591d8c226431b1d692b28195ca0418da47ffc237ac21e" not found in pod's containers
I0702 16:31:00.033770 3800 kuberuntime_manager.go:403] No ready sandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" can be found. Need to start a new one
E0702 16:31:01.728421 3800 docker_sandbox.go:657] ResolvConfPath is empty.
I0702 16:31:01.736420 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerStarted", Data:"06fce8dc84c2942007023390e12a3b56be8a33588c26f521061578f044ed9b53"}
{"level":"debug","msg":"[cni-net] Plugin wcn-net version b9c3a1d-dirty.","time":"2018-07-02T16:31:01Z"}
{"level":"debug","msg":"[net] Network interface: {Index:13 MTU:1500 Name:vEthernet (Ethernet 3) HardwareAddr:00:0d:3a:36:aa:b4 Flags:up|broadcast|multicast} with IP addresses: [fe80::3c58:1b0:c6f2:43af/64 10.240.0.7/16]","time":"2018-07-02T16:31:01Z"}
{"level":"debug","msg":"[net] Network interface: {Index:1 MTU:-1 Name:Loopback Pseudo-Interface 1 HardwareAddr: Flags:up|loopback|multicast} with IP addresses: [::1/128 127.0.0.1/8]","time":"2018-07-02T16:31:01Z"}
{"level":"debug","msg":"[net] Network interface: {Index:2 MTU:1500 Name:vEthernet (nat) HardwareAddr:00:15:5d:95:9c:c6 Flags:up|broadcast|multicast} with IP addresses: [fe80::1cd:2ac0:72c7:89fb/64 172.31.64.1/20]","time":"2018-07-02T16:31:01Z"}
{"level":"debug","msg":"[cni-net] Plugin started.","time":"2018-07-02T16:31:01Z"}
{"level":"debug","msg":"[cni-net] Processing ADD command with args {ContainerID:06fce8dc84c2942007023390e12a3b56be8a33588c26f521061578f044ed9b53 Netns:none IfName:eth0 Args:IgnoreUnknown=1;K8S_POD_NAMESPACE=default;K8S_POD_NAME=iis;K8S_POD_INFRA_CONTAINER_ID=06fce8dc84c2942007023390e12a3b56be8a33588c26f521061578f044ed9b53 Path:/opt/wincni.exe/bin;c:\\k\\cni}.","time":"2018-07-02T16:31:01Z"}
{"level":"debug","msg":"[cni-net] Read network configuration \u0026{CniVersion:0.2.0 Name:l2bridge Type:wincni.exe Ipam:{Type: Environment:azure AddrSpace: Subnet:\u003cnone\u003e Address: QueryInterval: Routes:[{Dst:{IP:\u003cnil\u003e Mask:\u003cnil\u003e} GW:10.240.0.1}]} DNS:{Nameservers:[10.0.0.10] Domain: Search:[svc.cluster.local] Options:[]} RuntimeConfig:{PortMappings:[]} AdditionalArgs:[{Name:EndpointPolicy Value:[123 34 69 120 99 101 112 116 105 111 110 76 105 115 116 34 58 91 34 49 48 46 50 52 52 46 48 46 48 47 49 54 34 44 34 49 48 46 50 52 48 46 48 46 48 47 49 54 34 93 44 34 84 121 112 101 34 58 34 79 117 116 66 111 117 110 100 78 65 84 34 125]} {Name:EndpointPolicy Value:[123 34 68 101 115 116 105 110 97 116 105 111 110 80 114 101 102 105 120 34 58 34 49 48 46 48 46 48 46 48 47 49 54 34 44 34 78 101 101 100 69 110 99 97 112 34 58 116 114 117 101 44 34 84 121 112 101 34 58 34 82 79 85 84 69 34 125]}]}.","time":"2018-07-02T16:31:01Z"}
panic: runtime error: index out of range
goroutine 1 [running]:
visualstudio.com/containernetworking/cni/cni.(*NetworkConfig).GetNetworkInfo(0xc04204c140, 0x29)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/cni.go:175 +0x70e
visualstudio.com/containernetworking/cni/cni/network.(*netPlugin).Add(0xc042044500, 0xc042094070, 0x1, 0x0)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/network.go:108 +0x35b
visualstudio.com/containernetworking/cni/cni.(PluginApi).Add-fm(0xc042094070, 0xc04204bbc8, 0x5)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0x40
github.com/containernetworking/cni/pkg/skel.(*dispatcher).checkVersionAndCall(0xc042046240, 0xc042094070, 0x6311a0, 0xc0420c81e0, 0xc042065e78, 0x0, 0x41055f)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:162 +0x1a6
github.com/containernetworking/cni/pkg/skel.(*dispatcher).pluginMain(0xc042046240, 0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:173 +0x2a9
github.com/containernetworking/cni/pkg/skel.PluginMainWithError(0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:210 +0xf4
visualstudio.com/containernetworking/cni/cni.(*Plugin).Execute(0xc042068028, 0x631520, 0xc042044500, 0x0, 0xc04207fc20)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0xf9
main.main()
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/plugin/main.go:43 +0x35c
E0702 16:31:01.812967 3800 cni.go:259] Error adding network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:01.812967 3800 cni.go:227] Error while adding to cni network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
I0702 16:31:02.467031 3800 kubelet_node_status.go:491] Using Node Hostname from cloudprovider: "31252acs000003"
E0702 16:31:03.461132 3800 remote_runtime.go:92] RunPodSandbox from runtime service failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:03.461132 3800 kuberuntime_sandbox.go:54] CreatePodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:03.461132 3800 kuberuntime_manager.go:646] createPodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:03.461132 3800 pod_workers.go:186] Error syncing pod d3f75963-7e13-11e8-a6e8-000d3a36a486 ("iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)"), skipping: failed to "CreatePodSandbox" for "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" with CreatePodSandboxError: "CreatePodSandbox for pod \"iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)\" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod \"iis_default\" network: netplugin failed but error parsing its diagnostic message \"\": unexpected end of JSON input"
I0702 16:31:03.746349 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerDied", Data:"06fce8dc84c2942007023390e12a3b56be8a33588c26f521061578f044ed9b53"}
W0702 16:31:03.746349 3800 pod_container_deletor.go:77] Container "06fce8dc84c2942007023390e12a3b56be8a33588c26f521061578f044ed9b53" not found in pod's containers
I0702 16:31:04.048164 3800 kuberuntime_manager.go:403] No ready sandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" can be found. Need to start a new one
E0702 16:31:07.917689 3800 docker_sandbox.go:657] ResolvConfPath is empty.
I0702 16:31:07.923690 3800 server.go:796] GET /stats/summary/: (2.8653976s) 200 [[Go-http-client/1.1] 10.240.255.5:34294]
I0702 16:31:07.924691 3800 server.go:796] GET /stats/summary/: (2.903831s) 200 [[Go-http-client/1.1] 10.240.255.5:40060]
I0702 16:31:07.930690 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerStarted", Data:"219af9dffb72c8127083d26863dc782a72fd795608b5962094c6a432eb8dc217"}
{"level":"debug","msg":"[cni-net] Plugin wcn-net version b9c3a1d-dirty.","time":"2018-07-02T16:31:07Z"}
{"level":"debug","msg":"[net] Network interface: {Index:13 MTU:1500 Name:vEthernet (Ethernet 3) HardwareAddr:00:0d:3a:36:aa:b4 Flags:up|broadcast|multicast} with IP addresses: [fe80::3c58:1b0:c6f2:43af/64 10.240.0.7/16]","time":"2018-07-02T16:31:07Z"}
{"level":"debug","msg":"[net] Network interface: {Index:1 MTU:-1 Name:Loopback Pseudo-Interface 1 HardwareAddr: Flags:up|loopback|multicast} with IP addresses: [::1/128 127.0.0.1/8]","time":"2018-07-02T16:31:07Z"}
{"level":"debug","msg":"[net] Network interface: {Index:2 MTU:1500 Name:vEthernet (nat) HardwareAddr:00:15:5d:95:9c:c6 Flags:up|broadcast|multicast} with IP addresses: [fe80::1cd:2ac0:72c7:89fb/64 172.31.64.1/20]","time":"2018-07-02T16:31:07Z"}
{"level":"debug","msg":"[cni-net] Plugin started.","time":"2018-07-02T16:31:07Z"}
{"level":"debug","msg":"[cni-net] Processing ADD command with args {ContainerID:219af9dffb72c8127083d26863dc782a72fd795608b5962094c6a432eb8dc217 Netns:none IfName:eth0 Args:IgnoreUnknown=1;K8S_POD_NAMESPACE=default;K8S_POD_NAME=iis;K8S_POD_INFRA_CONTAINER_ID=219af9dffb72c8127083d26863dc782a72fd795608b5962094c6a432eb8dc217 Path:/opt/wincni.exe/bin;c:\\k\\cni}.","time":"2018-07-02T16:31:07Z"}
{"level":"debug","msg":"[cni-net] Read network configuration \u0026{CniVersion:0.2.0 Name:l2bridge Type:wincni.exe Ipam:{Type: Environment:azure AddrSpace: Subnet:\u003cnone\u003e Address: QueryInterval: Routes:[{Dst:{IP:\u003cnil\u003e Mask:\u003cnil\u003e} GW:10.240.0.1}]} DNS:{Nameservers:[10.0.0.10] Domain: Search:[svc.cluster.local] Options:[]} RuntimeConfig:{PortMappings:[]} AdditionalArgs:[{Name:EndpointPolicy Value:[123 34 69 120 99 101 112 116 105 111 110 76 105 115 116 34 58 91 34 49 48 46 50 52 52 46 48 46 48 47 49 54 34 44 34 49 48 46 50 52 48 46 48 46 48 47 49 54 34 93 44 34 84 121 112 101 34 58 34 79 117 116 66 111 117 110 100 78 65 84 34 125]} {Name:EndpointPolicy Value:[123 34 68 101 115 116 105 110 97 116 105 111 110 80 114 101 102 105 120 34 58 34 49 48 46 48 46 48 46 48 47 49 54 34 44 34 78 101 101 100 69 110 99 97 112 34 58 116 114 117 101 44 34 84 121 112 101 34 58 34 82 79 85 84 69 34 125]}]}.","time":"2018-07-02T16:31:07Z"}
panic: runtime error: index out of range
goroutine 1 [running]:
visualstudio.com/containernetworking/cni/cni.(*NetworkConfig).GetNetworkInfo(0xc042040140, 0x29)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/cni.go:175 +0x70e
visualstudio.com/containernetworking/cni/cni/network.(*netPlugin).Add(0xc042002540, 0xc04207a070, 0x1, 0x0)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/network.go:108 +0x35b
visualstudio.com/containernetworking/cni/cni.(PluginApi).Add-fm(0xc04207a070, 0xc04201fbc8, 0x5)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0x40
github.com/containernetworking/cni/pkg/skel.(*dispatcher).checkVersionAndCall(0xc042036280, 0xc04207a070, 0x6311a0, 0xc0420a61e0, 0xc042059e78, 0x0, 0x41055f)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:162 +0x1a6
github.com/containernetworking/cni/pkg/skel.(*dispatcher).pluginMain(0xc042036280, 0xc042059e78, 0xc042059e90, 0x6311a0, 0xc0420a61e0, 0xc0420a61e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:173 +0x2a9
github.com/containernetworking/cni/pkg/skel.PluginMainWithError(0xc042059e78, 0xc042059e90, 0x6311a0, 0xc0420a61e0, 0xc0420a61e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:210 +0xf4
visualstudio.com/containernetworking/cni/cni.(*Plugin).Execute(0xc042004038, 0x631520, 0xc042002540, 0x0, 0xc04206bc20)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0xf9
main.main()
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/plugin/main.go:43 +0x35c
E0702 16:31:07.998691 3800 cni.go:259] Error adding network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:07.998691 3800 cni.go:227] Error while adding to cni network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:09.569539 3800 remote_runtime.go:92] RunPodSandbox from runtime service failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:09.569539 3800 kuberuntime_sandbox.go:54] CreatePodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:09.569539 3800 kuberuntime_manager.go:646] createPodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:09.569539 3800 pod_workers.go:186] Error syncing pod d3f75963-7e13-11e8-a6e8-000d3a36a486 ("iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)"), skipping: failed to "CreatePodSandbox" for "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" with CreatePodSandboxError: "CreatePodSandbox for pod \"iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)\" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod \"iis_default\" network: netplugin failed but error parsing its diagnostic message \"\": unexpected end of JSON input"
E0702 16:31:09.739281 3800 helpers.go:739] eviction manager: failed to construct signal: "allocatableMemory.available" error: system container "pods" not found in metrics
W0702 16:31:09.739281 3800 helpers.go:812] eviction manager: no observation found for eviction signal nodefs.inodesFree
I0702 16:31:09.941986 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerDied", Data:"219af9dffb72c8127083d26863dc782a72fd795608b5962094c6a432eb8dc217"}
W0702 16:31:09.941986 3800 pod_container_deletor.go:77] Container "219af9dffb72c8127083d26863dc782a72fd795608b5962094c6a432eb8dc217" not found in pod's containers
I0702 16:31:10.244835 3800 kuberuntime_manager.go:403] No ready sandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" can be found. Need to start a new one
E0702 16:31:11.884771 3800 docker_sandbox.go:657] ResolvConfPath is empty.
I0702 16:31:11.894773 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerStarted", Data:"78b50bd1fc7ff02e1e577b47c73e6d194ef9c2e8ceb63c29e081e3802a866947"}
{"level":"debug","msg":"[cni-net] Plugin wcn-net version b9c3a1d-dirty.","time":"2018-07-02T16:31:11Z"}
{"level":"debug","msg":"[net] Network interface: {Index:13 MTU:1500 Name:vEthernet (Ethernet 3) HardwareAddr:00:0d:3a:36:aa:b4 Flags:up|broadcast|multicast} with IP addresses: [fe80::3c58:1b0:c6f2:43af/64 10.240.0.7/16]","time":"2018-07-02T16:31:11Z"}
{"level":"debug","msg":"[net] Network interface: {Index:1 MTU:-1 Name:Loopback Pseudo-Interface 1 HardwareAddr: Flags:up|loopback|multicast} with IP addresses: [::1/128 127.0.0.1/8]","time":"2018-07-02T16:31:11Z"}
{"level":"debug","msg":"[net] Network interface: {Index:2 MTU:1500 Name:vEthernet (nat) HardwareAddr:00:15:5d:95:9c:c6 Flags:up|broadcast|multicast} with IP addresses: [fe80::1cd:2ac0:72c7:89fb/64 172.31.64.1/20]","time":"2018-07-02T16:31:11Z"}
{"level":"debug","msg":"[cni-net] Plugin started.","time":"2018-07-02T16:31:11Z"}
{"level":"debug","msg":"[cni-net] Processing ADD command with args {ContainerID:78b50bd1fc7ff02e1e577b47c73e6d194ef9c2e8ceb63c29e081e3802a866947 Netns:none IfName:eth0 Args:IgnoreUnknown=1;K8S_POD_NAMESPACE=default;K8S_POD_NAME=iis;K8S_POD_INFRA_CONTAINER_ID=78b50bd1fc7ff02e1e577b47c73e6d194ef9c2e8ceb63c29e081e3802a866947 Path:/opt/wincni.exe/bin;c:\\k\\cni}.","time":"2018-07-02T16:31:11Z"}
{"level":"debug","msg":"[cni-net] Read network configuration \u0026{CniVersion:0.2.0 Name:l2bridge Type:wincni.exe Ipam:{Type: Environment:azure AddrSpace: Subnet:\u003cnone\u003e Address: QueryInterval: Routes:[{Dst:{IP:\u003cnil\u003e Mask:\u003cnil\u003e} GW:10.240.0.1}]} DNS:{Nameservers:[10.0.0.10] Domain: Search:[svc.cluster.local] Options:[]} RuntimeConfig:{PortMappings:[]} AdditionalArgs:[{Name:EndpointPolicy Value:[123 34 69 120 99 101 112 116 105 111 110 76 105 115 116 34 58 91 34 49 48 46 50 52 52 46 48 46 48 47 49 54 34 44 34 49 48 46 50 52 48 46 48 46 48 47 49 54 34 93 44 34 84 121 112 101 34 58 34 79 117 116 66 111 117 110 100 78 65 84 34 125]} {Name:EndpointPolicy Value:[123 34 68 101 115 116 105 110 97 116 105 111 110 80 114 101 102 105 120 34 58 34 49 48 46 48 46 48 46 48 47 49 54 34 44 34 78 101 101 100 69 110 99 97 112 34 58 116 114 117 101 44 34 84 121 112 101 34 58 34 82 79 85 84 69 34 125]}]}.","time":"2018-07-02T16:31:11Z"}
panic: runtime error: index out of range
goroutine 1 [running]:
visualstudio.com/containernetworking/cni/cni.(*NetworkConfig).GetNetworkInfo(0xc04204c140, 0x29)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/cni.go:175 +0x70e
visualstudio.com/containernetworking/cni/cni/network.(*netPlugin).Add(0xc042044500, 0xc042094070, 0x1, 0x0)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/network.go:108 +0x35b
visualstudio.com/containernetworking/cni/cni.(PluginApi).Add-fm(0xc042094070, 0xc04204bbc8, 0x5)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0x40
github.com/containernetworking/cni/pkg/skel.(*dispatcher).checkVersionAndCall(0xc042046240, 0xc042094070, 0x6311a0, 0xc0420c81e0, 0xc042065e78, 0x0, 0x41055f)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:162 +0x1a6
github.com/containernetworking/cni/pkg/skel.(*dispatcher).pluginMain(0xc042046240, 0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:173 +0x2a9
github.com/containernetworking/cni/pkg/skel.PluginMainWithError(0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:210 +0xf4
visualstudio.com/containernetworking/cni/cni.(*Plugin).Execute(0xc042068028, 0x631520, 0xc042044500, 0x0, 0xc04207fc20)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0xf9
main.main()
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/plugin/main.go:43 +0x35c
E0702 16:31:11.961778 3800 cni.go:259] Error adding network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:11.961778 3800 cni.go:227] Error while adding to cni network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
I0702 16:31:12.487809 3800 kubelet_node_status.go:491] Using Node Hostname from cloudprovider: "31252acs000003"
E0702 16:31:13.710105 3800 remote_runtime.go:92] RunPodSandbox from runtime service failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:13.710105 3800 kuberuntime_sandbox.go:54] CreatePodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:13.710105 3800 kuberuntime_manager.go:646] createPodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:13.710105 3800 pod_workers.go:186] Error syncing pod d3f75963-7e13-11e8-a6e8-000d3a36a486 ("iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)"), skipping: failed to "CreatePodSandbox" for "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" with CreatePodSandboxError: "CreatePodSandbox for pod \"iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)\" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod \"iis_default\" network: netplugin failed but error parsing its diagnostic message \"\": unexpected end of JSON input"
I0702 16:31:13.907624 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerDied", Data:"78b50bd1fc7ff02e1e577b47c73e6d194ef9c2e8ceb63c29e081e3802a866947"}
W0702 16:31:13.907624 3800 pod_container_deletor.go:77] Container "78b50bd1fc7ff02e1e577b47c73e6d194ef9c2e8ceb63c29e081e3802a866947" not found in pod's containers
I0702 16:31:14.208813 3800 kuberuntime_manager.go:403] No ready sandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" can be found. Need to start a new one
E0702 16:31:15.853648 3800 docker_sandbox.go:657] ResolvConfPath is empty.
I0702 16:31:15.865645 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerStarted", Data:"008ada8b30686a60a7f99b45d21e85080a2977b26c027e70a22896336c8fca4e"}
{"level":"debug","msg":"[cni-net] Plugin wcn-net version b9c3a1d-dirty.","time":"2018-07-02T16:31:15Z"}
{"level":"debug","msg":"[net] Network interface: {Index:13 MTU:1500 Name:vEthernet (Ethernet 3) HardwareAddr:00:0d:3a:36:aa:b4 Flags:up|broadcast|multicast} with IP addresses: [fe80::3c58:1b0:c6f2:43af/64 10.240.0.7/16]","time":"2018-07-02T16:31:15Z"}
{"level":"debug","msg":"[net] Network interface: {Index:1 MTU:-1 Name:Loopback Pseudo-Interface 1 HardwareAddr: Flags:up|loopback|multicast} with IP addresses: [::1/128 127.0.0.1/8]","time":"2018-07-02T16:31:15Z"}
{"level":"debug","msg":"[net] Network interface: {Index:2 MTU:1500 Name:vEthernet (nat) HardwareAddr:00:15:5d:95:9c:c6 Flags:up|broadcast|multicast} with IP addresses: [fe80::1cd:2ac0:72c7:89fb/64 172.31.64.1/20]","time":"2018-07-02T16:31:15Z"}
{"level":"debug","msg":"[cni-net] Plugin started.","time":"2018-07-02T16:31:15Z"}
{"level":"debug","msg":"[cni-net] Processing ADD command with args {ContainerID:008ada8b30686a60a7f99b45d21e85080a2977b26c027e70a22896336c8fca4e Netns:none IfName:eth0 Args:IgnoreUnknown=1;K8S_POD_NAMESPACE=default;K8S_POD_NAME=iis;K8S_POD_INFRA_CONTAINER_ID=008ada8b30686a60a7f99b45d21e85080a2977b26c027e70a22896336c8fca4e Path:/opt/wincni.exe/bin;c:\\k\\cni}.","time":"2018-07-02T16:31:15Z"}
{"level":"debug","msg":"[cni-net] Read network configuration \u0026{CniVersion:0.2.0 Name:l2bridge Type:wincni.exe Ipam:{Type: Environment:azure AddrSpace: Subnet:\u003cnone\u003e Address: QueryInterval: Routes:[{Dst:{IP:\u003cnil\u003e Mask:\u003cnil\u003e} GW:10.240.0.1}]} DNS:{Nameservers:[10.0.0.10] Domain: Search:[svc.cluster.local] Options:[]} RuntimeConfig:{PortMappings:[]} AdditionalArgs:[{Name:EndpointPolicy Value:[123 34 69 120 99 101 112 116 105 111 110 76 105 115 116 34 58 91 34 49 48 46 50 52 52 46 48 46 48 47 49 54 34 44 34 49 48 46 50 52 48 46 48 46 48 47 49 54 34 93 44 34 84 121 112 101 34 58 34 79 117 116 66 111 117 110 100 78 65 84 34 125]} {Name:EndpointPolicy Value:[123 34 68 101 115 116 105 110 97 116 105 111 110 80 114 101 102 105 120 34 58 34 49 48 46 48 46 48 46 48 47 49 54 34 44 34 78 101 101 100 69 110 99 97 112 34 58 116 114 117 101 44 34 84 121 112 101 34 58 34 82 79 85 84 69 34 125]}]}.","time":"2018-07-02T16:31:15Z"}
panic: runtime error: index out of range
goroutine 1 [running]:
visualstudio.com/containernetworking/cni/cni.(*NetworkConfig).GetNetworkInfo(0xc04204c140, 0x29)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/cni.go:175 +0x70e
visualstudio.com/containernetworking/cni/cni/network.(*netPlugin).Add(0xc042044500, 0xc042094070, 0x1, 0x0)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/network.go:108 +0x35b
visualstudio.com/containernetworking/cni/cni.(PluginApi).Add-fm(0xc042094070, 0xc04204bbc8, 0x5)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0x40
github.com/containernetworking/cni/pkg/skel.(*dispatcher).checkVersionAndCall(0xc042046240, 0xc042094070, 0x6311a0, 0xc0420c81e0, 0xc042065e78, 0x0, 0x41055f)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:162 +0x1a6
github.com/containernetworking/cni/pkg/skel.(*dispatcher).pluginMain(0xc042046240, 0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:173 +0x2a9
github.com/containernetworking/cni/pkg/skel.PluginMainWithError(0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:210 +0xf4
visualstudio.com/containernetworking/cni/cni.(*Plugin).Execute(0xc042068028, 0x631520, 0xc042044500, 0x0, 0xc04207fc20)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0xf9
main.main()
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/plugin/main.go:43 +0x35c
E0702 16:31:15.933671 3800 cni.go:259] Error adding network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:15.933671 3800 cni.go:227] Error while adding to cni network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:17.538602 3800 remote_runtime.go:92] RunPodSandbox from runtime service failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:17.538602 3800 kuberuntime_sandbox.go:54] CreatePodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:17.538602 3800 kuberuntime_manager.go:646] createPodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:17.538602 3800 pod_workers.go:186] Error syncing pod d3f75963-7e13-11e8-a6e8-000d3a36a486 ("iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)"), skipping: failed to "CreatePodSandbox" for "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" with CreatePodSandboxError: "CreatePodSandbox for pod \"iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)\" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod \"iis_default\" network: netplugin failed but error parsing its diagnostic message \"\": unexpected end of JSON input"
I0702 16:31:18.012673 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerDied", Data:"008ada8b30686a60a7f99b45d21e85080a2977b26c027e70a22896336c8fca4e"}
W0702 16:31:18.012673 3800 pod_container_deletor.go:77] Container "008ada8b30686a60a7f99b45d21e85080a2977b26c027e70a22896336c8fca4e" not found in pod's containers
I0702 16:31:18.315042 3800 kuberuntime_manager.go:403] No ready sandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" can be found. Need to start a new one
E0702 16:31:20.087761 3800 docker_sandbox.go:657] ResolvConfPath is empty.
E0702 16:31:20.093762 3800 helpers.go:739] eviction manager: failed to construct signal: "allocatableMemory.available" error: system container "pods" not found in metrics
W0702 16:31:20.093762 3800 helpers.go:812] eviction manager: no observation found for eviction signal nodefs.inodesFree
I0702 16:31:20.108760 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerStarted", Data:"de3b02840a82e07871be9881bbc15138cea0e5499c86a73b110ac061576b576f"}
{"level":"debug","msg":"[cni-net] Plugin wcn-net version b9c3a1d-dirty.","time":"2018-07-02T16:31:20Z"}
{"level":"debug","msg":"[net] Network interface: {Index:13 MTU:1500 Name:vEthernet (Ethernet 3) HardwareAddr:00:0d:3a:36:aa:b4 Flags:up|broadcast|multicast} with IP addresses: [fe80::3c58:1b0:c6f2:43af/64 10.240.0.7/16]","time":"2018-07-02T16:31:20Z"}
{"level":"debug","msg":"[net] Network interface: {Index:1 MTU:-1 Name:Loopback Pseudo-Interface 1 HardwareAddr: Flags:up|loopback|multicast} with IP addresses: [::1/128 127.0.0.1/8]","time":"2018-07-02T16:31:20Z"}
{"level":"debug","msg":"[net] Network interface: {Index:2 MTU:1500 Name:vEthernet (nat) HardwareAddr:00:15:5d:95:9c:c6 Flags:up|broadcast|multicast} with IP addresses: [fe80::1cd:2ac0:72c7:89fb/64 172.31.64.1/20]","time":"2018-07-02T16:31:20Z"}
{"level":"debug","msg":"[cni-net] Plugin started.","time":"2018-07-02T16:31:20Z"}
{"level":"debug","msg":"[cni-net] Processing ADD command with args {ContainerID:de3b02840a82e07871be9881bbc15138cea0e5499c86a73b110ac061576b576f Netns:none IfName:eth0 Args:IgnoreUnknown=1;K8S_POD_NAMESPACE=default;K8S_POD_NAME=iis;K8S_POD_INFRA_CONTAINER_ID=de3b02840a82e07871be9881bbc15138cea0e5499c86a73b110ac061576b576f Path:/opt/wincni.exe/bin;c:\\k\\cni}.","time":"2018-07-02T16:31:20Z"}
{"level":"debug","msg":"[cni-net] Read network configuration \u0026{CniVersion:0.2.0 Name:l2bridge Type:wincni.exe Ipam:{Type: Environment:azure AddrSpace: Subnet:\u003cnone\u003e Address: QueryInterval: Routes:[{Dst:{IP:\u003cnil\u003e Mask:\u003cnil\u003e} GW:10.240.0.1}]} DNS:{Nameservers:[10.0.0.10] Domain: Search:[svc.cluster.local] Options:[]} RuntimeConfig:{PortMappings:[]} AdditionalArgs:[{Name:EndpointPolicy Value:[123 34 69 120 99 101 112 116 105 111 110 76 105 115 116 34 58 91 34 49 48 46 50 52 52 46 48 46 48 47 49 54 34 44 34 49 48 46 50 52 48 46 48 46 48 47 49 54 34 93 44 34 84 121 112 101 34 58 34 79 117 116 66 111 117 110 100 78 65 84 34 125]} {Name:EndpointPolicy Value:[123 34 68 101 115 116 105 110 97 116 105 111 110 80 114 101 102 105 120 34 58 34 49 48 46 48 46 48 46 48 47 49 54 34 44 34 78 101 101 100 69 110 99 97 112 34 58 116 114 117 101 44 34 84 121 112 101 34 58 34 82 79 85 84 69 34 125]}]}.","time":"2018-07-02T16:31:20Z"}
panic: runtime error: index out of range
goroutine 1 [running]:
visualstudio.com/containernetworking/cni/cni.(*NetworkConfig).GetNetworkInfo(0xc04204c140, 0x29)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/cni.go:175 +0x70e
visualstudio.com/containernetworking/cni/cni/network.(*netPlugin).Add(0xc042044500, 0xc042094070, 0x1, 0x0)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/network.go:108 +0x35b
visualstudio.com/containernetworking/cni/cni.(PluginApi).Add-fm(0xc042094070, 0xc04204bbc8, 0x5)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0x40
github.com/containernetworking/cni/pkg/skel.(*dispatcher).checkVersionAndCall(0xc042046240, 0xc042094070, 0x6311a0, 0xc0420c81e0, 0xc042065e78, 0x0, 0x41055f)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:162 +0x1a6
github.com/containernetworking/cni/pkg/skel.(*dispatcher).pluginMain(0xc042046240, 0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:173 +0x2a9
github.com/containernetworking/cni/pkg/skel.PluginMainWithError(0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:210 +0xf4
visualstudio.com/containernetworking/cni/cni.(*Plugin).Execute(0xc042068028, 0x631520, 0xc042044500, 0x0, 0xc04207fc20)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0xf9
main.main()
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/plugin/main.go:43 +0x35c
E0702 16:31:20.165761 3800 cni.go:259] Error adding network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:20.165761 3800 cni.go:227] Error while adding to cni network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:21.788739 3800 remote_runtime.go:92] RunPodSandbox from runtime service failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:21.788739 3800 kuberuntime_sandbox.go:54] CreatePodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:21.788739 3800 kuberuntime_manager.go:646] createPodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:21.788739 3800 pod_workers.go:186] Error syncing pod d3f75963-7e13-11e8-a6e8-000d3a36a486 ("iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)"), skipping: failed to "CreatePodSandbox" for "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" with CreatePodSandboxError: "CreatePodSandbox for pod \"iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)\" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod \"iis_default\" network: netplugin failed but error parsing its diagnostic message \"\": unexpected end of JSON input"
I0702 16:31:22.222626 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerDied", Data:"de3b02840a82e07871be9881bbc15138cea0e5499c86a73b110ac061576b576f"}
W0702 16:31:22.222626 3800 pod_container_deletor.go:77] Container "de3b02840a82e07871be9881bbc15138cea0e5499c86a73b110ac061576b576f" not found in pod's containers
I0702 16:31:22.505997 3800 kubelet_node_status.go:491] Using Node Hostname from cloudprovider: "31252acs000003"
I0702 16:31:22.522999 3800 kuberuntime_manager.go:403] No ready sandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" can be found. Need to start a new one
E0702 16:31:24.072124 3800 docker_sandbox.go:657] ResolvConfPath is empty.
I0702 16:31:24.090124 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerStarted", Data:"4469621a419540660a5e60ccccdce75cb7907a320f92a86b7c5cf1dab8e4b824"}
{"level":"debug","msg":"[cni-net] Plugin wcn-net version b9c3a1d-dirty.","time":"2018-07-02T16:31:24Z"}
{"level":"debug","msg":"[net] Network interface: {Index:13 MTU:1500 Name:vEthernet (Ethernet 3) HardwareAddr:00:0d:3a:36:aa:b4 Flags:up|broadcast|multicast} with IP addresses: [fe80::3c58:1b0:c6f2:43af/64 10.240.0.7/16]","time":"2018-07-02T16:31:24Z"}
{"level":"debug","msg":"[net] Network interface: {Index:1 MTU:-1 Name:Loopback Pseudo-Interface 1 HardwareAddr: Flags:up|loopback|multicast} with IP addresses: [::1/128 127.0.0.1/8]","time":"2018-07-02T16:31:24Z"}
{"level":"debug","msg":"[net] Network interface: {Index:2 MTU:1500 Name:vEthernet (nat) HardwareAddr:00:15:5d:95:9c:c6 Flags:up|broadcast|multicast} with IP addresses: [fe80::1cd:2ac0:72c7:89fb/64 172.31.64.1/20]","time":"2018-07-02T16:31:24Z"}
{"level":"debug","msg":"[cni-net] Plugin started.","time":"2018-07-02T16:31:24Z"}
{"level":"debug","msg":"[cni-net] Processing ADD command with args {ContainerID:4469621a419540660a5e60ccccdce75cb7907a320f92a86b7c5cf1dab8e4b824 Netns:none IfName:eth0 Args:IgnoreUnknown=1;K8S_POD_NAMESPACE=default;K8S_POD_NAME=iis;K8S_POD_INFRA_CONTAINER_ID=4469621a419540660a5e60ccccdce75cb7907a320f92a86b7c5cf1dab8e4b824 Path:/opt/wincni.exe/bin;c:\\k\\cni}.","time":"2018-07-02T16:31:24Z"}
{"level":"debug","msg":"[cni-net] Read network configuration \u0026{CniVersion:0.2.0 Name:l2bridge Type:wincni.exe Ipam:{Type: Environment:azure AddrSpace: Subnet:\u003cnone\u003e Address: QueryInterval: Routes:[{Dst:{IP:\u003cnil\u003e Mask:\u003cnil\u003e} GW:10.240.0.1}]} DNS:{Nameservers:[10.0.0.10] Domain: Search:[svc.cluster.local] Options:[]} RuntimeConfig:{PortMappings:[]} AdditionalArgs:[{Name:EndpointPolicy Value:[123 34 69 120 99 101 112 116 105 111 110 76 105 115 116 34 58 91 34 49 48 46 50 52 52 46 48 46 48 47 49 54 34 44 34 49 48 46 50 52 48 46 48 46 48 47 49 54 34 93 44 34 84 121 112 101 34 58 34 79 117 116 66 111 117 110 100 78 65 84 34 125]} {Name:EndpointPolicy Value:[123 34 68 101 115 116 105 110 97 116 105 111 110 80 114 101 102 105 120 34 58 34 49 48 46 48 46 48 46 48 47 49 54 34 44 34 78 101 101 100 69 110 99 97 112 34 58 116 114 117 101 44 34 84 121 112 101 34 58 34 82 79 85 84 69 34 125]}]}.","time":"2018-07-02T16:31:24Z"}
panic: runtime error: index out of range
goroutine 1 [running]:
visualstudio.com/containernetworking/cni/cni.(*NetworkConfig).GetNetworkInfo(0xc04204c140, 0x29)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/cni.go:175 +0x70e
visualstudio.com/containernetworking/cni/cni/network.(*netPlugin).Add(0xc042044500, 0xc042094070, 0x1, 0x0)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/network.go:108 +0x35b
visualstudio.com/containernetworking/cni/cni.(PluginApi).Add-fm(0xc042094070, 0xc04204bbc8, 0x5)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0x40
github.com/containernetworking/cni/pkg/skel.(*dispatcher).checkVersionAndCall(0xc042046240, 0xc042094070, 0x6311a0, 0xc0420c81e0, 0xc042065e78, 0x0, 0x41055f)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:162 +0x1a6
github.com/containernetworking/cni/pkg/skel.(*dispatcher).pluginMain(0xc042046240, 0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:173 +0x2a9
github.com/containernetworking/cni/pkg/skel.PluginMainWithError(0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:210 +0xf4
visualstudio.com/containernetworking/cni/cni.(*Plugin).Execute(0xc042068028, 0x631520, 0xc042044500, 0x0, 0xc04207fc20)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0xf9
main.main()
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/plugin/main.go:43 +0x35c
E0702 16:31:24.153153 3800 cni.go:259] Error adding network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:24.153153 3800 cni.go:227] Error while adding to cni network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:25.787787 3800 remote_runtime.go:92] RunPodSandbox from runtime service failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:25.787787 3800 kuberuntime_sandbox.go:54] CreatePodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:25.787787 3800 kuberuntime_manager.go:646] createPodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:25.787787 3800 pod_workers.go:186] Error syncing pod d3f75963-7e13-11e8-a6e8-000d3a36a486 ("iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)"), skipping: failed to "CreatePodSandbox" for "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" with CreatePodSandboxError: "CreatePodSandbox for pod \"iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)\" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod \"iis_default\" network: netplugin failed but error parsing its diagnostic message \"\": unexpected end of JSON input"
I0702 16:31:26.108258 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerDied", Data:"4469621a419540660a5e60ccccdce75cb7907a320f92a86b7c5cf1dab8e4b824"}
W0702 16:31:26.109256 3800 pod_container_deletor.go:77] Container "4469621a419540660a5e60ccccdce75cb7907a320f92a86b7c5cf1dab8e4b824" not found in pod's containers
I0702 16:31:26.410104 3800 kuberuntime_manager.go:403] No ready sandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" can be found. Need to start a new one
E0702 16:31:28.051425 3800 kubelet_network.go:225] Failed to ensure that nat chain KUBE-MARK-DROP exists: error creating chain "KUBE-MARK-DROP": executable file not found in %PATH%:
E0702 16:31:28.197429 3800 docker_sandbox.go:657] ResolvConfPath is empty.
I0702 16:31:28.217431 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerStarted", Data:"7f2f2e1efa23227f3f28a0cc7367557213ced179f8d3b80859e688aa496c8136"}
{"level":"debug","msg":"[cni-net] Plugin wcn-net version b9c3a1d-dirty.","time":"2018-07-02T16:31:28Z"}
{"level":"debug","msg":"[net] Network interface: {Index:13 MTU:1500 Name:vEthernet (Ethernet 3) HardwareAddr:00:0d:3a:36:aa:b4 Flags:up|broadcast|multicast} with IP addresses: [fe80::3c58:1b0:c6f2:43af/64 10.240.0.7/16]","time":"2018-07-02T16:31:28Z"}
{"level":"debug","msg":"[net] Network interface: {Index:1 MTU:-1 Name:Loopback Pseudo-Interface 1 HardwareAddr: Flags:up|loopback|multicast} with IP addresses: [::1/128 127.0.0.1/8]","time":"2018-07-02T16:31:28Z"}
{"level":"debug","msg":"[net] Network interface: {Index:2 MTU:1500 Name:vEthernet (nat) HardwareAddr:00:15:5d:95:9c:c6 Flags:up|broadcast|multicast} with IP addresses: [fe80::1cd:2ac0:72c7:89fb/64 172.31.64.1/20]","time":"2018-07-02T16:31:28Z"}
{"level":"debug","msg":"[cni-net] Plugin started.","time":"2018-07-02T16:31:28Z"}
{"level":"debug","msg":"[cni-net] Processing ADD command with args {ContainerID:7f2f2e1efa23227f3f28a0cc7367557213ced179f8d3b80859e688aa496c8136 Netns:none IfName:eth0 Args:IgnoreUnknown=1;K8S_POD_NAMESPACE=default;K8S_POD_NAME=iis;K8S_POD_INFRA_CONTAINER_ID=7f2f2e1efa23227f3f28a0cc7367557213ced179f8d3b80859e688aa496c8136 Path:/opt/wincni.exe/bin;c:\\k\\cni}.","time":"2018-07-02T16:31:28Z"}
{"level":"debug","msg":"[cni-net] Read network configuration \u0026{CniVersion:0.2.0 Name:l2bridge Type:wincni.exe Ipam:{Type: Environment:azure AddrSpace: Subnet:\u003cnone\u003e Address: QueryInterval: Routes:[{Dst:{IP:\u003cnil\u003e Mask:\u003cnil\u003e} GW:10.240.0.1}]} DNS:{Nameservers:[10.0.0.10] Domain: Search:[svc.cluster.local] Options:[]} RuntimeConfig:{PortMappings:[]} AdditionalArgs:[{Name:EndpointPolicy Value:[123 34 69 120 99 101 112 116 105 111 110 76 105 115 116 34 58 91 34 49 48 46 50 52 52 46 48 46 48 47 49 54 34 44 34 49 48 46 50 52 48 46 48 46 48 47 49 54 34 93 44 34 84 121 112 101 34 58 34 79 117 116 66 111 117 110 100 78 65 84 34 125]} {Name:EndpointPolicy Value:[123 34 68 101 115 116 105 110 97 116 105 111 110 80 114 101 102 105 120 34 58 34 49 48 46 48 46 48 46 48 47 49 54 34 44 34 78 101 101 100 69 110 99 97 112 34 58 116 114 117 101 44 34 84 121 112 101 34 58 34 82 79 85 84 69 34 125]}]}.","time":"2018-07-02T16:31:28Z"}
panic: runtime error: index out of range
goroutine 1 [running]:
visualstudio.com/containernetworking/cni/cni.(*NetworkConfig).GetNetworkInfo(0xc04204c140, 0x29)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/cni.go:175 +0x70e
visualstudio.com/containernetworking/cni/cni/network.(*netPlugin).Add(0xc042044500, 0xc042094070, 0x1, 0x0)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/network.go:108 +0x35b
visualstudio.com/containernetworking/cni/cni.(PluginApi).Add-fm(0xc042094070, 0xc04204bbc8, 0x5)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0x40
github.com/containernetworking/cni/pkg/skel.(*dispatcher).checkVersionAndCall(0xc042046240, 0xc042094070, 0x6311a0, 0xc0420c81e0, 0xc042065e78, 0x0, 0x41055f)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:162 +0x1a6
github.com/containernetworking/cni/pkg/skel.(*dispatcher).pluginMain(0xc042046240, 0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:173 +0x2a9
github.com/containernetworking/cni/pkg/skel.PluginMainWithError(0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:210 +0xf4
visualstudio.com/containernetworking/cni/cni.(*Plugin).Execute(0xc042068028, 0x631520, 0xc042044500, 0x0, 0xc04207fc20)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0xf9
main.main()
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/plugin/main.go:43 +0x35c
E0702 16:31:28.280428 3800 cni.go:259] Error adding network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:28.280428 3800 cni.go:227] Error while adding to cni network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:29.693967 3800 remote_runtime.go:92] RunPodSandbox from runtime service failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:29.693967 3800 kuberuntime_sandbox.go:54] CreatePodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:29.694967 3800 kuberuntime_manager.go:646] createPodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:29.694967 3800 pod_workers.go:186] Error syncing pod d3f75963-7e13-11e8-a6e8-000d3a36a486 ("iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)"), skipping: failed to "CreatePodSandbox" for "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" with CreatePodSandboxError: "CreatePodSandbox for pod \"iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)\" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod \"iis_default\" network: netplugin failed but error parsing its diagnostic message \"\": unexpected end of JSON input"
E0702 16:31:30.103766 3800 helpers.go:739] eviction manager: failed to construct signal: "allocatableMemory.available" error: system container "pods" not found in metrics
W0702 16:31:30.103766 3800 helpers.go:812] eviction manager: no observation found for eviction signal nodefs.inodesFree
I0702 16:31:30.234835 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerDied", Data:"7f2f2e1efa23227f3f28a0cc7367557213ced179f8d3b80859e688aa496c8136"}
W0702 16:31:30.234835 3800 pod_container_deletor.go:77] Container "7f2f2e1efa23227f3f28a0cc7367557213ced179f8d3b80859e688aa496c8136" not found in pod's containers
I0702 16:31:30.537566 3800 kuberuntime_manager.go:403] No ready sandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" can be found. Need to start a new one
E0702 16:31:32.339411 3800 docker_sandbox.go:657] ResolvConfPath is empty.
I0702 16:31:32.360420 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerStarted", Data:"13a3ad01bc973f29e94a527e7725334be46565f84a428344d5e8981fc954a93a"}
{"level":"debug","msg":"[cni-net] Plugin wcn-net version b9c3a1d-dirty.","time":"2018-07-02T16:31:32Z"}
{"level":"debug","msg":"[net] Network interface: {Index:13 MTU:1500 Name:vEthernet (Ethernet 3) HardwareAddr:00:0d:3a:36:aa:b4 Flags:up|broadcast|multicast} with IP addresses: [fe80::3c58:1b0:c6f2:43af/64 10.240.0.7/16]","time":"2018-07-02T16:31:32Z"}
{"level":"debug","msg":"[net] Network interface: {Index:1 MTU:-1 Name:Loopback Pseudo-Interface 1 HardwareAddr: Flags:up|loopback|multicast} with IP addresses: [::1/128 127.0.0.1/8]","time":"2018-07-02T16:31:32Z"}
{"level":"debug","msg":"[net] Network interface: {Index:2 MTU:1500 Name:vEthernet (nat) HardwareAddr:00:15:5d:95:9c:c6 Flags:up|broadcast|multicast} with IP addresses: [fe80::1cd:2ac0:72c7:89fb/64 172.31.64.1/20]","time":"2018-07-02T16:31:32Z"}
{"level":"debug","msg":"[cni-net] Plugin started.","time":"2018-07-02T16:31:32Z"}
{"level":"debug","msg":"[cni-net] Processing ADD command with args {ContainerID:13a3ad01bc973f29e94a527e7725334be46565f84a428344d5e8981fc954a93a Netns:none IfName:eth0 Args:IgnoreUnknown=1;K8S_POD_NAMESPACE=default;K8S_POD_NAME=iis;K8S_POD_INFRA_CONTAINER_ID=13a3ad01bc973f29e94a527e7725334be46565f84a428344d5e8981fc954a93a Path:/opt/wincni.exe/bin;c:\\k\\cni}.","time":"2018-07-02T16:31:32Z"}
{"level":"debug","msg":"[cni-net] Read network configuration \u0026{CniVersion:0.2.0 Name:l2bridge Type:wincni.exe Ipam:{Type: Environment:azure AddrSpace: Subnet:\u003cnone\u003e Address: QueryInterval: Routes:[{Dst:{IP:\u003cnil\u003e Mask:\u003cnil\u003e} GW:10.240.0.1}]} DNS:{Nameservers:[10.0.0.10] Domain: Search:[svc.cluster.local] Options:[]} RuntimeConfig:{PortMappings:[]} AdditionalArgs:[{Name:EndpointPolicy Value:[123 34 69 120 99 101 112 116 105 111 110 76 105 115 116 34 58 91 34 49 48 46 50 52 52 46 48 46 48 47 49 54 34 44 34 49 48 46 50 52 48 46 48 46 48 47 49 54 34 93 44 34 84 121 112 101 34 58 34 79 117 116 66 111 117 110 100 78 65 84 34 125]} {Name:EndpointPolicy Value:[123 34 68 101 115 116 105 110 97 116 105 111 110 80 114 101 102 105 120 34 58 34 49 48 46 48 46 48 46 48 47 49 54 34 44 34 78 101 101 100 69 110 99 97 112 34 58 116 114 117 101 44 34 84 121 112 101 34 58 34 82 79 85 84 69 34 125]}]}.","time":"2018-07-02T16:31:32Z"}
panic: runtime error: index out of range
goroutine 1 [running]:
visualstudio.com/containernetworking/cni/cni.(*NetworkConfig).GetNetworkInfo(0xc04204c140, 0x29)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/cni.go:175 +0x70e
visualstudio.com/containernetworking/cni/cni/network.(*netPlugin).Add(0xc042044500, 0xc042094070, 0x1, 0x0)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/network.go:108 +0x35b
visualstudio.com/containernetworking/cni/cni.(PluginApi).Add-fm(0xc042094070, 0xc04204bbc8, 0x5)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0x40
github.com/containernetworking/cni/pkg/skel.(*dispatcher).checkVersionAndCall(0xc042046240, 0xc042094070, 0x6311a0, 0xc0420c81e0, 0xc042065e78, 0x0, 0x41055f)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:162 +0x1a6
github.com/containernetworking/cni/pkg/skel.(*dispatcher).pluginMain(0xc042046240, 0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:173 +0x2a9
github.com/containernetworking/cni/pkg/skel.PluginMainWithError(0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:210 +0xf4
visualstudio.com/containernetworking/cni/cni.(*Plugin).Execute(0xc042068028, 0x631520, 0xc042044500, 0x0, 0xc04207fc20)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0xf9
main.main()
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/plugin/main.go:43 +0x35c
E0702 16:31:32.421413 3800 cni.go:259] Error adding network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:32.421413 3800 cni.go:227] Error while adding to cni network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
I0702 16:31:32.533113 3800 kubelet_node_status.go:491] Using Node Hostname from cloudprovider: "31252acs000003"
E0702 16:31:34.319654 3800 remote_runtime.go:92] RunPodSandbox from runtime service failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:34.319654 3800 kuberuntime_sandbox.go:54] CreatePodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:34.319654 3800 kuberuntime_manager.go:646] createPodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:34.322687 3800 pod_workers.go:186] Error syncing pod d3f75963-7e13-11e8-a6e8-000d3a36a486 ("iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)"), skipping: failed to "CreatePodSandbox" for "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" with CreatePodSandboxError: "CreatePodSandbox for pod \"iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)\" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod \"iis_default\" network: netplugin failed but error parsing its diagnostic message \"\": unexpected end of JSON input"
I0702 16:31:34.388144 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerDied", Data:"13a3ad01bc973f29e94a527e7725334be46565f84a428344d5e8981fc954a93a"}
W0702 16:31:34.388144 3800 pod_container_deletor.go:77] Container "13a3ad01bc973f29e94a527e7725334be46565f84a428344d5e8981fc954a93a" not found in pod's containers
I0702 16:31:34.688772 3800 kuberuntime_manager.go:403] No ready sandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" can be found. Need to start a new one
E0702 16:31:36.903748 3800 docker_sandbox.go:657] ResolvConfPath is empty.
I0702 16:31:36.922751 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerStarted", Data:"32df99607430163d4986a43ba311ad2af372f74bbd47432b0cf4ae03d5af914c"}
{"level":"debug","msg":"[cni-net] Plugin wcn-net version b9c3a1d-dirty.","time":"2018-07-02T16:31:36Z"}
{"level":"debug","msg":"[net] Network interface: {Index:13 MTU:1500 Name:vEthernet (Ethernet 3) HardwareAddr:00:0d:3a:36:aa:b4 Flags:up|broadcast|multicast} with IP addresses: [fe80::3c58:1b0:c6f2:43af/64 10.240.0.7/16]","time":"2018-07-02T16:31:37Z"}
{"level":"debug","msg":"[net] Network interface: {Index:1 MTU:-1 Name:Loopback Pseudo-Interface 1 HardwareAddr: Flags:up|loopback|multicast} with IP addresses: [::1/128 127.0.0.1/8]","time":"2018-07-02T16:31:37Z"}
{"level":"debug","msg":"[net] Network interface: {Index:2 MTU:1500 Name:vEthernet (nat) HardwareAddr:00:15:5d:95:9c:c6 Flags:up|broadcast|multicast} with IP addresses: [fe80::1cd:2ac0:72c7:89fb/64 172.31.64.1/20]","time":"2018-07-02T16:31:37Z"}
{"level":"debug","msg":"[cni-net] Plugin started.","time":"2018-07-02T16:31:37Z"}
{"level":"debug","msg":"[cni-net] Processing ADD command with args {ContainerID:32df99607430163d4986a43ba311ad2af372f74bbd47432b0cf4ae03d5af914c Netns:none IfName:eth0 Args:IgnoreUnknown=1;K8S_POD_NAMESPACE=default;K8S_POD_NAME=iis;K8S_POD_INFRA_CONTAINER_ID=32df99607430163d4986a43ba311ad2af372f74bbd47432b0cf4ae03d5af914c Path:/opt/wincni.exe/bin;c:\\k\\cni}.","time":"2018-07-02T16:31:37Z"}
{"level":"debug","msg":"[cni-net] Read network configuration \u0026{CniVersion:0.2.0 Name:l2bridge Type:wincni.exe Ipam:{Type: Environment:azure AddrSpace: Subnet:\u003cnone\u003e Address: QueryInterval: Routes:[{Dst:{IP:\u003cnil\u003e Mask:\u003cnil\u003e} GW:10.240.0.1}]} DNS:{Nameservers:[10.0.0.10] Domain: Search:[svc.cluster.local] Options:[]} RuntimeConfig:{PortMappings:[]} AdditionalArgs:[{Name:EndpointPolicy Value:[123 34 69 120 99 101 112 116 105 111 110 76 105 115 116 34 58 91 34 49 48 46 50 52 52 46 48 46 48 47 49 54 34 44 34 49 48 46 50 52 48 46 48 46 48 47 49 54 34 93 44 34 84 121 112 101 34 58 34 79 117 116 66 111 117 110 100 78 65 84 34 125]} {Name:EndpointPolicy Value:[123 34 68 101 115 116 105 110 97 116 105 111 110 80 114 101 102 105 120 34 58 34 49 48 46 48 46 48 46 48 47 49 54 34 44 34 78 101 101 100 69 110 99 97 112 34 58 116 114 117 101 44 34 84 121 112 101 34 58 34 82 79 85 84 69 34 125]}]}.","time":"2018-07-02T16:31:37Z"}
panic: runtime error: index out of range
goroutine 1 [running]:
visualstudio.com/containernetworking/cni/cni.(*NetworkConfig).GetNetworkInfo(0xc04204c140, 0x29)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/cni.go:175 +0x70e
visualstudio.com/containernetworking/cni/cni/network.(*netPlugin).Add(0xc042044500, 0xc042094070, 0x1, 0x0)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/network.go:108 +0x35b
visualstudio.com/containernetworking/cni/cni.(PluginApi).Add-fm(0xc042094070, 0xc04204bbc8, 0x5)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0x40
github.com/containernetworking/cni/pkg/skel.(*dispatcher).checkVersionAndCall(0xc042046240, 0xc042094070, 0x6311a0, 0xc0420c81e0, 0xc042065e78, 0x0, 0x41055f)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:162 +0x1a6
github.com/containernetworking/cni/pkg/skel.(*dispatcher).pluginMain(0xc042046240, 0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:173 +0x2a9
github.com/containernetworking/cni/pkg/skel.PluginMainWithError(0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:210 +0xf4
visualstudio.com/containernetworking/cni/cni.(*Plugin).Execute(0xc042068028, 0x631520, 0xc042044500, 0x0, 0xc04207fc20)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0xf9
main.main()
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/plugin/main.go:43 +0x35c
E0702 16:31:37.014781 3800 cni.go:259] Error adding network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:37.014781 3800 cni.go:227] Error while adding to cni network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:38.522566 3800 remote_runtime.go:92] RunPodSandbox from runtime service failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:38.522566 3800 kuberuntime_sandbox.go:54] CreatePodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:38.522566 3800 kuberuntime_manager.go:646] createPodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:38.522566 3800 pod_workers.go:186] Error syncing pod d3f75963-7e13-11e8-a6e8-000d3a36a486 ("iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)"), skipping: failed to "CreatePodSandbox" for "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" with CreatePodSandboxError: "CreatePodSandbox for pod \"iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)\" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod \"iis_default\" network: netplugin failed but error parsing its diagnostic message \"\": unexpected end of JSON input"
I0702 16:31:39.046013 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerDied", Data:"32df99607430163d4986a43ba311ad2af372f74bbd47432b0cf4ae03d5af914c"}
W0702 16:31:39.046124 3800 pod_container_deletor.go:77] Container "32df99607430163d4986a43ba311ad2af372f74bbd47432b0cf4ae03d5af914c" not found in pod's containers
I0702 16:31:39.346940 3800 kuberuntime_manager.go:403] No ready sandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" can be found. Need to start a new one
E0702 16:31:41.207726 3800 docker_sandbox.go:657] ResolvConfPath is empty.
E0702 16:31:41.211726 3800 helpers.go:739] eviction manager: failed to construct signal: "allocatableMemory.available" error: system container "pods" not found in metrics
W0702 16:31:41.211726 3800 helpers.go:812] eviction manager: no observation found for eviction signal nodefs.inodesFree
I0702 16:31:41.230725 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerStarted", Data:"1bd9d89baade92747c1799beda763438068b16c686f3b6272b982f04f768c246"}
{"level":"debug","msg":"[cni-net] Plugin wcn-net version b9c3a1d-dirty.","time":"2018-07-02T16:31:41Z"}
{"level":"debug","msg":"[net] Network interface: {Index:13 MTU:1500 Name:vEthernet (Ethernet 3) HardwareAddr:00:0d:3a:36:aa:b4 Flags:up|broadcast|multicast} with IP addresses: [fe80::3c58:1b0:c6f2:43af/64 10.240.0.7/16]","time":"2018-07-02T16:31:41Z"}
{"level":"debug","msg":"[net] Network interface: {Index:1 MTU:-1 Name:Loopback Pseudo-Interface 1 HardwareAddr: Flags:up|loopback|multicast} with IP addresses: [::1/128 127.0.0.1/8]","time":"2018-07-02T16:31:41Z"}
{"level":"debug","msg":"[net] Network interface: {Index:2 MTU:1500 Name:vEthernet (nat) HardwareAddr:00:15:5d:95:9c:c6 Flags:up|broadcast|multicast} with IP addresses: [fe80::1cd:2ac0:72c7:89fb/64 172.31.64.1/20]","time":"2018-07-02T16:31:41Z"}
{"level":"debug","msg":"[cni-net] Plugin started.","time":"2018-07-02T16:31:41Z"}
{"level":"debug","msg":"[cni-net] Processing ADD command with args {ContainerID:1bd9d89baade92747c1799beda763438068b16c686f3b6272b982f04f768c246 Netns:none IfName:eth0 Args:IgnoreUnknown=1;K8S_POD_NAMESPACE=default;K8S_POD_NAME=iis;K8S_POD_INFRA_CONTAINER_ID=1bd9d89baade92747c1799beda763438068b16c686f3b6272b982f04f768c246 Path:/opt/wincni.exe/bin;c:\\k\\cni}.","time":"2018-07-02T16:31:41Z"}
{"level":"debug","msg":"[cni-net] Read network configuration \u0026{CniVersion:0.2.0 Name:l2bridge Type:wincni.exe Ipam:{Type: Environment:azure AddrSpace: Subnet:\u003cnone\u003e Address: QueryInterval: Routes:[{Dst:{IP:\u003cnil\u003e Mask:\u003cnil\u003e} GW:10.240.0.1}]} DNS:{Nameservers:[10.0.0.10] Domain: Search:[svc.cluster.local] Options:[]} RuntimeConfig:{PortMappings:[]} AdditionalArgs:[{Name:EndpointPolicy Value:[123 34 69 120 99 101 112 116 105 111 110 76 105 115 116 34 58 91 34 49 48 46 50 52 52 46 48 46 48 47 49 54 34 44 34 49 48 46 50 52 48 46 48 46 48 47 49 54 34 93 44 34 84 121 112 101 34 58 34 79 117 116 66 111 117 110 100 78 65 84 34 125]} {Name:EndpointPolicy Value:[123 34 68 101 115 116 105 110 97 116 105 111 110 80 114 101 102 105 120 34 58 34 49 48 46 48 46 48 46 48 47 49 54 34 44 34 78 101 101 100 69 110 99 97 112 34 58 116 114 117 101 44 34 84 121 112 101 34 58 34 82 79 85 84 69 34 125]}]}.","time":"2018-07-02T16:31:41Z"}
panic: runtime error: index out of range
goroutine 1 [running]:
visualstudio.com/containernetworking/cni/cni.(*NetworkConfig).GetNetworkInfo(0xc042040140, 0x29)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/cni.go:175 +0x70e
visualstudio.com/containernetworking/cni/cni/network.(*netPlugin).Add(0xc042002540, 0xc04207a070, 0x1, 0x0)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/network.go:108 +0x35b
visualstudio.com/containernetworking/cni/cni.(PluginApi).Add-fm(0xc04207a070, 0xc04201fbc8, 0x5)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0x40
github.com/containernetworking/cni/pkg/skel.(*dispatcher).checkVersionAndCall(0xc042036280, 0xc04207a070, 0x6311a0, 0xc0420a61e0, 0xc042059e78, 0x0, 0x41055f)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:162 +0x1a6
github.com/containernetworking/cni/pkg/skel.(*dispatcher).pluginMain(0xc042036280, 0xc042059e78, 0xc042059e90, 0x6311a0, 0xc0420a61e0, 0xc0420a61e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:173 +0x2a9
github.com/containernetworking/cni/pkg/skel.PluginMainWithError(0xc042059e78, 0xc042059e90, 0x6311a0, 0xc0420a61e0, 0xc0420a61e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:210 +0xf4
visualstudio.com/containernetworking/cni/cni.(*Plugin).Execute(0xc042004038, 0x631520, 0xc042002540, 0x0, 0xc04206bc20)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0xf9
main.main()
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/plugin/main.go:43 +0x35c
E0702 16:31:41.272766 3800 cni.go:259] Error adding network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:41.272766 3800 cni.go:227] Error while adding to cni network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
I0702 16:31:42.555106 3800 kubelet_node_status.go:491] Using Node Hostname from cloudprovider: "31252acs000003"
E0702 16:31:43.008268 3800 remote_runtime.go:92] RunPodSandbox from runtime service failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:43.008268 3800 kuberuntime_sandbox.go:54] CreatePodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:43.008268 3800 kuberuntime_manager.go:646] createPodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:43.008268 3800 pod_workers.go:186] Error syncing pod d3f75963-7e13-11e8-a6e8-000d3a36a486 ("iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)"), skipping: failed to "CreatePodSandbox" for "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" with CreatePodSandboxError: "CreatePodSandbox for pod \"iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)\" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod \"iis_default\" network: netplugin failed but error parsing its diagnostic message \"\": unexpected end of JSON input"
I0702 16:31:43.253680 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerDied", Data:"1bd9d89baade92747c1799beda763438068b16c686f3b6272b982f04f768c246"}
W0702 16:31:43.253680 3800 pod_container_deletor.go:77] Container "1bd9d89baade92747c1799beda763438068b16c686f3b6272b982f04f768c246" not found in pod's containers
I0702 16:31:43.554206 3800 kuberuntime_manager.go:403] No ready sandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" can be found. Need to start a new one
E0702 16:31:45.470934 3800 docker_sandbox.go:657] ResolvConfPath is empty.
I0702 16:31:45.489934 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerStarted", Data:"06ba05f8cb614f0916f4ba3953323b7c2b5c67719438041fbaf4f67c93bd7b09"}
{"level":"debug","msg":"[cni-net] Plugin wcn-net version b9c3a1d-dirty.","time":"2018-07-02T16:31:45Z"}
{"level":"debug","msg":"[net] Network interface: {Index:13 MTU:1500 Name:vEthernet (Ethernet 3) HardwareAddr:00:0d:3a:36:aa:b4 Flags:up|broadcast|multicast} with IP addresses: [fe80::3c58:1b0:c6f2:43af/64 10.240.0.7/16]","time":"2018-07-02T16:31:45Z"}
{"level":"debug","msg":"[net] Network interface: {Index:1 MTU:-1 Name:Loopback Pseudo-Interface 1 HardwareAddr: Flags:up|loopback|multicast} with IP addresses: [::1/128 127.0.0.1/8]","time":"2018-07-02T16:31:45Z"}
{"level":"debug","msg":"[net] Network interface: {Index:2 MTU:1500 Name:vEthernet (nat) HardwareAddr:00:15:5d:95:9c:c6 Flags:up|broadcast|multicast} with IP addresses: [fe80::1cd:2ac0:72c7:89fb/64 172.31.64.1/20]","time":"2018-07-02T16:31:45Z"}
{"level":"debug","msg":"[cni-net] Plugin started.","time":"2018-07-02T16:31:45Z"}
{"level":"debug","msg":"[cni-net] Processing ADD command with args {ContainerID:06ba05f8cb614f0916f4ba3953323b7c2b5c67719438041fbaf4f67c93bd7b09 Netns:none IfName:eth0 Args:IgnoreUnknown=1;K8S_POD_NAMESPACE=default;K8S_POD_NAME=iis;K8S_POD_INFRA_CONTAINER_ID=06ba05f8cb614f0916f4ba3953323b7c2b5c67719438041fbaf4f67c93bd7b09 Path:/opt/wincni.exe/bin;c:\\k\\cni}.","time":"2018-07-02T16:31:45Z"}
{"level":"debug","msg":"[cni-net] Read network configuration \u0026{CniVersion:0.2.0 Name:l2bridge Type:wincni.exe Ipam:{Type: Environment:azure AddrSpace: Subnet:\u003cnone\u003e Address: QueryInterval: Routes:[{Dst:{IP:\u003cnil\u003e Mask:\u003cnil\u003e} GW:10.240.0.1}]} DNS:{Nameservers:[10.0.0.10] Domain: Search:[svc.cluster.local] Options:[]} RuntimeConfig:{PortMappings:[]} AdditionalArgs:[{Name:EndpointPolicy Value:[123 34 69 120 99 101 112 116 105 111 110 76 105 115 116 34 58 91 34 49 48 46 50 52 52 46 48 46 48 47 49 54 34 44 34 49 48 46 50 52 48 46 48 46 48 47 49 54 34 93 44 34 84 121 112 101 34 58 34 79 117 116 66 111 117 110 100 78 65 84 34 125]} {Name:EndpointPolicy Value:[123 34 68 101 115 116 105 110 97 116 105 111 110 80 114 101 102 105 120 34 58 34 49 48 46 48 46 48 46 48 47 49 54 34 44 34 78 101 101 100 69 110 99 97 112 34 58 116 114 117 101 44 34 84 121 112 101 34 58 34 82 79 85 84 69 34 125]}]}.","time":"2018-07-02T16:31:45Z"}
panic: runtime error: index out of range
goroutine 1 [running]:
visualstudio.com/containernetworking/cni/cni.(*NetworkConfig).GetNetworkInfo(0xc04204c140, 0x29)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/cni.go:175 +0x70e
visualstudio.com/containernetworking/cni/cni/network.(*netPlugin).Add(0xc042044500, 0xc042094070, 0x1, 0x0)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/network.go:108 +0x35b
visualstudio.com/containernetworking/cni/cni.(PluginApi).Add-fm(0xc042094070, 0xc04204bbc8, 0x5)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0x40
github.com/containernetworking/cni/pkg/skel.(*dispatcher).checkVersionAndCall(0xc042046240, 0xc042094070, 0x6311a0, 0xc0420c81e0, 0xc042065e78, 0x0, 0x41055f)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:162 +0x1a6
github.com/containernetworking/cni/pkg/skel.(*dispatcher).pluginMain(0xc042046240, 0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:173 +0x2a9
github.com/containernetworking/cni/pkg/skel.PluginMainWithError(0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:210 +0xf4
visualstudio.com/containernetworking/cni/cni.(*Plugin).Execute(0xc042068028, 0x631520, 0xc042044500, 0x0, 0xc04207fc20)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0xf9
main.main()
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/plugin/main.go:43 +0x35c
E0702 16:31:45.542967 3800 cni.go:259] Error adding network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:45.542967 3800 cni.go:227] Error while adding to cni network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:47.211915 3800 remote_runtime.go:92] RunPodSandbox from runtime service failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:47.211915 3800 kuberuntime_sandbox.go:54] CreatePodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:47.211915 3800 kuberuntime_manager.go:646] createPodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:47.211915 3800 pod_workers.go:186] Error syncing pod d3f75963-7e13-11e8-a6e8-000d3a36a486 ("iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)"), skipping: failed to "CreatePodSandbox" for "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" with CreatePodSandboxError: "CreatePodSandbox for pod \"iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)\" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod \"iis_default\" network: netplugin failed but error parsing its diagnostic message \"\": unexpected end of JSON input"
I0702 16:31:47.515644 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerDied", Data:"06ba05f8cb614f0916f4ba3953323b7c2b5c67719438041fbaf4f67c93bd7b09"}
W0702 16:31:47.515644 3800 pod_container_deletor.go:77] Container "06ba05f8cb614f0916f4ba3953323b7c2b5c67719438041fbaf4f67c93bd7b09" not found in pod's containers
I0702 16:31:47.817025 3800 kuberuntime_manager.go:403] No ready sandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" can be found. Need to start a new one
E0702 16:31:49.589622 3800 docker_sandbox.go:657] ResolvConfPath is empty.
I0702 16:31:49.631624 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerStarted", Data:"7b6ed48138fe6a54f38a365ea8401679333ab9ad98c191315ec8f9aeae20a03f"}
{"level":"debug","msg":"[cni-net] Plugin wcn-net version b9c3a1d-dirty.","time":"2018-07-02T16:31:49Z"}
{"level":"debug","msg":"[net] Network interface: {Index:13 MTU:1500 Name:vEthernet (Ethernet 3) HardwareAddr:00:0d:3a:36:aa:b4 Flags:up|broadcast|multicast} with IP addresses: [fe80::3c58:1b0:c6f2:43af/64 10.240.0.7/16]","time":"2018-07-02T16:31:49Z"}
{"level":"debug","msg":"[net] Network interface: {Index:1 MTU:-1 Name:Loopback Pseudo-Interface 1 HardwareAddr: Flags:up|loopback|multicast} with IP addresses: [::1/128 127.0.0.1/8]","time":"2018-07-02T16:31:49Z"}
{"level":"debug","msg":"[net] Network interface: {Index:2 MTU:1500 Name:vEthernet (nat) HardwareAddr:00:15:5d:95:9c:c6 Flags:up|broadcast|multicast} with IP addresses: [fe80::1cd:2ac0:72c7:89fb/64 172.31.64.1/20]","time":"2018-07-02T16:31:49Z"}
{"level":"debug","msg":"[cni-net] Plugin started.","time":"2018-07-02T16:31:49Z"}
{"level":"debug","msg":"[cni-net] Processing ADD command with args {ContainerID:7b6ed48138fe6a54f38a365ea8401679333ab9ad98c191315ec8f9aeae20a03f Netns:none IfName:eth0 Args:IgnoreUnknown=1;K8S_POD_NAMESPACE=default;K8S_POD_NAME=iis;K8S_POD_INFRA_CONTAINER_ID=7b6ed48138fe6a54f38a365ea8401679333ab9ad98c191315ec8f9aeae20a03f Path:/opt/wincni.exe/bin;c:\\k\\cni}.","time":"2018-07-02T16:31:49Z"}
{"level":"debug","msg":"[cni-net] Read network configuration \u0026{CniVersion:0.2.0 Name:l2bridge Type:wincni.exe Ipam:{Type: Environment:azure AddrSpace: Subnet:\u003cnone\u003e Address: QueryInterval: Routes:[{Dst:{IP:\u003cnil\u003e Mask:\u003cnil\u003e} GW:10.240.0.1}]} DNS:{Nameservers:[10.0.0.10] Domain: Search:[svc.cluster.local] Options:[]} RuntimeConfig:{PortMappings:[]} AdditionalArgs:[{Name:EndpointPolicy Value:[123 34 69 120 99 101 112 116 105 111 110 76 105 115 116 34 58 91 34 49 48 46 50 52 52 46 48 46 48 47 49 54 34 44 34 49 48 46 50 52 48 46 48 46 48 47 49 54 34 93 44 34 84 121 112 101 34 58 34 79 117 116 66 111 117 110 100 78 65 84 34 125]} {Name:EndpointPolicy Value:[123 34 68 101 115 116 105 110 97 116 105 111 110 80 114 101 102 105 120 34 58 34 49 48 46 48 46 48 46 48 47 49 54 34 44 34 78 101 101 100 69 110 99 97 112 34 58 116 114 117 101 44 34 84 121 112 101 34 58 34 82 79 85 84 69 34 125]}]}.","time":"2018-07-02T16:31:49Z"}
panic: runtime error: index out of range
goroutine 1 [running]:
visualstudio.com/containernetworking/cni/cni.(*NetworkConfig).GetNetworkInfo(0xc04204c140, 0x29)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/cni.go:175 +0x70e
visualstudio.com/containernetworking/cni/cni/network.(*netPlugin).Add(0xc042044500, 0xc042094070, 0x1, 0x0)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/network.go:108 +0x35b
visualstudio.com/containernetworking/cni/cni.(PluginApi).Add-fm(0xc042094070, 0xc04204bbc8, 0x5)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0x40
github.com/containernetworking/cni/pkg/skel.(*dispatcher).checkVersionAndCall(0xc042046240, 0xc042094070, 0x6311a0, 0xc0420c81e0, 0xc042065e78, 0x0, 0x41055f)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:162 +0x1a6
github.com/containernetworking/cni/pkg/skel.(*dispatcher).pluginMain(0xc042046240, 0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:173 +0x2a9
github.com/containernetworking/cni/pkg/skel.PluginMainWithError(0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:210 +0xf4
visualstudio.com/containernetworking/cni/cni.(*Plugin).Execute(0xc042068028, 0x631520, 0xc042044500, 0x0, 0xc04207fc20)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0xf9
main.main()
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/plugin/main.go:43 +0x35c
E0702 16:31:49.670629 3800 cni.go:259] Error adding network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:49.670629 3800 cni.go:227] Error while adding to cni network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:51.131815 3800 remote_runtime.go:92] RunPodSandbox from runtime service failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:51.131815 3800 kuberuntime_sandbox.go:54] CreatePodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:51.131815 3800 kuberuntime_manager.go:646] createPodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:51.131815 3800 pod_workers.go:186] Error syncing pod d3f75963-7e13-11e8-a6e8-000d3a36a486 ("iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)"), skipping: failed to "CreatePodSandbox" for "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" with CreatePodSandboxError: "CreatePodSandbox for pod \"iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)\" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod \"iis_default\" network: netplugin failed but error parsing its diagnostic message \"\": unexpected end of JSON input"
E0702 16:31:51.245813 3800 helpers.go:739] eviction manager: failed to construct signal: "allocatableMemory.available" error: system container "pods" not found in metrics
W0702 16:31:51.245813 3800 helpers.go:812] eviction manager: no observation found for eviction signal nodefs.inodesFree
E0702 16:31:51.698736 3800 kuberuntime_manager.go:859] PodSandboxStatus of sandbox "7f2f2e1efa23227f3f28a0cc7367557213ced179f8d3b80859e688aa496c8136" for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" error: rpc error: code = Unknown desc = Error: No such container: 7f2f2e1efa23227f3f28a0cc7367557213ced179f8d3b80859e688aa496c8136
E0702 16:31:51.698736 3800 generic.go:241] PLEG: Ignoring events for pod iis/default: rpc error: code = Unknown desc = Error: No such container: 7f2f2e1efa23227f3f28a0cc7367557213ced179f8d3b80859e688aa496c8136
E0702 16:31:51.698736 3800 pod_workers.go:186] Error syncing pod d3f75963-7e13-11e8-a6e8-000d3a36a486 ("iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)"), skipping: rpc error: code = Unknown desc = Error: No such container: 7f2f2e1efa23227f3f28a0cc7367557213ced179f8d3b80859e688aa496c8136
I0702 16:31:52.572084 3800 kubelet_node_status.go:491] Using Node Hostname from cloudprovider: "31252acs000003"
I0702 16:31:52.702132 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerDied", Data:"7b6ed48138fe6a54f38a365ea8401679333ab9ad98c191315ec8f9aeae20a03f"}
W0702 16:31:52.703126 3800 pod_container_deletor.go:77] Container "7b6ed48138fe6a54f38a365ea8401679333ab9ad98c191315ec8f9aeae20a03f" not found in pod's containers
I0702 16:31:53.003297 3800 kuberuntime_manager.go:403] No ready sandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" can be found. Need to start a new one
E0702 16:31:54.892639 3800 docker_sandbox.go:657] ResolvConfPath is empty.
I0702 16:31:54.901097 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerStarted", Data:"42bbc1056cfdd906c72a644fc523ae422848fc282fc8e559337dc6e0b1910805"}
{"level":"debug","msg":"[cni-net] Plugin wcn-net version b9c3a1d-dirty.","time":"2018-07-02T16:31:54Z"}
{"level":"debug","msg":"[net] Network interface: {Index:13 MTU:1500 Name:vEthernet (Ethernet 3) HardwareAddr:00:0d:3a:36:aa:b4 Flags:up|broadcast|multicast} with IP addresses: [fe80::3c58:1b0:c6f2:43af/64 10.240.0.7/16]","time":"2018-07-02T16:31:54Z"}
{"level":"debug","msg":"[net] Network interface: {Index:1 MTU:-1 Name:Loopback Pseudo-Interface 1 HardwareAddr: Flags:up|loopback|multicast} with IP addresses: [::1/128 127.0.0.1/8]","time":"2018-07-02T16:31:54Z"}
{"level":"debug","msg":"[net] Network interface: {Index:2 MTU:1500 Name:vEthernet (nat) HardwareAddr:00:15:5d:95:9c:c6 Flags:up|broadcast|multicast} with IP addresses: [fe80::1cd:2ac0:72c7:89fb/64 172.31.64.1/20]","time":"2018-07-02T16:31:54Z"}
{"level":"debug","msg":"[cni-net] Plugin started.","time":"2018-07-02T16:31:54Z"}
{"level":"debug","msg":"[cni-net] Processing ADD command with args {ContainerID:42bbc1056cfdd906c72a644fc523ae422848fc282fc8e559337dc6e0b1910805 Netns:none IfName:eth0 Args:IgnoreUnknown=1;K8S_POD_NAMESPACE=default;K8S_POD_NAME=iis;K8S_POD_INFRA_CONTAINER_ID=42bbc1056cfdd906c72a644fc523ae422848fc282fc8e559337dc6e0b1910805 Path:/opt/wincni.exe/bin;c:\\k\\cni}.","time":"2018-07-02T16:31:54Z"}
{"level":"debug","msg":"[cni-net] Read network configuration \u0026{CniVersion:0.2.0 Name:l2bridge Type:wincni.exe Ipam:{Type: Environment:azure AddrSpace: Subnet:\u003cnone\u003e Address: QueryInterval: Routes:[{Dst:{IP:\u003cnil\u003e Mask:\u003cnil\u003e} GW:10.240.0.1}]} DNS:{Nameservers:[10.0.0.10] Domain: Search:[svc.cluster.local] Options:[]} RuntimeConfig:{PortMappings:[]} AdditionalArgs:[{Name:EndpointPolicy Value:[123 34 69 120 99 101 112 116 105 111 110 76 105 115 116 34 58 91 34 49 48 46 50 52 52 46 48 46 48 47 49 54 34 44 34 49 48 46 50 52 48 46 48 46 48 47 49 54 34 93 44 34 84 121 112 101 34 58 34 79 117 116 66 111 117 110 100 78 65 84 34 125]} {Name:EndpointPolicy Value:[123 34 68 101 115 116 105 110 97 116 105 111 110 80 114 101 102 105 120 34 58 34 49 48 46 48 46 48 46 48 47 49 54 34 44 34 78 101 101 100 69 110 99 97 112 34 58 116 114 117 101 44 34 84 121 112 101 34 58 34 82 79 85 84 69 34 125]}]}.","time":"2018-07-02T16:31:54Z"}
panic: runtime error: index out of range
goroutine 1 [running]:
visualstudio.com/containernetworking/cni/cni.(*NetworkConfig).GetNetworkInfo(0xc04204c140, 0x29)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/cni.go:175 +0x70e
visualstudio.com/containernetworking/cni/cni/network.(*netPlugin).Add(0xc042044500, 0xc042094070, 0x1, 0x0)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/network.go:108 +0x35b
visualstudio.com/containernetworking/cni/cni.(PluginApi).Add-fm(0xc042094070, 0xc04204bbc8, 0x5)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0x40
github.com/containernetworking/cni/pkg/skel.(*dispatcher).checkVersionAndCall(0xc042046240, 0xc042094070, 0x6311a0, 0xc0420c81e0, 0xc042065e78, 0x0, 0x41055f)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:162 +0x1a6
github.com/containernetworking/cni/pkg/skel.(*dispatcher).pluginMain(0xc042046240, 0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:173 +0x2a9
github.com/containernetworking/cni/pkg/skel.PluginMainWithError(0xc042065e78, 0xc042065e90, 0x6311a0, 0xc0420c81e0, 0xc0420c81e0)
/home/madhanm/repo/gopath/src/github.com/containernetworking/cni/pkg/skel/skel.go:210 +0xf4
visualstudio.com/containernetworking/cni/cni.(*Plugin).Execute(0xc042068028, 0x631520, 0xc042044500, 0x0, 0xc04207fc20)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/plugin.go:49 +0xf9
main.main()
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/network/plugin/main.go:43 +0x35c
E0702 16:31:54.972096 3800 cni.go:259] Error adding network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:54.972096 3800 cni.go:227] Error while adding to cni network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:56.789613 3800 remote_runtime.go:92] RunPodSandbox from runtime service failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:56.790619 3800 kuberuntime_sandbox.go:54] CreatePodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:56.790619 3800 kuberuntime_manager.go:646] createPodSandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod "iis_default" network: netplugin failed but error parsing its diagnostic message "": unexpected end of JSON input
E0702 16:31:56.790619 3800 pod_workers.go:186] Error syncing pod d3f75963-7e13-11e8-a6e8-000d3a36a486 ("iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)"), skipping: failed to "CreatePodSandbox" for "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" with CreatePodSandboxError: "CreatePodSandbox for pod \"iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)\" failed: rpc error: code = Unknown desc = NetworkPlugin cni failed to set up pod \"iis_default\" network: netplugin failed but error parsing its diagnostic message \"\": unexpected end of JSON input"
I0702 16:31:56.911487 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerDied", Data:"42bbc1056cfdd906c72a644fc523ae422848fc282fc8e559337dc6e0b1910805"}
W0702 16:31:56.911487 3800 pod_container_deletor.go:77] Container "42bbc1056cfdd906c72a644fc523ae422848fc282fc8e559337dc6e0b1910805" not found in pod's containers
I0702 16:31:57.211550 3800 kuberuntime_manager.go:403] No ready sandbox for pod "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)" can be found. Need to start a new one
E0702 16:31:59.183924 3800 docker_sandbox.go:657] ResolvConfPath is empty.
I0702 16:31:59.191927 3800 kubelet.go:1906] SyncLoop (PLEG): "iis_default(d3f75963-7e13-11e8-a6e8-000d3a36a486)", event: &pleg.PodLifecycleEvent{ID:"d3f75963-7e13-11e8-a6e8-000d3a36a486", Type:"ContainerStarted", Data:"c4baa14a4631577ca0a112421fa296f40e23d9886aff5e2c647f79541f8c21e0"}
{"level":"debug","msg":"[cni-net] Plugin wcn-net version b9c3a1d-dirty.","time":"2018-07-02T16:31:59Z"}
{"level":"debug","msg":"[net] Network interface: {Index:13 MTU:1500 Name:vEthernet (Ethernet 3) HardwareAddr:00:0d:3a:36:aa:b4 Flags:up|broadcast|multicast} with IP addresses: [fe80::3c58:1b0:c6f2:43af/64 10.240.0.7/16]","time":"2018-07-02T16:31:59Z"}
{"level":"debug","msg":"[net] Network interface: {Index:1 MTU:-1 Name:Loopback Pseudo-Interface 1 HardwareAddr: Flags:up|loopback|multicast} with IP addresses: [::1/128 127.0.0.1/8]","time":"2018-07-02T16:31:59Z"}
{"level":"debug","msg":"[net] Network interface: {Index:2 MTU:1500 Name:vEthernet (nat) HardwareAddr:00:15:5d:95:9c:c6 Flags:up|broadcast|multicast} with IP addresses: [fe80::1cd:2ac0:72c7:89fb/64 172.31.64.1/20]","time":"2018-07-02T16:31:59Z"}
{"level":"debug","msg":"[cni-net] Plugin started.","time":"2018-07-02T16:31:59Z"}
{"level":"debug","msg":"[cni-net] Processing ADD command with args {ContainerID:c4baa14a4631577ca0a112421fa296f40e23d9886aff5e2c647f79541f8c21e0 Netns:none IfName:eth0 Args:IgnoreUnknown=1;K8S_POD_NAMESPACE=default;K8S_POD_NAME=iis;K8S_POD_INFRA_CONTAINER_ID=c4baa14a4631577ca0a112421fa296f40e23d9886aff5e2c647f79541f8c21e0 Path:/opt/wincni.exe/bin;c:\\k\\cni}.","time":"2018-07-02T16:31:59Z"}
{"level":"debug","msg":"[cni-net] Read network configuration \u0026{CniVersion:0.2.0 Name:l2bridge Type:wincni.exe Ipam:{Type: Environment:azure AddrSpace: Subnet:\u003cnone\u003e Address: QueryInterval: Routes:[{Dst:{IP:\u003cnil\u003e Mask:\u003cnil\u003e} GW:10.240.0.1}]} DNS:{Nameservers:[10.0.0.10] Domain: Search:[svc.cluster.local] Options:[]} RuntimeConfig:{PortMappings:[]} AdditionalArgs:[{Name:EndpointPolicy Value:[123 34 69 120 99 101 112 116 105 111 110 76 105 115 116 34 58 91 34 49 48 46 50 52 52 46 48 46 48 47 49 54 34 44 34 49 48 46 50 52 48 46 48 46 48 47 49 54 34 93 44 34 84 121 112 101 34 58 34 79 117 116 66 111 117 110 100 78 65 84 34 125]} {Name:EndpointPolicy Value:[123 34 68 101 115 116 105 110 97 116 105 111 110 80 114 101 102 105 120 34 58 34 49 48 46 48 46 48 46 48 47 49 54 34 44 34 78 101 101 100 69 110 99 97 112 34 58 116 114 117 101 44 34 84 121 112 101 34 58 34 82 79 85 84 69 34 125]}]}.","time":"2018-07-02T16:31:59Z"}
panic: runtime error: index out of range
goroutine 1 [running]:
visualstudio.com/containernetworking/cni/cni.(*NetworkConfig).GetNetworkInfo(0xc04204c140, 0x29)
/home/madhanm/repo/gopath/src/visualstudio.com/containernetworking/cni/cni/cni.go:175 +0x70e
visualstudio.com/containernetworking/cni/cni/network.(*netPlugin).Add(0xc042044500, 0xc042094070, 0x1, 0x0)