-
Notifications
You must be signed in to change notification settings - Fork 16
/
THIRDPARTY.txt
3591 lines (2993 loc) · 218 KB
/
THIRDPARTY.txt
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
Copyright 2021
Cloud One Container Security
License Attributions
============================================================================
This product includes or may include the following:
Components:
benbjohnson-clock v1.1.0 : MIT License
beorn7-perks 20180510-snapshot-3a771d99 : MIT License
beorn7-perks v1.0.0 : MIT License
beorn7-perks v1.0.1 : MIT License
cespare/xxhash v1.1.0 : MIT License
client-go v0.22.2-rc.0 : Apache License 2.0
client_golang v0.9.1 : Apache License 2.0
client_golang v1.0.0 : Apache License 2.0
client_golang v1.11.0 : Apache License 2.0
client_golang v1.7.1 : Apache License 2.0
dgryski-go-farm 20190613-snapshot-6a90982e : MIT License
eclipse-paho.mqtt.golang v1.3.5 : Eclipse Distribution License - v 1.0
falcosecurity/libs : Apache License 2.0
falco ebpf programs : Apache License 2.0
fsnotify-fsnotify v1.4.7 : BSD 3-clause "New" or "Revised" License
fsnotify-fsnotify v1.4.9 : BSD 3-clause "New" or "Revised" License
github.com/go-logr/zapr 0.4.0 : Apache License 2.0
Go Testify v1.2.2 : MIT License
Go Testify v1.3.0 : MIT License
Go Testify v1.4.0 : Apache License 2.0
Go Testify v1.5.1 : MIT License
Go Testify v1.6.1 : MIT License
Go Testify v1.7.0 : MIT License
go-check-check 20171108-snapshot-20d25e28 : BSD 2-clause "Simplified" License
go-check-check 20180628-snapshot-788fd784 : BSD 2-clause "Simplified" License
go-check-check 20190902-snapshot-41f04d3b : BSD 2-clause "Simplified" License
go-check-check 20200227-snapshot-8fa46927 : BSD 2-clause "Simplified" License
go-check-check 20201130-snapshot-10cb9826 : BSD 2-clause "Simplified" License
go-inf-inf v0.9.1 : BSD 3-clause "New" or "Revised" License
go-logr/logr 0.4.0 : Apache License 2.0
go-logr/logr v0.1.0 : Apache License 2.0
go-playground-universal-translator v0.17.0 : MIT License
go-playground-universal-translator v0.18.0 : MIT License
go-playground/locales v0.13.0 : MIT License
go-playground/locales v0.14.0 : MIT License
go-spew v1.1.0 : ISC License
go-spew v1.1.1 : ISC License
go-tomb-tomb 20150422-snapshot-dd632973 : BSD 3-clause "New" or "Revised" License
go-zap v1.17.0 : MIT License
go-zap v1.19.0 : MIT License
go-zap v1.19.1 : MIT License
go.googlesource.com/tools 20180907-snapshot-90fa682c : BSD 3-clause "New" or "Revised" License
go.googlesource.com/tools 20190311-snapshot-11955173 : BSD 3-clause "New" or "Revised" License
go.googlesource.com/tools 20191108-snapshot-7d206e10 : BSD 3-clause "New" or "Revised" License
go.googlesource.com/tools 20191119-snapshot-298f0cb1 : BSD 3-clause "New" or "Revised" License
go.googlesource.com/tools 20201222-snapshot-2b0845dc : BSD 3-clause "New" or "Revised" License
go.googlesource.com/tools v0.1.5 : BSD 3-clause "New" or "Revised" License
go.uber.org/goleak 20210813-snapshot-69116035 : MIT License
go.uber.org/goleak v1.1.10 : MIT License
go.uber.org/multierr v1.6.0 : MIT License
GoDoc Text v0.1.0 : MIT License
GoDoc Text v0.2.0 : MIT License
gogo-protobuf v1.1.1 : BSD 3-clause "New" or "Revised" License
gogo-protobuf v1.3.2 : BSD 3-clause "New" or "Revised" License
golang protobuf 1.4.2 : BSD 3-clause "New" or "Revised" License
golang protobuf 20200220-snapshot-67d41d38 : BSD 3-clause "New" or "Revised" License
golang protobuf 20200313-snapshot-b860323f : BSD 3-clause "New" or "Revised" License
golang protobuf v1.2.0 : BSD 3-clause "New" or "Revised" License
golang protobuf v1.3.1 : BSD 3-clause "New" or "Revised" License
golang protobuf v1.3.2 : BSD 3-clause "New" or "Revised" License
golang protobuf v1.4.0-rc.1 : BSD 3-clause "New" or "Revised" License
golang protobuf v1.4.3 : BSD 3-clause "New" or "Revised" License
golang protobuf v1.5.0 : BSD 3-clause "New" or "Revised" License
golang protobuf v1.5.2 : BSD 3-clause "New" or "Revised" License
golang-github-spf13-pflag-dev 20170714-snapshot-9ff6c692 : BSD 3-clause "New" or "Revised" License
golang-github-spf13-pflag-dev v1.0.5-rc1 : BSD 3-clause "New" or "Revised" License
golang.org/x/crypto 20180503-snapshot-c2843e01 : BSD 3-clause "New" or "Revised" License
golang.org/x/crypto 20180831-snapshot-0709b304 : BSD 3-clause "New" or "Revised" License
golang.org/x/crypto 20191011-snapshot-87dc89f0 : BSD 3-clause "New" or "Revised" License
golang.org/x/crypto 20200622-snapshot-75b28801 : BSD 3-clause "New" or "Revised" License
golang.org/x/crypto 20210219-snapshot-5ea612d1 : BSD 3-clause "New" or "Revised" License
golang.org/x/crypto 20210710-snapshot-a769d52b : BSD 3-clause "New" or "Revised" License
golang.org/x/lint 20190930-snapshot-16217165 : BSD 3-clause "New" or "Revised" License
golang.org/x/mod v0.3.0 : BSD 3-clause "New" or "Revised" License
golang.org/x/mod v0.4.2 : BSD 3-clause "New" or "Revised" License
golang.org/x/net 20180724-snapshot-3673e40b : BSD 3-clause "New" or "Revised" License
golang.org/x/net 20180906-snapshot-161cd47e : BSD 3-clause "New" or "Revised" License
golang.org/x/net 20181114-snapshot-adae6a3d : BSD 3-clause "New" or "Revised" License
golang.org/x/net 20181219-snapshot-1e06a53d : BSD 3-clause "New" or "Revised" License
golang.org/x/net 20190311-snapshot-d8887717 : BSD 3-clause "New" or "Revised" License
golang.org/x/net 20190402-snapshot-eb5bcb51 : BSD 3-clause "New" or "Revised" License
golang.org/x/net 20190603-snapshot-60506f45 : BSD 3-clause "New" or "Revised" License
golang.org/x/net 20190613-snapshot-d28f0bde : BSD 3-clause "New" or "Revised" License
golang.org/x/net 20190620-snapshot-3b0461ee : BSD 3-clause "New" or "Revised" License
golang.org/x/net 20200324-snapshot-d3edc997 : BSD 3-clause "New" or "Revised" License
golang.org/x/net 20200425-snapshot-ff2c4b7c : BSD 3-clause "New" or "Revised" License
golang.org/x/net 20200518-snapshot-59133d7f : BSD 3-clause "New" or "Revised" License
golang.org/x/net 20200624-snapshot-4c525460 : BSD 3-clause "New" or "Revised" License
golang.org/x/net 20200628-snapshot-f5854403 : BSD 3-clause "New" or "Revised" License
golang.org/x/net 20201123-snapshot-a5a99cb3 : BSD 3-clause "New" or "Revised" License
golang.org/x/net 20210126-snapshot-e18ecbb0 : BSD 3-clause "New" or "Revised" License
golang.org/x/net 20210418-snapshot-37e1c6af : BSD 3-clause "New" or "Revised" License
golang.org/x/net 20210423-snapshot-89ef3d95 : BSD 3-clause "New" or "Revised" License
golang.org/x/oauth2 20190211-snapshot-e64efc72 : BSD 3-clause "New" or "Revised" License
golang.org/x/oauth2 20200107-snapshot-bf48bf16 : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20180905-snapshot-ebe1bf3e : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20180908-snapshot-d0be0721 : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20181116-snapshot-5ac8a444 : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20190215-snapshot-d0b11bda : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20190405-snapshot-97732733 : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20190904-snapshot-749cb33b : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20191005-snapshot-aed5e4c7 : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20191025-snapshot-33540a1f : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20191120-snapshot-bd437916 : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20200106-snapshot-b016eb3d : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20200323-snapshot-85ca7c5b : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20200518-snapshot-fe76b779 : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20200615-snapshot-f1bc7362 : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20200625-snapshot-ddb9806d : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20200930-snapshot-fdedc70b : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20201118-snapshot-f84b799f : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20210111-snapshot-489259a8 : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20210124-snapshot-22da62e1 : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20210330-snapshot-4fbd30ee : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20210422-snapshot-04245dca : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20210510-snapshot-977fb726 : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20210602-snapshot-ebe580a8 : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20210614-snapshot-665e8c73 : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20210616-snapshot-59db8d76 : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20210806-snapshot-bfb29a68 : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20210806-snapshot-e5e7981a : BSD 3-clause "New" or "Revised" License
golang.org/x/term 20200929-snapshot-f5c789dd : BSD 3-clause "New" or "Revised" License
golang.org/x/term 20201126-snapshot-7de9c90e : BSD 3-clause "New" or "Revised" License
golang.org/x/term 20210219-snapshot-6a3ed077 : BSD 3-clause "New" or "Revised" License
golang.org/x/text v0.3.0 : BSD 3-clause "New" or "Revised" License
golang.org/x/text v0.3.2 : BSD 3-clause "New" or "Revised" License
golang.org/x/text v0.3.3 : BSD 3-clause "New" or "Revised" License
golang.org/x/text v0.3.6 : BSD 3-clause "New" or "Revised" License
golang.org/x/time 20210721-snapshot-1f47c861 : BSD 3-clause "New" or "Revised" License
golang.org/x/xerrors 20190516-snapshot-a985d340 : BSD 3-clause "New" or "Revised" License
golang.org/x/xerrors 20190719-snapshot-9bdfabe6 : BSD 3-clause "New" or "Revised" License
golang.org/x/xerrors 20191005-snapshot-1b5146ad : BSD 3-clause "New" or "Revised" License
golang.org/x/xerrors 20200804-snapshot-5ec99f83 : BSD 3-clause "New" or "Revised" License
golang/appengine v1.4.0 : Apache License 2.0
golang/appengine v1.6.7 : Apache License 2.0
gomega 20180518-snapshot-dcabb60a : MIT License
gomega v1.10.1 : MIT License
gomega v1.15.0 : MIT License
gomega v1.7.1 : MIT License
gomodules/jsonpatch v2.2.0 : Apache License 2.0
google-gofuzz v1.0.0 : Apache License 2.0
google-gofuzz v1.1.0 : Apache License 2.0
google.golang.org/protobuf 20200109-snapshot-ec00e32a : BSD 3-clause "New" or "Revised" License
google.golang.org/protobuf 20200221-snapshot-4d8936d0 : BSD 3-clause "New" or "Revised" License
google.golang.org/protobuf 20200227-snapshot-ab0ca4ff : BSD 3-clause "New" or "Revised" License
google.golang.org/protobuf 20200309-snapshot-e05f789c : BSD 3-clause "New" or "Revised" License
google.golang.org/protobuf v1.21.0 : BSD 3-clause "New" or "Revised" License
google.golang.org/protobuf v1.23.0 : BSD 3-clause "New" or "Revised" License
google.golang.org/protobuf v1.26.0-rc.1 : BSD 3-clause "New" or "Revised" License
google/go-cmp v0.3.0 : BSD 3-clause "New" or "Revised" License
google/go-cmp v0.3.1 : BSD 3-clause "New" or "Revised" License
google/go-cmp v0.4.0 : BSD 3-clause "New" or "Revised" License
google/go-cmp v0.5.4 : BSD 3-clause "New" or "Revised" License
google/go-cmp v0.5.5 : BSD 3-clause "New" or "Revised" License
google/uuid v.1.1.2 : BSD 3-clause "New" or "Revised" License
google/uuid v1.1.1 : BSD 3-clause "New" or "Revised" License
google/uuid v1.2.0 : BSD 3-clause "New" or "Revised" License
googleapis/gnostic v0.5.1 : Apache License 2.0
googleapis/gnostic v0.5.5 : Apache License 2.0
gorilla/websocket v1.4.2 : BSD 2-clause "Simplified" License
groupcache 20210331-snapshot-41bb18bf : Apache License 2.0
jsoniter-go v1.1.10 : MIT License
jsoniter-go v1.1.11 : MIT License
jsoniter-go v1.1.6 : MIT License
k8s.io/kube-openapi 20210421-snapshot-95288971 : Apache License 2.0
k8s.io/utils 20210819-snapshot-bdf08cb9 : Apache License 2.0
kr/pretty 0.1.0 : MIT License
kr/pretty 0.2.1 : MIT License
kr/pretty v0.2.0 : MIT License
kr/pretty v0.3.0 : MIT License
kube-rbac-proxy : Apache License 2.0
kubernetes/api v0.22.1 : Apache License 2.0
kubernetes/api v0.22.2 : Apache License 2.0
kubernetes/apiextensions-apiserver v0.22.2 : Apache License 2.0
kubernetes/apimachinery v0.22.1-rc.0 : Apache License 2.0
kubernetes/apimachinery v0.22.2 : Apache License 2.0
kubernetes/component-base v0.22.2 : Apache License 2.0
leodido/go-urn v1.2.0 : MIT License
leodido/go-urn v1.2.1 : MIT License
matttproud-golang_protobuf_extensions 20190325-snapshot-c182affe : Apache License 2.0
matttproud-golang_protobuf_extensions v1.0.1 : Apache License 2.0
mergo 0.3.12 : BSD 3-clause "New" or "Revised" License
mergo v0.3.5 : BSD 3-clause "New" or "Revised" License
modern-go/concurrent 20180228-snapshot-e0a39a4c : Apache License 2.0
modern-go/concurrent 20180305-snapshot-bacd9c7e : Apache License 2.0
modern-go/reflect2 1.0.1 : Apache License 2.0
modern-go/reflect2 20180630-snapshot-4b7aa43c : Apache License 2.0
murmur3 20181015-snapshot-f09979ec : BSD 3-clause "New" or "Revised" License
nxadm/tail v1.4.4 : MIT License
nxadm/tail v1.4.8 : MIT License
OneOfOne/xxhash v1.2.2 : Apache License 2.0
onsi/ginkgo 1.16.4 : MIT License
onsi/ginkgo 20180518-snapshot-11459a88 : MIT License
onsi/ginkgo v1.12.1 : MIT License
onsi/ginkgo v1.14.0 : MIT License
onsi/ginkgo v1.6.0 : MIT License
pkg/errors v0.8.0 : BSD 2-clause "Simplified" License
pkg/errors v0.8.1 : BSD 2-clause "Simplified" License
pkg/errors v0.9.1 : BSD 2-clause "Simplified" License
pmezard-go-difflib 1.0.0 : BSD 3-clause "New" or "Revised" License
prometheus-client_model 20180714-snapshot-5c3871d8 : Apache License 2.0
prometheus-client_model 20190204-snapshot-fd36f422 : Apache License 2.0
prometheus-client_model v0.2.0 : Apache License 2.0
prometheus-common v0.10.0 : Apache License 2.0
prometheus-common v0.26.0 : Apache License 2.0
prometheus-common v0.4.1 : Apache License 2.0
prometheus-procfs 20181009-snapshot-185b4288 : Apache License 2.0
prometheus-procfs v0.0.2 : Apache License 2.0
prometheus-procfs v0.1.3 : Apache License 2.0
prometheus-procfs v0.6.0 : Apache License 2.0
rogpeppe/go-internal v1.6.1 : BSD 3-clause "New" or "Revised" License
rogpeppe/go-internal v1.8.0 : BSD 3-clause "New" or "Revised" License
segmentio/ksuid v1.0.3 : MIT License
sigs.k8s.io/controller-runtime v0.10.2 : Apache License 2.0
sigs.k8s.io/yaml v1.2.0 : (MIT License AND BSD 3-clause "New" or "Revised" License)
Sirupsen/logrus v1.2.0 : MIT License
Sirupsen/logrus v1.4.2 : MIT License
Sirupsen/logrus v1.6.0 : MIT License
Sirupsen/logrus v1.8.1 : MIT License
uber-go/atomic 1.7.0 : MIT License
yaml for Go 20200512-snapshot-9f266ea9 : Apache License 2.0
yaml for Go 20200623-snapshot-eeeca48f : Apache License 2.0
yaml for Go 20210109-snapshot-496545a6 : Apache License 2.0
yaml for Go v2.2.1 : Apache License 2.0
yaml for Go v2.2.2 : (MIT License AND Apache License 2.0)
yaml for Go v2.2.4 : Apache License 2.0
yaml for Go v2.2.5 : Apache License 2.0
yaml for Go v2.2.8 : Apache License 2.0
yaml for Go v2.3.0 : Apache License 2.0
yaml for Go v2.4.0 : Apache License 2.0
Copyright Text:
Go Testify v1.2.2 github:stretchr/testify:v1.2.2
Copyright (c) 2012-2020 Mat Ryer, Tyler Bunnell and contributors
Go Testify v1.3.0 github:stretchr/testify:v1.3.0
Copyright (c) 2012-2020 Mat Ryer, Tyler Bunnell and contributors
Go Testify v1.4.0 github:stretchr/testify:v1.4.0
Copyright (c) 2012-2020 Mat Ryer, Tyler Bunnell and contributors
GoDoc Text v0.1.0 github:kr/text:v0.1.0
Copyright 2012 Keith Rarick
Sirupsen/logrus v1.2.0 github:sirupsen/logrus:v1.2.0
Copyright (c) 2012 Miki Tebeka <[email protected]>.
Copyright (c) 2014 Simon Eskildsen
Sirupsen/logrus v1.6.0 github:sirupsen/logrus:v1.6.0
Copyright (c) 2012 Miki Tebeka <[email protected]>.
Copyright (c) 2014 Simon Eskildsen
Sirupsen/logrus v1.8.1 github:sirupsen/logrus:v1.8.1
Copyright (c) 2012 Miki Tebeka <[email protected]>.
Copyright (c) 2014 Simon Eskildsen
benbjohnson-clock v1.1.0 github:benbjohnson/clock:v1.1.0
Copyright (c) 2014 Ben Johnson
beorn7-perks 20180510-snapshot-3a771d99 github:beorn7/perks:3a771d992973f24aa725d07868b467d1ddfceafb
Copyright (C) 2013 Blake Mizerany
beorn7-perks v1.0.0 github:beorn7/perks:v1.0.0
Copyright (C) 2013 Blake Mizerany
beorn7-perks v1.0.1 github:beorn7/perks:v1.0.1
Copyright (C) 2013 Blake Mizerany
cespare/xxhash v1.1.0 github:cespare/xxhash:v1.1.0
Copyright (c) 2016 Caleb Spare
client_golang v1.0.0 github:prometheus/client_golang:v1.0.0
Copyright 2018 The Prometheus Authors// Licensed under the Apache License, Version 2.0 (the "License");// you may not use this file except in compliance with the License.// You may obtain a copy of
Copyright 2013 Matt T. Proud
Copyright 2012-2015 The Prometheus Authors
fsnotify-fsnotify v1.4.7 github:fsnotify/fsnotify:v1.4.7
Copyright (c) 2012 The Go Authors. All rights reserved
Copyright (c) 2012 fsnotify Authors. All rights reserved
fsnotify-fsnotify v1.4.9 github:fsnotify/fsnotify:v1.4.9
Copyright (c) 2012 The Go Authors. All rights reserved
Copyright (c) 2012-2019 fsnotify Authors. All rights reserved
github.com/go-logr/zapr 0.4.0 github:go-logr/zapr:v0.4.0
Copyright 2019 The logr Authors.
Copyright 2018 Solly Ross
go-check-check 20171108-snapshot-20d25e28 github:go-check/check:20d25e2804050c1cd24a7eea1e7a6447dd0e74ec
Copyright (c) 2012 The Go Authors. All rights reserved
Copyright (c) 2010-2013 Gustavo Niemeyer <[email protected]>
go-check-check 20180628-snapshot-788fd784 github:go-check/check:788fd78401277ebd861206a03c884797c6ec5541
Copyright (c) 2012 The Go Authors. All rights reserved
Copyright (c) 2010-2013 Gustavo Niemeyer <[email protected]>
go-inf-inf v0.9.1 github:go-inf/inf:v0.9.1
Copyright (c) 2009 The GoAuthors. All rights reserved
Copyright (c) 2012 P
go-logr/logr 0.4.0 github:go-logr/logr:v0.4.0
Copyright 2021 The logr Authors.
go-logr/logr v0.1.0 github:go-logr/logr:v0.1.0
Copyright {yyyy
go-playground-universal-translator v0.17.0 github:go-playground/universal-translator:v0.17.0
Copyright (c) 2016 Go Playground
go-playground/locales v0.13.0 github:go-playground/locales:v0.13.0
Copyright (c) 2016 Go Playground
go-spew v1.1.0 github:davecgh/go-spew:v1.1.0
Copyright (c) 2012-2016 Dave Collins <[email protected]>
go-spew v1.1.1 github:davecgh/go-spew:v1.1.1
Copyright (c) 2012-2016 Dave Collins <[email protected]>
go-tomb-tomb 20150422-snapshot-dd632973 github:go-tomb/tomb:dd632973f1e7218eb1089048e0798ec9ae7dceb8
Copyright (c) 2011 - Gustavo Niemeyer <[email protected]>// // All rights reserved
go.uber.org/goleak v1.1.10 github:uber-go/goleak:v1.1.10
Copyright (c) 2019 Uber Technologies, Inc.
go.uber.org/multierr v1.6.0 github:uber-go/multierr:v1.6.0
Copyright (c) 2019 Uber Technologies, Inc.
gogo-protobuf v1.1.1 github:gogo/protobuf:v1.1.1
Copyright 2013 The Go Authors. All rights reserved
gogo-protobuf v1.3.2 github:gogo/protobuf:v1.3.2
Copyright 2013 The Go Authors. All rights reserved
golang protobuf v1.2.0 github:golang/protobuf:v1.2.0
Copyright 2013 The Go Authors. All rights reserved
golang protobuf v1.3.1 github:golang/protobuf:v1.3.1
Copyright 2013 The Go Authors. All rights reserved
golang protobuf v1.4.0-rc.1 github:golang/protobuf:v1.4.0-rc.1
Copyright 2020 The Go Authors. All rights reserved
golang protobuf v1.4.3 github:golang/protobuf:v1.4.3
Copyright 2020 The Go Authors. All rights reserved
golang protobuf v1.5.0 github:golang/protobuf:v1.5.0
Copyright 2020 The Go Authors. All rights reserved
golang protobuf v1.5.2 github:golang/protobuf:v1.5.2
Copyright 2020 The Go Authors. All rights reserved
golang-github-spf13-pflag-dev 20170714-snapshot-9ff6c692 github:spf13/pflag:9ff6c6923cfffbcd502984b8e0c80539a94968b7
Copyright (c) 2012 The Go Authors. All rights reserved
golang-github-spf13-pflag-dev v1.0.5-rc1 github:spf13/pflag:v1.0.5-rc1
Copyright (c) 2012 The Go Authors. All rights reserved
golang.org/x/mod v0.3.0 long_tail:go.googlesource.com/mod#v0.3.0
Copyright (c) 2009 The Go Authors. All rights reserved
golang.org/x/mod v0.4.2 long_tail:go.googlesource.com/mod#v0.4.2
Copyright (c) 2009 The Go Authors. All rights reserved
golang.org/x/net 20180724-snapshot-3673e40b long_tail:go.googlesource.com/net#3673e40ba22529d22c3fd7c93e97b0ce50fa7bdd
Copyright (c) 2009 The Go Authors. All rights reserved
golang.org/x/text v0.3.0 long_tail:go.googlesource.com/text#v0.3.0
Copyright (c) 2009 The Go Authors. All rights reserved
golang.org/x/text v0.3.2 long_tail:go.googlesource.com/text#v0.3.2
Copyright (c) 2009 The Go Authors. All rights reserved
golang.org/x/text v0.3.3 long_tail:go.googlesource.com/text#v0.3.3
Copyright (c) 2009 The Go Authors. All rights reserved
golang.org/x/text v0.3.6 long_tail:go.googlesource.com/text#v0.3.6
Copyright (c) 2009 The Go Authors. All rights reserved
golang/appengine v1.4.0 github:golang/appengine:v1.4.0
Copyright 2011 The Go Authors. All rights reserved
Copyright 2016 Google Inc. All Rights Reserved
golang/appengine v1.6.7 github:golang/appengine:v1.6.7
Copyright 2011 The Go Authors. All rights reserved
Copyright 2016 Google Inc. All Rights Reserved
gomega 20180518-snapshot-dcabb60a github:onsi/gomega:dcabb60a477c2b6f456df65037cb6708210fbb02
Copyright (c) 2013-2014 Onsi Fakhouri
gomega v1.10.1 github:onsi/gomega:v1.10.1
Copyright (c) 2013-2014 Onsi Fakhouri
google.golang.org/protobuf v1.21.0 long_tail:go.googlesource.com/protobuf#v1.21.0
Copyright 2008 Google Inc. All rights reserved
google.golang.org/protobuf v1.23.0 long_tail:go.googlesource.com/protobuf#v1.23.0
Copyright 2008 Google Inc. All rights reserved
google.golang.org/protobuf v1.26.0-rc.1 long_tail:go.googlesource.com/protobuf#v1.26.0-rc.1
Copyright 2008 Google Inc. All rights reserved
google/go-cmp v0.3.0 github:google/go-cmp:v0.3.0
Copyright (c) 2017 The Go Authors. All rights reserved
google/go-cmp v0.5.4 github:google/go-cmp:v0.5.4
Copyright (c) 2017 The Go Authors. All rights reserved
google/uuid v.1.1.2 github:google/uuid:v1.1.2
Copyright (c) 2009,2014 Google Inc. All rights reserved
googleapis/gnostic v0.5.1 github:googleapis/gnostic:v0.5.1
Copyright 2020 Google LLC. All Rights Reserve
googleapis/gnostic v0.5.5 github:googleapis/gnostic:v0.5.5
Copyright 2020 Google LLC. All Rights Reserved
gorilla/websocket v1.4.2 github:gorilla/websocket:v1.4.2
Copyright (c) 2013 The Gorilla WebSocket Authors. All rights reserved
jsoniter-go v1.1.10 github:json-iterator/go:v1.1.10
Copyright (c) 2016 json-iterator
jsoniter-go v1.1.6 github:json-iterator/go:v1.1.6
Copyright (c) 2016 json-iterator
kr/pretty 0.1.0 github:kr/pretty:v0.1.0
Copyright 2012 Keith Rarick
kr/pretty 0.2.1 github:kr/pretty:v0.2.1
Copyright 2012 Keith Rarick
kr/pretty v0.2.0 github:kr/pretty:v0.2.0
Copyright 2012 Keith Rarick
leodido/go-urn v1.2.0 github:leodido/go-urn:v1.2.0
Copyright (c) 2018 Leonardo Di Donato
leodido/go-urn v1.2.1 github:leodido/go-urn:v1.2.1
Copyright (c) 2018 Leonardo Di Donato
matttproud-golang_protobuf_extensions 20190325-snapshot-c182affe github:matttproud/golang_protobuf_extensions:c182affec369e30f25d3eb8cd8a478dee585ae7d
Copyright 2012 Matt T. Proud ([email protected])
mergo 0.3.12 github:imdario/mergo:v0.3.12
Copyright (c) 2012 The Go Authors. All rights reserved
Copyright (c) 2013 Dario Casta
mergo v0.3.5 github:imdario/mergo:v0.3.5
Copyright (c) 2012 The Go Authors. All rights reserved
Copyright (c) 2013 Dario Casta
murmur3 20181015-snapshot-f09979ec github:spaolacci/murmur3:f09979ecbc725b9e6d41a297405f65e7e8804acc
Copyright 2013, SAll rights reserved
nxadm/tail v1.4.4 github:nxadm/tail:v1.4.4
Copyright (c) 2014 ActiveState
© Copyright 2015 Hewlett Packard Enterprise Development LP
nxadm/tail v1.4.8 github:nxadm/tail:v1.4.8
Copyright (c) 2014 ActiveState
© Copyright 2015 Hewlett Packard Enterprise Development LP
Copyright (C) 2013 99designs
onsi/ginkgo 20180518-snapshot-11459a88 github:onsi/ginkgo:11459a886d9cd66b319dac7ef1e917ee221372c9
Copyright (c) 2013-2014 Onsi Fakhouri
onsi/ginkgo v1.12.1 github:onsi/ginkgo:v1.12.1
Copyright (c) 2013-2014 Onsi Fakhouri
onsi/ginkgo v1.14.0 github:onsi/ginkgo:v1.14.0
Copyright (c) 2013-2014 Onsi Fakhouri
onsi/ginkgo v1.6.0 github:onsi/ginkgo:v1.6.0
Copyright (c) 2013-2014 Onsi Fakhouri
pkg/errors v0.8.0 github:pkg/errors:v0.8.0
Copyright (c) 2015, Dave Cheney <[email protected]>All rights reserved
pkg/errors v0.9.1 github:pkg/errors:v0.9.1
Copyright (c) 2015, Dave Cheney <[email protected]>All rights reserved
pmezard-go-difflib 1.0.0 github:pmezard/go-difflib:v1.0.0
Copyright (c) 2013, Patrick MezardAll rights reserved
prometheus-client_model 20180714-snapshot-5c3871d8 github:prometheus/client_model:5c3871d89910bfb32f5fcab2aa4b9ec68e65a99f
Copyright 2013 Prometheus Team # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the Li
prometheus-client_model 20190204-snapshot-fd36f422 github:prometheus/client_model:fd36f4220a901265f90734c3183c5f0c91daa0b8
Copyright 2013 Prometheus Team # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the Li
prometheus-client_model v0.2.0 github:prometheus/client_model:v0.2.0
Copyright 2012-2015 The Prometheus Authors
prometheus-common v0.10.0 github:prometheus/common:v0.10.0
Copyright 2015 The Prometheus Authors// Licensed under the Apache License, Version 2.0 (the "License");// you may not use this file except in compliance with the License.// You may obtain a copy of
prometheus-common v0.4.1 github:prometheus/common:v0.4.1
Copyright 2015 The Prometheus Authors// Licensed under the Apache License, Version 2.0 (the "License");// you may not use this file except in compliance with the License.// You may obtain a copy of
prometheus-procfs 20181009-snapshot-185b4288 github:prometheus/procfs:185b4288413d2a0dd0806f78c90dde719829e5ae
Copyright 2014-2015 The Prometheus Authors
prometheus-procfs v0.0.2 github:prometheus/procfs:v0.0.2
Copyright 2014-2015 The Prometheus Authors
prometheus-procfs v0.1.3 github:prometheus/procfs:v0.1.3
Copyright 2014-2015 The Prometheus Authors
prometheus-procfs v0.6.0 github:prometheus/procfs:v0.6.0
Copyright 2014-2015 The Prometheus Authors
rogpeppe/go-internal v1.6.1 github:rogpeppe/go-internal:v1.6.1
Copyright (c) 2018 The Go Authors. All rights reserved
rogpeppe/go-internal v1.8.0 github:rogpeppe/go-internal:v1.8.0
Copyright (c) 2018 The Go Authors. All rights reserved
segmentio/ksuid v1.0.3 github:segmentio/ksuid:v1.0.3
Copyright (c) 2017 Segment.io
sigs.k8s.io/yaml v1.2.0 github:kubernetes-sigs/yaml:v1.2.0
Copyright (c) 2012 The Go Authors. All rights reserved
uber-go/atomic 1.7.0 github:uber-go/atomic:v1.7.0
Copyright (c) 2020 Uber Technologies, Inc.
yaml for Go 20200512-snapshot-9f266ea9 github:go-yaml/yaml:9f266ea9e77c4c7aab4cf02650570e7c7b3031a5
Copyright 2011-2016 Canonical Ltd.
Copyright (c) 2006-2011 Kirill Simonov
yaml for Go 20200623-snapshot-eeeca48f github:go-yaml/yaml:eeeca48fe7764f320e4870d231902bf9c1be2c08
Copyright 2011-2016 Canonical Ltd.
Copyright (c) 2006-2011 Kirill Simonov
yaml for Go 20210109-snapshot-496545a6 github:go-yaml/yaml:496545a6307b2a7d7a710fd516e5e16e8ab62dbc
Copyright (c) 2006-2011 Kirill Simonov
Copyright (c) 2011-2019 Canonical Ltd
yaml for Go v2.2.1 github:go-yaml/yaml:v2.2.1
Copyright (c) 2006 Kirill Simonov
Copyright 2011-2016 Canonical Ltd.
yaml for Go v2.2.2 github:go-yaml/yaml:v2.2.2
Copyright (c) 2006 Kirill Simonov
Copyright 2011-2016 Canonical Ltd.
yaml for Go v2.2.4 github:go-yaml/yaml:v2.2.4
Copyright (c) 2006 Kirill Simonov
Copyright 2011-2016 Canonical Ltd.
yaml for Go v2.2.8 github:go-yaml/yaml:v2.2.8
Copyright (c) 2006 Kirill Simonov
Copyright 2011-2016 Canonical Ltd.
Licenses:
Apache License 2.0
(client-go v0.22.2-rc.0, client_golang v0.9.1, client_golang v1.0.0, client_golang v1.11.0, client_golang v1.7.1, falcosecurity/libs, falco ebpf programs, github.com/go-logr/zapr 0.4.0, Go Testify v1.4.0, go-logr/logr 0.4.0, go-logr/logr v0.1.0, golang/appengine v1.4.0, golang/appengine v1.6.7, gomodules/jsonpatch v2.2.0, google-gofuzz v1.0.0, google-gofuzz v1.1.0, googleapis/gnostic v0.5.1, googleapis/gnostic v0.5.5, groupcache 20210331-snapshot-41bb18bf, k8s.io/kube-openapi 20210421-snapshot-95288971, k8s.io/utils 20210819-snapshot-bdf08cb9, kube-rbac-proxy, kubernetes/api v0.22.1, kubernetes/api v0.22.2, kubernetes/apiextensions-apiserver v0.22.2, kubernetes/apimachinery v0.22.1-rc.0, kubernetes/apimachinery v0.22.2, kubernetes/component-base v0.22.2, matttproud-golang_protobuf_extensions 20190325-snapshot-c182affe, matttproud-golang_protobuf_extensions v1.0.1, modern-go/concurrent 20180228-snapshot-e0a39a4c, modern-go/concurrent 20180305-snapshot-bacd9c7e, modern-go/reflect2 1.0.1, modern-go/reflect2 20180630-snapshot-4b7aa43c, OneOfOne/xxhash v1.2.2, prometheus-client_model 20180714-snapshot-5c3871d8, prometheus-client_model 20190204-snapshot-fd36f422, prometheus-client_model v0.2.0, prometheus-common v0.10.0, prometheus-common v0.26.0, prometheus-common v0.4.1, prometheus-procfs 20181009-snapshot-185b4288, prometheus-procfs v0.0.2, prometheus-procfs v0.1.3, prometheus-procfs v0.6.0, sigs.k8s.io/controller-runtime v0.10.2, yaml for Go 20200512-snapshot-9f266ea9, yaml for Go 20200623-snapshot-eeeca48f, yaml for Go 20210109-snapshot-496545a6, yaml for Go v2.2.1, yaml for Go v2.2.2, yaml for Go v2.2.4, yaml for Go v2.2.5, yaml for Go v2.2.8, yaml for Go v2.3.0, yaml for Go v2.4.0)
Apache License
Version 2.0, January 2004
=========================
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction, and
distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by the copyright
owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all other entities
that control, are controlled by, or are under common control with that entity.
For the purposes of this definition, "control" means (i) the power, direct or
indirect, to cause the direction or management of such entity, whether by
contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions
granted by this License.
"Source" form shall mean the preferred form for making modifications, including
but not limited to software source code, documentation source, and configuration
files.
"Object" form shall mean any form resulting from mechanical transformation or
translation of a Source form, including but not limited to compiled object code,
generated documentation, and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or Object form, made
available under the License, as indicated by a copyright notice that is included
in or attached to the work (an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object form, that is
based on (or derived from) the Work and for which the editorial revisions,
annotations, elaborations, or other modifications represent, as a whole, an
original work of authorship. For the purposes of this License, Derivative Works
shall not include works that remain separable from, or merely link (or bind by
name) to the interfaces of, the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including the original version
of the Work and any modifications or additions to that Work or Derivative Works
thereof, that is intentionally submitted to Licensor for inclusion in the Work by
the copyright owner or by an individual or Legal Entity authorized to submit on
behalf of the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent to the
Licensor or its representatives, including but not limited to communication on
electronic mailing lists, source code control systems, and issue tracking systems
that are managed by, or on behalf of, the Licensor for the purpose of discussing
and improving the Work, but excluding communication that is conspicuously marked
or otherwise designated in writing by the copyright owner as "Not a
Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of
whom a Contribution has been received by Licensor and subsequently incorporated
within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of this
License, each Contributor hereby grants to You a perpetual, worldwide,
non-exclusive, no-charge, royalty-free, irrevocable copyright license to
reproduce, prepare Derivative Works of, publicly display, publicly perform,
sublicense, and distribute the Work and such Derivative Works in Source or Object
form.
3. Grant of Patent License. Subject to the terms and conditions of this License,
each Contributor hereby grants to You a perpetual, worldwide, non-exclusive,
no-charge, royalty-free, irrevocable (except as stated in this section) patent
license to make, have made, use, offer to sell, sell, import, and otherwise
transfer the Work, where such license applies only to those patent claims
licensable by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s) with the Work to
which such Contribution(s) was submitted. If You institute patent litigation
against any entity (including a cross-claim or counterclaim in a lawsuit)
alleging that the Work or a Contribution incorporated within the Work constitutes
direct or contributory patent infringement, then any patent licenses granted to
You under this License for that Work shall terminate as of the date such
litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the Work or
Derivative Works thereof in any medium, with or without modifications, and in
Source or Object form, provided that You meet the following conditions:
a. You must give any other recipients of the Work or Derivative Works a copy of
this License; and
b. You must cause any modified files to carry prominent notices stating that
You changed the files; and
c. You must retain, in the Source form of any Derivative Works that You
distribute, all copyright, patent, trademark, and attribution notices from
the Source form of the Work, excluding those notices that do not pertain to
any part of the Derivative Works; and
d. If the Work includes a "NOTICE" text file as part of its distribution, then
any Derivative Works that You distribute must include a readable copy of the
attribution notices contained within such NOTICE file, excluding those
notices that do not pertain to any part of the Derivative Works, in at least
one of the following places: within a NOTICE text file distributed as part of
the Derivative Works; within the Source form or documentation, if provided
along with the Derivative Works; or, within a display generated by the
Derivative Works, if and wherever such third-party notices normally appear.
The contents of the NOTICE file are for informational purposes only and do
not modify the License. You may add Your own attribution notices within
Derivative Works that You distribute, alongside or as an addendum to the
NOTICE text from the Work, provided that such additional attribution notices
cannot be construed as modifying the License.
You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise, any
Contribution intentionally submitted for inclusion in the Work by You to the
Licensor shall be under the terms and conditions of this License, without any
additional terms or conditions. Notwithstanding the above, nothing herein shall
supersede or modify the terms of any separate license agreement you may have
executed with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade names,
trademarks, service marks, or product names of the Licensor, except as required
for reasonable and customary use in describing the origin of the Work and
reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in
writing, Licensor provides the Work (and each Contributor provides its
Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any risks
associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory, whether in
tort (including negligence), contract, or otherwise, unless required by
applicable law (such as deliberate and grossly negligent acts) or agreed to in
writing, shall any Contributor be liable to You for damages, including any
direct, indirect, special, incidental, or consequential damages of any character
arising as a result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill, work stoppage,
computer failure or malfunction, or any and all other commercial damages or
losses), even if such Contributor has been advised of the possibility of such
damages.
9. Accepting Warranty or Additional Liability. While redistributing the Work or
Derivative Works thereof, You may choose to offer, and charge a fee for,
acceptance of support, warranty, indemnity, or other liability obligations and/or
rights consistent with this License. However, in accepting such obligations, You
may act only on Your own behalf and on Your sole responsibility, not on behalf of
any other Contributor, and only if You agree to indemnify, defend, and hold each
Contributor harmless for any liability incurred by, or claims asserted against,
such Contributor by reason of your accepting any such warranty or additional
liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work
To apply the Apache License to your work, attach the following boilerplate
notice, with the fields enclosed by brackets "[]" replaced with your own
identifying information. (Don't include the brackets!) The text should be
enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within
third-party archives.
Copyright [yyyy] [name of copyright owner] Licensed under the Apache License,
Version 2.0 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law
or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
---
BSD 2-clause "Simplified" License
(go-check-check 20171108-snapshot-20d25e28, go-check-check 20180628-snapshot-788fd784, go-check-check 20190902-snapshot-41f04d3b, go-check-check 20200227-snapshot-8fa46927, go-check-check 20201130-snapshot-10cb9826, gorilla/websocket v1.4.2, pkg/errors v0.8.0, pkg/errors v0.8.1, pkg/errors v0.9.1)
BSD Two Clause License
======================
Copyright <YEAR> <COPYRIGHT HOLDER>
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
---
BSD 3-clause "New" or "Revised" License
(fsnotify-fsnotify v1.4.7, fsnotify-fsnotify v1.4.9, go-inf-inf v0.9.1, go-tomb-tomb 20150422-snapshot-dd632973, go.googlesource.com/tools 20180907-snapshot-90fa682c, go.googlesource.com/tools 20190311-snapshot-11955173, go.googlesource.com/tools 20191108-snapshot-7d206e10, go.googlesource.com/tools 20191119-snapshot-298f0cb1, go.googlesource.com/tools 20201222-snapshot-2b0845dc, go.googlesource.com/tools v0.1.5, gogo-protobuf v1.1.1, gogo-protobuf v1.3.2, golang protobuf 1.4.2, golang protobuf 20200220-snapshot-67d41d38, golang protobuf 20200313-snapshot-b860323f, golang protobuf v1.2.0, golang protobuf v1.3.1, golang protobuf v1.3.2, golang protobuf v1.4.0-rc.1, golang protobuf v1.4.3, golang protobuf v1.5.0, golang protobuf v1.5.2, golang-github-spf13-pflag-dev 20170714-snapshot-9ff6c692, golang-github-spf13-pflag-dev v1.0.5-rc1, golang.org/x/crypto 20180503-snapshot-c2843e01, golang.org/x/crypto 20180831-snapshot-0709b304, golang.org/x/crypto 20191011-snapshot-87dc89f0, golang.org/x/crypto 20200622-snapshot-75b28801, golang.org/x/crypto 20210219-snapshot-5ea612d1, golang.org/x/crypto 20210710-snapshot-a769d52b, golang.org/x/lint 20190930-snapshot-16217165, golang.org/x/mod v0.3.0, golang.org/x/mod v0.4.2, golang.org/x/net 20180724-snapshot-3673e40b, golang.org/x/net 20180906-snapshot-161cd47e, golang.org/x/net 20181114-snapshot-adae6a3d, golang.org/x/net 20181219-snapshot-1e06a53d, golang.org/x/net 20190311-snapshot-d8887717, golang.org/x/net 20190402-snapshot-eb5bcb51, golang.org/x/net 20190603-snapshot-60506f45, golang.org/x/net 20190613-snapshot-d28f0bde, golang.org/x/net 20190620-snapshot-3b0461ee, golang.org/x/net 20200324-snapshot-d3edc997, golang.org/x/net 20200425-snapshot-ff2c4b7c, golang.org/x/net 20200518-snapshot-59133d7f, golang.org/x/net 20200624-snapshot-4c525460, golang.org/x/net 20200628-snapshot-f5854403, golang.org/x/net 20201123-snapshot-a5a99cb3, golang.org/x/net 20210126-snapshot-e18ecbb0, golang.org/x/net 20210418-snapshot-37e1c6af, golang.org/x/net 20210423-snapshot-89ef3d95, golang.org/x/oauth2 20190211-snapshot-e64efc72, golang.org/x/oauth2 20200107-snapshot-bf48bf16, golang.org/x/sys 20180905-snapshot-ebe1bf3e, golang.org/x/sys 20180908-snapshot-d0be0721, golang.org/x/sys 20181116-snapshot-5ac8a444, golang.org/x/sys 20190215-snapshot-d0b11bda, golang.org/x/sys 20190405-snapshot-97732733, golang.org/x/sys 20190904-snapshot-749cb33b, golang.org/x/sys 20191005-snapshot-aed5e4c7, golang.org/x/sys 20191025-snapshot-33540a1f, golang.org/x/sys 20191120-snapshot-bd437916, golang.org/x/sys 20200106-snapshot-b016eb3d, golang.org/x/sys 20200323-snapshot-85ca7c5b, golang.org/x/sys 20200518-snapshot-fe76b779, golang.org/x/sys 20200615-snapshot-f1bc7362, golang.org/x/sys 20200625-snapshot-ddb9806d, golang.org/x/sys 20200930-snapshot-fdedc70b, golang.org/x/sys 20201118-snapshot-f84b799f, golang.org/x/sys 20210111-snapshot-489259a8, golang.org/x/sys 20210124-snapshot-22da62e1, golang.org/x/sys 20210330-snapshot-4fbd30ee, golang.org/x/sys 20210422-snapshot-04245dca, golang.org/x/sys 20210510-snapshot-977fb726, golang.org/x/sys 20210602-snapshot-ebe580a8, golang.org/x/sys 20210614-snapshot-665e8c73, golang.org/x/sys 20210616-snapshot-59db8d76, golang.org/x/sys 20210806-snapshot-bfb29a68, golang.org/x/sys 20210806-snapshot-e5e7981a, golang.org/x/term 20200929-snapshot-f5c789dd, golang.org/x/term 20201126-snapshot-7de9c90e, golang.org/x/term 20210219-snapshot-6a3ed077, golang.org/x/text v0.3.0, golang.org/x/text v0.3.2, golang.org/x/text v0.3.3, golang.org/x/text v0.3.6, golang.org/x/time 20210721-snapshot-1f47c861, golang.org/x/xerrors 20190516-snapshot-a985d340, golang.org/x/xerrors 20190719-snapshot-9bdfabe6, golang.org/x/xerrors 20191005-snapshot-1b5146ad, golang.org/x/xerrors 20200804-snapshot-5ec99f83, google.golang.org/protobuf 20200109-snapshot-ec00e32a, google.golang.org/protobuf 20200221-snapshot-4d8936d0, google.golang.org/protobuf 20200227-snapshot-ab0ca4ff, google.golang.org/protobuf 20200309-snapshot-e05f789c, google.golang.org/protobuf v1.21.0, google.golang.org/protobuf v1.23.0, google.golang.org/protobuf v1.26.0-rc.1, google/go-cmp v0.3.0, google/go-cmp v0.3.1, google/go-cmp v0.4.0, google/go-cmp v0.5.4, google/go-cmp v0.5.5, google/uuid v.1.1.2, google/uuid v1.1.1, google/uuid v1.2.0, mergo 0.3.12, mergo v0.3.5, murmur3 20181015-snapshot-f09979ec, pmezard-go-difflib 1.0.0, rogpeppe/go-internal v1.6.1, rogpeppe/go-internal v1.8.0, sigs.k8s.io/yaml v1.2.0)
Copyright (c) <YEAR>, <OWNER>
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the <ORGANIZATION> nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
---
Eclipse Distribution License - v 1.0
(eclipse-paho.mqtt.golang v1.3.5)
Eclipse Distribution License - v 1.0
====================================
Copyright (c) 2007, Eclipse Foundation, Inc. and its licensors.
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the Eclipse Foundation, Inc. nor the names of its
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
---
ISC License
(go-spew v1.1.0, go-spew v1.1.1)
ISC License (ISCL)
==================
Copyright <YEAR> <OWNER>
Permission to use, copy, modify, and/or distribute this software for any purpose
with or without fee is hereby granted, provided that the above copyright notice
and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
---
MIT License
(benbjohnson-clock v1.1.0, beorn7-perks 20180510-snapshot-3a771d99, beorn7-perks v1.0.0, beorn7-perks v1.0.1, cespare/xxhash v1.1.0, dgryski-go-farm 20190613-snapshot-6a90982e, Go Testify v1.2.2, Go Testify v1.3.0, Go Testify v1.5.1, Go Testify v1.6.1, Go Testify v1.7.0, go-playground-universal-translator v0.17.0, go-playground-universal-translator v0.18.0, go-playground/locales v0.13.0, go-playground/locales v0.14.0, go-zap v1.17.0, go-zap v1.19.0, go-zap v1.19.1, go.uber.org/goleak 20210813-snapshot-69116035, go.uber.org/goleak v1.1.10, go.uber.org/multierr v1.6.0, GoDoc Text v0.1.0, GoDoc Text v0.2.0, gomega 20180518-snapshot-dcabb60a, gomega v1.10.1, gomega v1.15.0, gomega v1.7.1, jsoniter-go v1.1.10, jsoniter-go v1.1.11, jsoniter-go v1.1.6, kr/pretty 0.1.0, kr/pretty 0.2.1, kr/pretty v0.2.0, kr/pretty v0.3.0, leodido/go-urn v1.2.0, leodido/go-urn v1.2.1, nxadm/tail v1.4.4, nxadm/tail v1.4.8, onsi/ginkgo 1.16.4, onsi/ginkgo 20180518-snapshot-11459a88, onsi/ginkgo v1.12.1, onsi/ginkgo v1.14.0, onsi/ginkgo v1.6.0, segmentio/ksuid v1.0.3, sigs.k8s.io/yaml v1.2.0, Sirupsen/logrus v1.2.0, Sirupsen/logrus v1.4.2, Sirupsen/logrus v1.6.0, Sirupsen/logrus v1.8.1, uber-go/atomic 1.7.0, yaml for Go v2.2.2)
The MIT License
===============
Copyright (c) <year> <copyright holders>
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in the
Software without restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Components:
cespare/xxhash v1.1.0 : MIT License
dgryski-go-farm 20190613-snapshot-6a90982e : MIT License
Go Testify v1.2.2 : MIT License
Go Testify v1.3.0 : MIT License
Go Testify v1.4.0 : Apache License 2.0
Go Testify v1.6.1 : MIT License
Go Testify v1.7.0 : MIT License
go-check-check 20171108-snapshot-20d25e28 : BSD 2-clause "Simplified" License
go-check-check 20200227-snapshot-8fa46927 : BSD 2-clause "Simplified" License
go-inf-inf v0.9.1 : BSD 3-clause "New" or "Revised" License
go-logr/logr 0.4.0 : Apache License 2.0
go-spew v1.1.0 : ISC License
go-spew v1.1.1 : ISC License
GoDoc Text v0.1.0 : MIT License
GoDoc Text v0.2.0 : MIT License
gogo-protobuf v1.3.2 : BSD 3-clause "New" or "Revised" License
golang-github-spf13-pflag-dev v1.0.5-rc1 : BSD 3-clause "New" or "Revised" License
golang.org/x/net 20200130-snapshot-16171245 : BSD 3-clause "New" or "Revised" License
golang.org/x/net 20210223-snapshot-3d97a244 : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20190215-snapshot-d0b11bda : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20191025-snapshot-33540a1f : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20201118-snapshot-f84b799f : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 20210426-snapshot-d19ff857 : BSD 3-clause "New" or "Revised" License
golang.org/x/text v0.3.0 : BSD 3-clause "New" or "Revised" License
golang.org/x/text v0.3.3 : BSD 3-clause "New" or "Revised" License
golang.org/x/text v0.3.4 : BSD 3-clause "New" or "Revised" License
golang.org/x/xerrors 20190719-snapshot-9bdfabe6 : BSD 3-clause "New" or "Revised" License
google-gofuzz v1.0.0 : Apache License 2.0
google-gofuzz v1.1.0 : Apache License 2.0
google/go-cmp v0.5.4 : BSD 3-clause "New" or "Revised" License
google/go-cmp v0.5.6 : BSD 3-clause "New" or "Revised" License
google/uuid v.1.1.2 : BSD 3-clause "New" or "Revised" License
google/uuid v1.2.0 : BSD 3-clause "New" or "Revised" License
jsoniter-go v1.1.10 : MIT License
jsoniter-go v1.1.6 : MIT License
kubernetes/api v0.21.2 : Apache License 2.0
kubernetes/apimachinery v0.21.2-rc.0 : Apache License 2.0
modern-go/concurrent 20180228-snapshot-e0a39a4c : Apache License 2.0
modern-go/concurrent 20180305-snapshot-bacd9c7e : Apache License 2.0
modern-go/reflect2 1.0.1 : Apache License 2.0
modern-go/reflect2 20180630-snapshot-4b7aa43c : Apache License 2.0
murmur3 20181015-snapshot-f09979ec : BSD 3-clause "New" or "Revised" License
niemeyer/pretty 20200227-snapshot-a10e7cae : MIT License
OneOfOne/xxhash v1.2.2 : Apache License 2.0
pkg/errors v0.9.1 : BSD 2-clause "Simplified" License
pmezard-go-difflib 1.0.0 : BSD 3-clause "New" or "Revised" License
sigs.k8s.io/yaml v1.2.0 : (MIT License AND BSD 3-clause "New" or "Revised" License)
Sirupsen/logrus v1.6.0 : MIT License
Sirupsen/logrus v1.8.1 : MIT License
yaml for Go 20200512-snapshot-9f266ea9 : Apache License 2.0
yaml for Go v2.2.1 : Apache License 2.0
yaml for Go v2.2.2 : (MIT License AND Apache License 2.0)
yaml for Go v2.2.8 : Apache License 2.0
yaml for Go v2.3.0 : Apache License 2.0
yaml for Go v2.4.0 : Apache License 2.0
Copyright Text:
Go Testify v1.2.2 github:stretchr/testify:v1.2.2
Copyright (c) 2012-2020 Mat Ryer, Tyler Bunnell and contributors.
Go Testify v1.3.0 github:stretchr/testify:v1.3.0
Copyright (c) 2012-2020 Mat Ryer, Tyler Bunnell and contributors.
Go Testify v1.4.0 github:stretchr/testify:v1.4.0
Copyright (c) 2012-2020 Mat Ryer, Tyler Bunnell and contributors.
GoDoc Text v0.1.0 github:kr/text:v0.1.0
Copyright 2012 Keith Rarick
Sirupsen/logrus v1.6.0 github:sirupsen/logrus:v1.6.0
Copyright (c) 2012 Miki Tebeka <[email protected]>.
Copyright (c) 2014 Simon Eskildsen
Sirupsen/logrus v1.8.1 github:sirupsen/logrus:v1.8.1
Copyright (c) 2012 Miki Tebeka <[email protected]>.
Copyright (c) 2014 Simon Eskildsen
cespare/xxhash v1.1.0 github:cespare/xxhash:v1.1.0
Copyright (c) 2016 Caleb Spare
go-check-check 20171108-snapshot-20d25e28 github:go-check/check:20d25e2804050c1cd24a7eea1e7a6447dd0e74ec
Copyright (c) 2012 The Go Authors. All rights reserved
Copyright (c) 2010-2013 Gustavo Niemeyer <[email protected]>
go-inf-inf v0.9.1 github:go-inf/inf:v0.9.1
Copyright (c) 2009 The GoAuthors. All rights reserved
go-logr/logr 0.4.0 github:go-logr/logr:v0.4.0
Copyright 2021 The logr Authors.
go-spew v1.1.0 github:davecgh/go-spew:v1.1.0
Copyright (c) 2012-2016 Dave Collins <[email protected]>
go-spew v1.1.1 github:davecgh/go-spew:v1.1.1
Copyright (c) 2012-2016 Dave Collins <[email protected]>
gogo-protobuf v1.3.2 github:gogo/protobuf:v1.3.2
Copyright 2013 The Go Authors. All rights reserved
golang-github-spf13-pflag-dev v1.0.5-rc1 github:spf13/pflag:v1.0.5-rc1
Copyright (c) 2012 The Go Authors. All rights reserved
golang.org/x/text v0.3.0 long_tail:go.googlesource.com/text#v0.3.0
Copyright (c) 2009 The Go Authors. All rights reserved
golang.org/x/text v0.3.3 long_tail:go.googlesource.com/text#v0.3.3
Copyright (c) 2009 The Go Authors. All rights reserved
golang.org/x/text v0.3.4 long_tail:go.googlesource.com/text#v0.3.4
Copyright (c) 2009 The Go Authors. All rights reserved
google/go-cmp v0.5.4 github:google/go-cmp:v0.5.4
Copyright (c) 2017 The Go Authors. All rights reserved
google/uuid v.1.1.2 github:google/uuid:v1.1.2
Copyright (c) 2009,2014 Google Inc. All rights reserved
jsoniter-go v1.1.10 github:json-iterator/go:v1.1.10
Copyright (c) 2016 json-iterator
jsoniter-go v1.1.6 github:json-iterator/go:v1.1.6
Copyright (c) 2016 json-iterator
murmur3 20181015-snapshot-f09979ec github:spaolacci/murmur3:f09979ecbc725b9e6d41a297405f65e7e8804acc
Copyright 2013, SAll rights reserved
pkg/errors v0.9.1 github:pkg/errors:v0.9.1
Copyright (c) 2015, Dave Cheney <[email protected]>All rights reserved
pmezard-go-difflib 1.0.0 github:pmezard/go-difflib:v1.0.0
Copyright (c) 2013, Patrick MezardAll rights reserved
sigs.k8s.io/yaml v1.2.0 github:kubernetes-sigs/yaml:v1.2.0
Copyright (c) 2012 The Go Authors. All rights reserved
yaml for Go 20200512-snapshot-9f266ea9 github:go-yaml/yaml:9f266ea9e77c4c7aab4cf02650570e7c7b3031a5
Copyright 2011-2016 Canonical Ltd.
Copyright (c) 2006-2011 Kirill Simonov
yaml for Go v2.2.1 github:go-yaml/yaml:v2.2.1
Copyright (c) 2006 Kirill Simonov
Copyright 2011-2016 Canonical Ltd.
yaml for Go v2.2.2 github:go-yaml/yaml:v2.2.2
Copyright (c) 2006 Kirill Simonov
Copyright 2011-2016 Canonical Ltd.
yaml for Go v2.2.8 github:go-yaml/yaml:v2.2.8
Copyright (c) 2006 Kirill Simonov
Copyright 2011-2016 Canonical Ltd.
Licenses:
Apache License 2.0
(Go Testify v1.4.0, go-logr/logr 0.4.0, google-gofuzz v1.0.0, google-gofuzz v1.1.0, kubernetes/api v0.21.2, kubernetes/apimachinery v0.21.2-rc.0, modern-go/concurrent 20180228-snapshot-e0a39a4c, modern-go/concurrent 20180305-snapshot-bacd9c7e, modern-go/reflect2 1.0.1, modern-go/reflect2 20180630-snapshot-4b7aa43c, OneOfOne/xxhash v1.2.2, yaml for Go 20200512-snapshot-9f266ea9, yaml for Go v2.2.1, yaml for Go v2.2.2, yaml for Go v2.2.8, yaml for Go v2.3.0, yaml for Go v2.4.0)
Apache License
Version 2.0, January 2004
=========================
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction, and
distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by the copyright
owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all other entities
that control, are controlled by, or are under common control with that entity.
For the purposes of this definition, "control" means (i) the power, direct or
indirect, to cause the direction or management of such entity, whether by
contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions
granted by this License.
"Source" form shall mean the preferred form for making modifications, including
but not limited to software source code, documentation source, and configuration
files.
"Object" form shall mean any form resulting from mechanical transformation or
translation of a Source form, including but not limited to compiled object code,
generated documentation, and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or Object form, made
available under the License, as indicated by a copyright notice that is included
in or attached to the work (an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object form, that is
based on (or derived from) the Work and for which the editorial revisions,
annotations, elaborations, or other modifications represent, as a whole, an
original work of authorship. For the purposes of this License, Derivative Works
shall not include works that remain separable from, or merely link (or bind by
name) to the interfaces of, the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including the original version
of the Work and any modifications or additions to that Work or Derivative Works
thereof, that is intentionally submitted to Licensor for inclusion in the Work by
the copyright owner or by an individual or Legal Entity authorized to submit on
behalf of the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent to the
Licensor or its representatives, including but not limited to communication on
electronic mailing lists, source code control systems, and issue tracking systems
that are managed by, or on behalf of, the Licensor for the purpose of discussing
and improving the Work, but excluding communication that is conspicuously marked
or otherwise designated in writing by the copyright owner as "Not a
Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of
whom a Contribution has been received by Licensor and subsequently incorporated
within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of this
License, each Contributor hereby grants to You a perpetual, worldwide,
non-exclusive, no-charge, royalty-free, irrevocable copyright license to
reproduce, prepare Derivative Works of, publicly display, publicly perform,
sublicense, and distribute the Work and such Derivative Works in Source or Object
form.
3. Grant of Patent License. Subject to the terms and conditions of this License,
each Contributor hereby grants to You a perpetual, worldwide, non-exclusive,
no-charge, royalty-free, irrevocable (except as stated in this section) patent
license to make, have made, use, offer to sell, sell, import, and otherwise
transfer the Work, where such license applies only to those patent claims
licensable by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s) with the Work to
which such Contribution(s) was submitted. If You institute patent litigation
against any entity (including a cross-claim or counterclaim in a lawsuit)
alleging that the Work or a Contribution incorporated within the Work constitutes
direct or contributory patent infringement, then any patent licenses granted to
You under this License for that Work shall terminate as of the date such
litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the Work or
Derivative Works thereof in any medium, with or without modifications, and in
Source or Object form, provided that You meet the following conditions:
a. You must give any other recipients of the Work or Derivative Works a copy of
this License; and
b. You must cause any modified files to carry prominent notices stating that
You changed the files; and
c. You must retain, in the Source form of any Derivative Works that You
distribute, all copyright, patent, trademark, and attribution notices from
the Source form of the Work, excluding those notices that do not pertain to
any part of the Derivative Works; and
d. If the Work includes a "NOTICE" text file as part of its distribution, then
any Derivative Works that You distribute must include a readable copy of the
attribution notices contained within such NOTICE file, excluding those
notices that do not pertain to any part of the Derivative Works, in at least
one of the following places: within a NOTICE text file distributed as part of
the Derivative Works; within the Source form or documentation, if provided
along with the Derivative Works; or, within a display generated by the
Derivative Works, if and wherever such third-party notices normally appear.