-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathNOTICE
More file actions
1410 lines (1173 loc) · 39.3 KB
/
NOTICE
File metadata and controls
1410 lines (1173 loc) · 39.3 KB
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
Codesphere Go SDK & CLI
Copyright (c) Codesphere Inc.
This project includes code licensed under the following terms:
----------
Module: cloud.google.com/go/artifactregistry
Version: v1.23.0
License: Apache-2.0
License URL: https://github.com/googleapis/google-cloud-go/blob/artifactregistry/v1.23.0/artifactregistry/LICENSE
----------
Module: cloud.google.com/go/auth
Version: v0.20.0
License: Apache-2.0
License URL: https://github.com/googleapis/google-cloud-go/blob/auth/v0.20.0/auth/LICENSE
----------
Module: cloud.google.com/go/auth/oauth2adapt
Version: v0.2.8
License: Apache-2.0
License URL: https://github.com/googleapis/google-cloud-go/blob/auth/oauth2adapt/v0.2.8/auth/oauth2adapt/LICENSE
----------
Module: cloud.google.com/go/compute
Version: v1.60.0
License: Apache-2.0
License URL: https://github.com/googleapis/google-cloud-go/blob/compute/v1.60.0/compute/LICENSE
----------
Module: cloud.google.com/go/compute/metadata
Version: v0.9.0
License: Apache-2.0
License URL: https://github.com/googleapis/google-cloud-go/blob/compute/metadata/v0.9.0/compute/metadata/LICENSE
----------
Module: cloud.google.com/go/iam/apiv1/iampb
Version: v1.9.0
License: Apache-2.0
License URL: https://github.com/googleapis/google-cloud-go/blob/iam/v1.9.0/iam/LICENSE
----------
Module: cloud.google.com/go/longrunning
Version: v0.9.0
License: Apache-2.0
License URL: https://github.com/googleapis/google-cloud-go/blob/longrunning/v0.9.0/longrunning/LICENSE
----------
Module: cloud.google.com/go/resourcemanager
Version: v1.13.0
License: Apache-2.0
License URL: https://github.com/googleapis/google-cloud-go/blob/resourcemanager/v1.13.0/resourcemanager/LICENSE
----------
Module: cloud.google.com/go/serviceusage
Version: v1.12.0
License: Apache-2.0
License URL: https://github.com/googleapis/google-cloud-go/blob/serviceusage/v1.12.0/serviceusage/LICENSE
----------
Module: code.gitea.io/sdk/gitea
Version: v0.24.1
License: MIT
License URL: https://gitea.com/gitea/go-sdk/src/tag/gitea/v0.24.1/gitea/LICENSE
----------
Module: dario.cat/mergo
Version: v1.0.2
License: BSD-3-Clause
License URL: https://github.com/imdario/mergo/blob/v1.0.2/LICENSE
----------
Module: filippo.io/age
Version: v1.3.1
License: BSD-3-Clause
License URL: https://github.com/FiloSottile/age/blob/v1.3.1/LICENSE
----------
Module: filippo.io/edwards25519
Version: v1.2.0
License: BSD-3-Clause
License URL: https://github.com/FiloSottile/edwards25519/blob/v1.2.0/LICENSE
----------
Module: filippo.io/hpke
Version: v0.4.0
License: BSD-3-Clause
License URL: https://github.com/FiloSottile/hpke/blob/v0.4.0/LICENSE
----------
Module: github.com/42wim/httpsig
Version: v1.2.4
License: BSD-3-Clause
License URL: https://github.com/42wim/httpsig/blob/v1.2.4/LICENSE
----------
Module: github.com/BurntSushi/toml
Version: v1.6.0
License: MIT
License URL: https://github.com/BurntSushi/toml/blob/v1.6.0/COPYING
----------
Module: github.com/MakeNowJust/heredoc
Version: v1.0.0
License: MIT
License URL: https://github.com/MakeNowJust/heredoc/blob/v1.0.0/LICENSE
----------
Module: github.com/Masterminds/goutils
Version: v1.1.1
License: Apache-2.0
License URL: https://github.com/Masterminds/goutils/blob/v1.1.1/LICENSE.txt
----------
Module: github.com/Masterminds/semver/v3
Version: v3.4.0
License: MIT
License URL: https://github.com/Masterminds/semver/blob/v3.4.0/LICENSE.txt
----------
Module: github.com/Masterminds/sprig/v3
Version: v3.3.0
License: MIT
License URL: https://github.com/Masterminds/sprig/blob/v3.3.0/LICENSE.txt
----------
Module: github.com/Masterminds/squirrel
Version: v1.5.4
License: MIT
License URL: https://github.com/Masterminds/squirrel/blob/v1.5.4/LICENSE
----------
Module: github.com/ProtonMail/go-crypto
Version: v1.4.1
License: BSD-3-Clause
License URL: https://github.com/ProtonMail/go-crypto/blob/v1.4.1/LICENSE
----------
Module: github.com/asaskevich/govalidator
Version: v0.0.0-20230301143203-a9d515a09cc2
License: MIT
License URL: https://github.com/asaskevich/govalidator/blob/a9d515a09cc2/LICENSE
----------
Module: github.com/avast/retry-go/v5
Version: v5.0.0
License: MIT
License URL: https://github.com/avast/retry-go/blob/v5.0.0/LICENSE
----------
Module: github.com/beorn7/perks/quantile
Version: v1.0.1
License: MIT
License URL: https://github.com/beorn7/perks/blob/v1.0.1/LICENSE
----------
Module: github.com/blang/semver/v4
Version: v4.0.0
License: MIT
License URL: https://github.com/blang/semver/blob/v4.0.0/v4/LICENSE
----------
Module: github.com/cenkalti/backoff/v4
Version: v4.3.0
License: MIT
License URL: https://github.com/cenkalti/backoff/blob/v4.3.0/LICENSE
----------
Module: github.com/cespare/xxhash/v2
Version: v2.3.0
License: MIT
License URL: https://github.com/cespare/xxhash/blob/v2.3.0/LICENSE.txt
----------
Module: github.com/chai2010/gettext-go
Version: v1.0.3
License: BSD-3-Clause
License URL: https://github.com/chai2010/gettext-go/blob/v1.0.3/LICENSE
----------
Module: github.com/clipperhouse/uax29/v2/graphemes
Version: v2.7.0
License: MIT
License URL: https://github.com/clipperhouse/uax29/blob/v2.7.0/LICENSE
----------
Module: github.com/cloudflare/circl
Version: v1.6.3
License: BSD-3-Clause
License URL: https://github.com/cloudflare/circl/blob/v1.6.3/LICENSE
----------
Module: github.com/cloudnative-pg/barman-cloud/pkg/api
Version: v0.5.0
License: Apache-2.0
License URL: https://github.com/cloudnative-pg/barman-cloud/blob/v0.5.0/LICENSE
----------
Module: github.com/cloudnative-pg/cloudnative-pg
Version: v1.29.0
License: Apache-2.0
License URL: https://github.com/cloudnative-pg/cloudnative-pg/blob/v1.29.0/LICENSE
----------
Module: github.com/cloudnative-pg/cnpg-i/pkg/identity
Version: v0.5.0
License: Apache-2.0
License URL: https://github.com/cloudnative-pg/cnpg-i/blob/v0.5.0/LICENSE
----------
Module: github.com/cloudnative-pg/machinery/pkg
Version: v0.3.3
License: Apache-2.0
License URL: https://github.com/cloudnative-pg/machinery/blob/v0.3.3/LICENSE
----------
Module: github.com/codesphere-cloud/cs-go
Version: v0.23.0
License: Apache-2.0
License URL: https://github.com/codesphere-cloud/cs-go/blob/v0.23.0/LICENSE
----------
Module: github.com/codesphere-cloud/oms/internal/tmpl
Version: Unknown
License: Apache-2.0
License URL: https://github.com/codesphere-cloud/oms/blob/HEAD/internal/tmpl/LICENSE
----------
Module: github.com/containernetworking/cni
Version: v1.2.3
License: Apache-2.0
License URL: https://github.com/containernetworking/cni/blob/v1.2.3/LICENSE
----------
Module: github.com/cpuguy83/go-md2man/v2/md2man
Version: v2.0.7
License: MIT
License URL: https://github.com/cpuguy83/go-md2man/blob/v2.0.7/LICENSE.md
----------
Module: github.com/creativeprojects/go-selfupdate
Version: v1.5.2
License: MIT
License URL: https://github.com/creativeprojects/go-selfupdate/blob/v1.5.2/LICENSE
----------
Module: github.com/cyphar/filepath-securejoin
Version: v0.6.1
License: MPL-2.0
License URL: https://github.com/cyphar/filepath-securejoin/blob/v0.6.1/COPYING.md
----------
Module: github.com/cyphar/filepath-securejoin
Version: v0.6.1
License: BSD-3-Clause
License URL: https://github.com/cyphar/filepath-securejoin/blob/v0.6.1/COPYING.md
----------
Module: github.com/davecgh/go-spew/spew
Version: v1.1.2-0.20180830191138-d8f796af33cc
License: ISC
License URL: https://github.com/davecgh/go-spew/blob/d8f796af33cc/LICENSE
----------
Module: github.com/dylibso/observe-sdk/go
Version: v0.0.0-20240828172851-9145d8ad07e1
License: Apache-2.0
License URL: https://github.com/dylibso/observe-sdk/blob/9145d8ad07e1/go/LICENSE
----------
Module: github.com/emicklei/go-restful/v3
Version: v3.13.0
License: MIT
License URL: https://github.com/emicklei/go-restful/blob/v3.13.0/LICENSE
----------
Module: github.com/evanphx/json-patch/v5
Version: v5.9.11
License: BSD-3-Clause
License URL: https://github.com/evanphx/json-patch/blob/v5.9.11/v5/LICENSE
----------
Module: github.com/exponent-io/jsonpath
Version: v0.0.0-20210407135951-1de76d718b3f
License: MIT
License URL: https://github.com/exponent-io/jsonpath/blob/1de76d718b3f/LICENSE
----------
Module: github.com/extism/go-sdk
Version: v1.7.1
License: BSD-3-Clause
License URL: https://github.com/extism/go-sdk/blob/v1.7.1/LICENSE
----------
Module: github.com/fatih/color
Version: v1.19.0
License: MIT
License URL: https://github.com/fatih/color/blob/v1.19.0/LICENSE.md
----------
Module: github.com/felixge/httpsnoop
Version: v1.0.4
License: MIT
License URL: https://github.com/felixge/httpsnoop/blob/v1.0.4/LICENSE.txt
----------
Module: github.com/fluxcd/cli-utils/pkg
Version: v0.37.2-flux.1
License: Apache-2.0
License URL: https://github.com/fluxcd/cli-utils/blob/v0.37.2-flux.1/LICENSE
----------
Module: github.com/fsnotify/fsnotify
Version: v1.9.0
License: BSD-3-Clause
License URL: https://github.com/fsnotify/fsnotify/blob/v1.9.0/LICENSE
----------
Module: github.com/fxamacker/cbor/v2
Version: v2.9.0
License: MIT
License URL: https://github.com/fxamacker/cbor/blob/v2.9.0/LICENSE
----------
Module: github.com/getsops/gopgagent
Version: v0.0.0-20241224165529-7044f28e491e
License: Apache-2.0
License URL: https://github.com/getsops/gopgagent/blob/7044f28e491e/LICENSE
----------
Module: github.com/getsops/sops/v3
Version: v3.12.2
License: MPL-2.0
License URL: https://github.com/getsops/sops/blob/v3.12.2/LICENSE
----------
Module: github.com/go-errors/errors
Version: v1.5.1
License: MIT
License URL: https://github.com/go-errors/errors/blob/v1.5.1/LICENSE.MIT
----------
Module: github.com/go-fed/httpsig
Version: v1.1.0
License: BSD-3-Clause
License URL: https://github.com/go-fed/httpsig/blob/v1.1.0/LICENSE
----------
Module: github.com/go-gorp/gorp/v3
Version: v3.1.0
License: MIT
License URL: https://github.com/go-gorp/gorp/blob/v3.1.0/LICENSE
----------
Module: github.com/go-jose/go-jose/v4
Version: v4.1.4
License: Apache-2.0
License URL: https://github.com/go-jose/go-jose/blob/v4.1.4/LICENSE
----------
Module: github.com/go-jose/go-jose/v4/json
Version: v4.1.4
License: BSD-3-Clause
License URL: https://github.com/go-jose/go-jose/blob/v4.1.4/json/LICENSE
----------
Module: github.com/go-logr/logr
Version: v1.4.3
License: Apache-2.0
License URL: https://github.com/go-logr/logr/blob/v1.4.3/LICENSE
----------
Module: github.com/go-logr/stdr
Version: v1.2.2
License: Apache-2.0
License URL: https://github.com/go-logr/stdr/blob/v1.2.2/LICENSE
----------
Module: github.com/go-logr/zapr
Version: v1.3.0
License: Apache-2.0
License URL: https://github.com/go-logr/zapr/blob/v1.3.0/LICENSE
----------
Module: github.com/go-openapi/jsonpointer
Version: v0.22.5
License: Apache-2.0
License URL: https://github.com/go-openapi/jsonpointer/blob/v0.22.5/LICENSE
----------
Module: github.com/go-openapi/jsonreference
Version: v0.21.5
License: Apache-2.0
License URL: https://github.com/go-openapi/jsonreference/blob/v0.21.5/LICENSE
----------
Module: github.com/go-openapi/swag
Version: v0.25.5
License: Apache-2.0
License URL: https://github.com/go-openapi/swag/blob/v0.25.5/LICENSE
----------
Module: github.com/go-openapi/swag/cmdutils
Version: v0.25.5
License: Apache-2.0
License URL: https://github.com/go-openapi/swag/blob/cmdutils/v0.25.5/cmdutils/LICENSE
----------
Module: github.com/go-openapi/swag/conv
Version: v0.25.5
License: Apache-2.0
License URL: https://github.com/go-openapi/swag/blob/conv/v0.25.5/conv/LICENSE
----------
Module: github.com/go-openapi/swag/fileutils
Version: v0.25.5
License: Apache-2.0
License URL: https://github.com/go-openapi/swag/blob/fileutils/v0.25.5/fileutils/LICENSE
----------
Module: github.com/go-openapi/swag/jsonname
Version: v0.25.5
License: Apache-2.0
License URL: https://github.com/go-openapi/swag/blob/jsonname/v0.25.5/jsonname/LICENSE
----------
Module: github.com/go-openapi/swag/jsonutils
Version: v0.25.5
License: Apache-2.0
License URL: https://github.com/go-openapi/swag/blob/jsonutils/v0.25.5/jsonutils/LICENSE
----------
Module: github.com/go-openapi/swag/loading
Version: v0.25.5
License: Apache-2.0
License URL: https://github.com/go-openapi/swag/blob/loading/v0.25.5/loading/LICENSE
----------
Module: github.com/go-openapi/swag/mangling
Version: v0.25.5
License: Apache-2.0
License URL: https://github.com/go-openapi/swag/blob/mangling/v0.25.5/mangling/LICENSE
----------
Module: github.com/go-openapi/swag/netutils
Version: v0.25.5
License: Apache-2.0
License URL: https://github.com/go-openapi/swag/blob/netutils/v0.25.5/netutils/LICENSE
----------
Module: github.com/go-openapi/swag/stringutils
Version: v0.25.5
License: Apache-2.0
License URL: https://github.com/go-openapi/swag/blob/stringutils/v0.25.5/stringutils/LICENSE
----------
Module: github.com/go-openapi/swag/typeutils
Version: v0.25.5
License: Apache-2.0
License URL: https://github.com/go-openapi/swag/blob/typeutils/v0.25.5/typeutils/LICENSE
----------
Module: github.com/go-openapi/swag/yamlutils
Version: v0.25.5
License: Apache-2.0
License URL: https://github.com/go-openapi/swag/blob/yamlutils/v0.25.5/yamlutils/LICENSE
----------
Module: github.com/gobwas/glob
Version: v0.2.3
License: MIT
License URL: https://github.com/gobwas/glob/blob/v0.2.3/LICENSE
----------
Module: github.com/gogo/protobuf/proto
Version: v1.3.2
License: BSD-3-Clause
License URL: https://github.com/gogo/protobuf/blob/v1.3.2/LICENSE
----------
Module: github.com/google/btree
Version: v1.1.3
License: Apache-2.0
License URL: https://github.com/google/btree/blob/v1.1.3/LICENSE
----------
Module: github.com/google/gnostic-models
Version: v0.7.1
License: Apache-2.0
License URL: https://github.com/google/gnostic-models/blob/v0.7.1/LICENSE
----------
Module: github.com/google/go-cmp/cmp
Version: v0.7.0
License: BSD-3-Clause
License URL: https://github.com/google/go-cmp/blob/v0.7.0/LICENSE
----------
Module: github.com/google/go-github/v74/github
Version: v74.0.0
License: BSD-3-Clause
License URL: https://github.com/google/go-github/blob/v74.0.0/LICENSE
----------
Module: github.com/google/go-querystring/query
Version: v1.2.0
License: BSD-3-Clause
License URL: https://github.com/google/go-querystring/blob/v1.2.0/LICENSE
----------
Module: github.com/google/s2a-go
Version: v0.1.9
License: Apache-2.0
License URL: https://github.com/google/s2a-go/blob/v0.1.9/LICENSE.md
----------
Module: github.com/google/shlex
Version: v0.0.0-20191202100458-e7afc7fbc510
License: Apache-2.0
License URL: https://github.com/google/shlex/blob/e7afc7fbc510/COPYING
----------
Module: github.com/google/uuid
Version: v1.6.0
License: BSD-3-Clause
License URL: https://github.com/google/uuid/blob/v1.6.0/LICENSE
----------
Module: github.com/googleapis/enterprise-certificate-proxy/client
Version: v0.3.14
License: Apache-2.0
License URL: https://github.com/googleapis/enterprise-certificate-proxy/blob/v0.3.14/LICENSE
----------
Module: github.com/googleapis/gax-go/v2
Version: v2.21.0
License: BSD-3-Clause
License URL: https://github.com/googleapis/gax-go/blob/v2.21.0/v2/LICENSE
----------
Module: github.com/gorilla/websocket
Version: v1.5.4-0.20250319132907-e064f32e3674
License: BSD-2-Clause
License URL: https://github.com/gorilla/websocket/blob/e064f32e3674/LICENSE
----------
Module: github.com/gosuri/uitable
Version: v0.0.4
License: MIT
License URL: https://github.com/gosuri/uitable/blob/v0.0.4/LICENSE
----------
Module: github.com/gosuri/uitable/util/wordwrap
Version: v0.0.4
License: MIT
License URL: https://github.com/gosuri/uitable/blob/v0.0.4/util/wordwrap/LICENSE.md
----------
Module: github.com/gregjones/httpcache
Version: v0.0.0-20190611155906-901d90724c79
License: MIT
License URL: https://github.com/gregjones/httpcache/blob/901d90724c79/LICENSE.txt
----------
Module: github.com/hashicorp/errwrap
Version: v1.1.0
License: MPL-2.0
License URL: https://github.com/hashicorp/errwrap/blob/v1.1.0/LICENSE
----------
Module: github.com/hashicorp/go-cleanhttp
Version: v0.5.2
License: MPL-2.0
License URL: https://github.com/hashicorp/go-cleanhttp/blob/v0.5.2/LICENSE
----------
Module: github.com/hashicorp/go-multierror
Version: v1.1.1
License: MPL-2.0
License URL: https://github.com/hashicorp/go-multierror/blob/v1.1.1/LICENSE
----------
Module: github.com/hashicorp/go-retryablehttp
Version: v0.7.8
License: MPL-2.0
License URL: https://github.com/hashicorp/go-retryablehttp/blob/v0.7.8/LICENSE
----------
Module: github.com/hashicorp/go-rootcerts
Version: v1.0.2
License: MPL-2.0
License URL: https://github.com/hashicorp/go-rootcerts/blob/v1.0.2/LICENSE
----------
Module: github.com/hashicorp/go-secure-stdlib/parseutil
Version: v0.2.0
License: MPL-2.0
License URL: https://github.com/hashicorp/go-secure-stdlib/blob/parseutil/v0.2.0/parseutil/LICENSE
----------
Module: github.com/hashicorp/go-secure-stdlib/strutil
Version: v0.1.2
License: MPL-2.0
License URL: https://github.com/hashicorp/go-secure-stdlib/blob/strutil/v0.1.2/strutil/LICENSE
----------
Module: github.com/hashicorp/go-sockaddr
Version: v1.0.7
License: MPL-2.0
License URL: https://github.com/hashicorp/go-sockaddr/blob/v1.0.7/LICENSE
----------
Module: github.com/hashicorp/go-version
Version: v1.8.0
License: MPL-2.0
License URL: https://github.com/hashicorp/go-version/blob/v1.8.0/LICENSE
----------
Module: github.com/hashicorp/hcl
Version: v1.0.1-vault-7
License: MPL-2.0
License URL: https://github.com/hashicorp/hcl/blob/v1.0.1-vault-7/LICENSE
----------
Module: github.com/hashicorp/vault/api
Version: v1.23.0
License: MPL-2.0
License URL: https://github.com/hashicorp/vault/blob/api/v1.23.0/api/LICENSE
----------
Module: github.com/hashicorp/vault/api/auth/approle
Version: v0.8.0
License: Unknown
License URL: Unknown
----------
Module: github.com/hashicorp/vault/api/auth/kubernetes
Version: v0.8.0
License: Unknown
License URL: Unknown
----------
Module: github.com/huandu/xstrings
Version: v1.5.0
License: MIT
License URL: https://github.com/huandu/xstrings/blob/v1.5.0/LICENSE
----------
Module: github.com/ianlancetaylor/demangle
Version: v0.0.0-20251118225945-96ee0021ea0f
License: BSD-3-Clause
License URL: https://github.com/ianlancetaylor/demangle/blob/96ee0021ea0f/LICENSE
----------
Module: github.com/jedib0t/go-pretty/v6
Version: v6.7.9
License: MIT
License URL: https://github.com/jedib0t/go-pretty/blob/v6.7.9/LICENSE
----------
Module: github.com/jmoiron/sqlx
Version: v1.4.0
License: MIT
License URL: https://github.com/jmoiron/sqlx/blob/v1.4.0/LICENSE
----------
Module: github.com/json-iterator/go
Version: v1.1.13-0.20220915233716-71ac16282d12
License: MIT
License URL: https://github.com/json-iterator/go/blob/71ac16282d12/LICENSE
----------
Module: github.com/k8snetworkplumbingwg/network-attachment-definition-client/pkg
Version: v1.7.7
License: Apache-2.0
License URL: https://github.com/k8snetworkplumbingwg/network-attachment-definition-client/blob/v1.7.7/LICENSE
----------
Module: github.com/kr/fs
Version: v0.1.0
License: BSD-3-Clause
License URL: https://github.com/kr/fs/blob/v0.1.0/LICENSE
----------
Module: github.com/kube-object-storage/lib-bucket-provisioner/pkg/apis/objectbucket.io
Version: v0.0.0-20221122204822-d1a8c34382f1
License: Apache-2.0
License URL: https://github.com/kube-object-storage/lib-bucket-provisioner/blob/d1a8c34382f1/LICENSE
----------
Module: github.com/kubernetes-csi/external-snapshotter/client/v8/apis/volumesnapshot/v1
Version: v8.4.0
License: Apache-2.0
License URL: https://github.com/kubernetes-csi/external-snapshotter/blob/client/v8.4.0/client/LICENSE
----------
Module: github.com/lann/builder
Version: v0.0.0-20180802200727-47ae307949d0
License: MIT
License URL: https://github.com/lann/builder/blob/47ae307949d0/LICENSE
----------
Module: github.com/lann/ps
Version: v0.0.0-20150810152359-62de8c46ede0
License: MIT
License URL: https://github.com/lann/ps/blob/62de8c46ede0/LICENSE
----------
Module: github.com/lib/pq
Version: v1.12.0
License: MIT
License URL: https://github.com/lib/pq/blob/v1.12.0/LICENSE
----------
Module: github.com/libopenstorage/secrets
Version: v0.0.0-20240315053144-3195f6906937
License: Apache-2.0
License URL: https://github.com/rook/secrets/blob/3195f6906937/LICENSE
----------
Module: github.com/liggitt/tabwriter
Version: v0.0.0-20181228230101-89fcab3d43de
License: BSD-3-Clause
License URL: https://github.com/liggitt/tabwriter/blob/89fcab3d43de/LICENSE
----------
Module: github.com/lithammer/shortuuid
Version: v3.0.0
License: MIT
License URL: https://github.com/lithammer/shortuuid/blob/v3.0.0/LICENSE
----------
Module: github.com/mattn/go-colorable
Version: v0.1.14
License: MIT
License URL: https://github.com/mattn/go-colorable/blob/v0.1.14/LICENSE
----------
Module: github.com/mattn/go-isatty
Version: v0.0.20
License: MIT
License URL: https://github.com/mattn/go-isatty/blob/v0.0.20/LICENSE
----------
Module: github.com/mattn/go-runewidth
Version: v0.0.21
License: MIT
License URL: https://github.com/mattn/go-runewidth/blob/v0.0.21/LICENSE
----------
Module: github.com/mitchellh/copystructure
Version: v1.2.0
License: MIT
License URL: https://github.com/mitchellh/copystructure/blob/v1.2.0/LICENSE
----------
Module: github.com/mitchellh/go-wordwrap
Version: v1.0.1
License: MIT
License URL: https://github.com/mitchellh/go-wordwrap/blob/v1.0.1/LICENSE.md
----------
Module: github.com/mitchellh/mapstructure
Version: v1.5.1-0.20231216201459-8508981c8b6c
License: MIT
License URL: https://github.com/mitchellh/mapstructure/blob/8508981c8b6c/LICENSE
----------
Module: github.com/mitchellh/reflectwalk
Version: v1.0.2
License: MIT
License URL: https://github.com/mitchellh/reflectwalk/blob/v1.0.2/LICENSE
----------
Module: github.com/moby/spdystream
Version: v0.5.1
License: Apache-2.0
License URL: https://github.com/moby/spdystream/blob/v0.5.1/LICENSE
----------
Module: github.com/moby/spdystream/spdy
Version: v0.5.1
License: BSD-3-Clause
License URL: https://github.com/moby/spdystream/blob/v0.5.1/spdy/LICENSE
----------
Module: github.com/moby/term
Version: v0.5.2
License: Apache-2.0
License URL: https://github.com/moby/term/blob/v0.5.2/LICENSE
----------
Module: github.com/modern-go/concurrent
Version: v0.0.0-20180306012644-bacd9c7ef1dd
License: Apache-2.0
License URL: https://github.com/modern-go/concurrent/blob/bacd9c7ef1dd/LICENSE
----------
Module: github.com/modern-go/reflect2
Version: v1.0.3-0.20250322232337-35a7c28c31ee
License: Apache-2.0
License URL: https://github.com/modern-go/reflect2/blob/35a7c28c31ee/LICENSE
----------
Module: github.com/monochromegane/go-gitignore
Version: v0.0.0-20200626010858-205db1a8cc00
License: MIT
License URL: https://github.com/monochromegane/go-gitignore/blob/205db1a8cc00/LICENSE
----------
Module: github.com/munnerz/goautoneg
Version: v0.0.0-20191010083416-a7dc8b61c822
License: BSD-3-Clause
License URL: https://github.com/munnerz/goautoneg/blob/a7dc8b61c822/LICENSE
----------
Module: github.com/mxk/go-flowrate/flowrate
Version: v0.0.0-20140419014527-cca7078d478f
License: BSD-3-Clause
License URL: https://github.com/mxk/go-flowrate/blob/cca7078d478f/LICENSE
----------
Module: github.com/onsi/gomega
Version: v1.39.1
License: MIT
License URL: https://github.com/onsi/gomega/blob/v1.39.1/LICENSE
----------
Module: github.com/opencontainers/go-digest
Version: v1.0.0
License: Apache-2.0
License URL: https://github.com/opencontainers/go-digest/blob/v1.0.0/LICENSE
----------
Module: github.com/opencontainers/image-spec/specs-go
Version: v1.1.1
License: Apache-2.0
License URL: https://github.com/opencontainers/image-spec/blob/v1.1.1/LICENSE
----------
Module: github.com/openshift/api/security/v1
Version: v0.0.0-20241216151652-de9de05a8e43
License: Apache-2.0
License URL: https://github.com/openshift/api/blob/de9de05a8e43/LICENSE
----------
Module: github.com/peterbourgon/diskv
Version: v2.0.1
License: MIT
License URL: https://github.com/peterbourgon/diskv/blob/v2.0.1/LICENSE
----------
Module: github.com/pkg/errors
Version: v0.9.1
License: BSD-2-Clause
License URL: https://github.com/pkg/errors/blob/v0.9.1/LICENSE
----------
Module: github.com/pkg/sftp
Version: v1.13.10
License: BSD-2-Clause
License URL: https://github.com/pkg/sftp/blob/v1.13.10/LICENSE
----------
Module: github.com/pmezard/go-difflib/difflib
Version: v1.0.1-0.20181226105442-5d4384ee4fb2
License: BSD-3-Clause
License URL: https://github.com/pmezard/go-difflib/blob/5d4384ee4fb2/LICENSE
----------
Module: github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring
Version: v0.87.1
License: Apache-2.0
License URL: https://github.com/prometheus-operator/prometheus-operator/blob/pkg/apis/monitoring/v0.87.1/pkg/apis/monitoring/LICENSE
----------
Module: github.com/prometheus/client_golang/internal/github.com/golang/gddo/httputil
Version: v1.23.2
License: BSD-3-Clause
License URL: https://github.com/prometheus/client_golang/blob/v1.23.2/internal/github.com/golang/gddo/LICENSE
----------
Module: github.com/prometheus/client_golang/prometheus
Version: v1.23.2
License: Apache-2.0
License URL: https://github.com/prometheus/client_golang/blob/v1.23.2/LICENSE
----------
Module: github.com/prometheus/client_model/go
Version: v0.6.2
License: Apache-2.0
License URL: https://github.com/prometheus/client_model/blob/v0.6.2/LICENSE
----------
Module: github.com/prometheus/common
Version: v0.67.5
License: Apache-2.0
License URL: https://github.com/prometheus/common/blob/v0.67.5/LICENSE
----------
Module: github.com/prometheus/procfs
Version: v0.20.1
License: Apache-2.0
License URL: https://github.com/prometheus/procfs/blob/v0.20.1/LICENSE
----------
Module: github.com/rook/rook/pkg/apis/ceph.rook.io
Version: v0.0.0-20260417181530-5bd05dcbd0db
License: Apache-2.0
License URL: https://github.com/rook/rook/blob/5bd05dcbd0db/pkg/apis/LICENSE
----------
Module: github.com/rubenv/sql-migrate
Version: v1.8.1
License: MIT
License URL: https://github.com/rubenv/sql-migrate/blob/v1.8.1/LICENSE
----------
Module: github.com/rubenv/sql-migrate/sqlparse
Version: v1.8.1
License: MIT
License URL: https://github.com/rubenv/sql-migrate/blob/v1.8.1/sqlparse/LICENSE
----------
Module: github.com/russross/blackfriday/v2
Version: v2.1.0
License: BSD-2-Clause
License URL: https://github.com/russross/blackfriday/blob/v2.1.0/LICENSE.txt
----------
Module: github.com/ryanuber/go-glob
Version: v1.0.0
License: MIT
License URL: https://github.com/ryanuber/go-glob/blob/v1.0.0/LICENSE
----------
Module: github.com/santhosh-tekuri/jsonschema/v6
Version: v6.0.2
License: Apache-2.0
License URL: https://github.com/santhosh-tekuri/jsonschema/blob/v6.0.2/LICENSE
----------
Module: github.com/shopspring/decimal
Version: v1.4.0
License: MIT
License URL: https://github.com/shopspring/decimal/blob/v1.4.0/LICENSE
----------
Module: github.com/sirupsen/logrus
Version: v1.9.4
License: MIT
License URL: https://github.com/sirupsen/logrus/blob/v1.9.4/LICENSE
----------
Module: github.com/spf13/cast
Version: v1.10.0
License: MIT
License URL: https://github.com/spf13/cast/blob/v1.10.0/LICENSE
----------
Module: github.com/spf13/cobra
Version: v1.10.2
License: Apache-2.0
License URL: https://github.com/spf13/cobra/blob/v1.10.2/LICENSE.txt
----------
Module: github.com/spf13/pflag
Version: v1.0.10
License: BSD-3-Clause
License URL: https://github.com/spf13/pflag/blob/v1.0.10/LICENSE
----------
Module: github.com/stretchr/objx
Version: v0.5.3
License: MIT
License URL: https://github.com/stretchr/objx/blob/v0.5.3/LICENSE
----------
Module: github.com/stretchr/testify
Version: v1.11.1
License: MIT
License URL: https://github.com/stretchr/testify/blob/v1.11.1/LICENSE
----------
Module: github.com/tetratelabs/wabin
Version: v0.0.0-20230304001439-f6f874872834
License: Apache-2.0
License URL: https://github.com/tetratelabs/wabin/blob/f6f874872834/LICENSE
----------
Module: github.com/tetratelabs/wazero
Version: v1.11.0
License: Apache-2.0
License URL: https://github.com/tetratelabs/wazero/blob/v1.11.0/LICENSE
----------
Module: github.com/ulikunitz/xz
Version: v0.5.15
License: BSD-3-Clause
License URL: https://github.com/ulikunitz/xz/blob/v0.5.15/LICENSE