-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcatalog.rs
3657 lines (3653 loc) · 222 KB
/
catalog.rs
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
// SPDX-FileCopyrightText: The kube-custom-resources-rs Authors
// SPDX-License-Identifier: 0BSD
pub const CRD_V1_SOURCES: &'static [UpstreamSource] = &[
UpstreamSource {
project_name: "1Password/onepassword-operator",
license: MIT,
urls: &[
"https://github.com/1Password/onepassword-operator/blob/main/config/crd/bases/onepassword.com_onepassworditems.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "3scale/3scale-operator",
license: APACHE_V2,
urls: &[
"https://github.com/3scale/3scale-operator/blob/master/config/crd/bases/apps.3scale.net_apimanagerbackups.yaml",
"https://github.com/3scale/3scale-operator/blob/master/config/crd/bases/apps.3scale.net_apimanagerrestores.yaml",
"https://github.com/3scale/3scale-operator/blob/master/config/crd/bases/apps.3scale.net_apimanagers.yaml",
"https://github.com/3scale/3scale-operator/blob/master/config/crd/bases/capabilities.3scale.net_activedocs.yaml",
"https://github.com/3scale/3scale-operator/blob/master/config/crd/bases/capabilities.3scale.net_applications.yaml",
"https://github.com/3scale/3scale-operator/blob/master/config/crd/bases/capabilities.3scale.net_backends.yaml",
"https://github.com/3scale/3scale-operator/blob/master/config/crd/bases/capabilities.3scale.net_custompolicydefinitions.yaml",
"https://github.com/3scale/3scale-operator/blob/master/config/crd/bases/capabilities.3scale.net_developeraccounts.yaml",
"https://github.com/3scale/3scale-operator/blob/master/config/crd/bases/capabilities.3scale.net_developerusers.yaml",
"https://github.com/3scale/3scale-operator/blob/master/config/crd/bases/capabilities.3scale.net_openapis.yaml",
"https://github.com/3scale/3scale-operator/blob/master/config/crd/bases/capabilities.3scale.net_products.yaml",
"https://github.com/3scale/3scale-operator/blob/master/config/crd/bases/capabilities.3scale.net_proxyconfigpromotes.yaml",
"https://github.com/3scale/3scale-operator/blob/master/config/crd/bases/capabilities.3scale.net_tenants.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "3scale/apicast-operator",
license: APACHE_V2,
urls: &[
"https://github.com/3scale/apicast-operator/blob/master/config/crd/bases/apps.3scale.net_apicasts.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "3scale-ops/marin3r",
license: APACHE_V2,
urls: &[
"https://github.com/3scale-ops/marin3r/blob/main/config/crd/bases/marin3r.3scale.net_envoyconfigrevisions.yaml",
"https://github.com/3scale-ops/marin3r/blob/main/config/crd/bases/marin3r.3scale.net_envoyconfigs.yaml",
"https://github.com/3scale-ops/marin3r/blob/main/config/crd/bases/operator.marin3r.3scale.net_discoveryservicecertificates.yaml",
"https://github.com/3scale-ops/marin3r/blob/main/config/crd/bases/operator.marin3r.3scale.net_discoveryservices.yaml",
"https://github.com/3scale-ops/marin3r/blob/main/config/crd/bases/operator.marin3r.3scale.net_envoydeployments.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "actions/actions-runner-controller",
license: APACHE_V2,
urls: &[
"https://github.com/actions/actions-runner-controller/blob/master/config/crd/bases/actions.github.com_autoscalinglisteners.yaml",
"https://github.com/actions/actions-runner-controller/blob/master/config/crd/bases/actions.github.com_autoscalingrunnersets.yaml",
"https://github.com/actions/actions-runner-controller/blob/master/config/crd/bases/actions.github.com_ephemeralrunners.yaml",
"https://github.com/actions/actions-runner-controller/blob/master/config/crd/bases/actions.github.com_ephemeralrunnersets.yaml",
"https://github.com/actions/actions-runner-controller/blob/master/config/crd/bases/actions.summerwind.dev_horizontalrunnerautoscalers.yaml",
"https://github.com/actions/actions-runner-controller/blob/master/config/crd/bases/actions.summerwind.dev_runnerdeployments.yaml",
"https://github.com/actions/actions-runner-controller/blob/master/config/crd/bases/actions.summerwind.dev_runnerreplicasets.yaml",
"https://github.com/actions/actions-runner-controller/blob/master/config/crd/bases/actions.summerwind.dev_runners.yaml",
"https://github.com/actions/actions-runner-controller/blob/master/config/crd/bases/actions.summerwind.dev_runnersets.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aerospike/aerospike-kubernetes-operator",
license: APACHE_V2,
urls: &[
"https://github.com/aerospike/aerospike-kubernetes-operator/blob/master/config/crd/bases/asdb.aerospike.com_aerospikeclusters.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "alauda/nativestor",
license: APACHE_V2,
urls: &[
"https://github.com/alauda/nativestor/blob/main/config/crd/bases/nativestor.alauda.io_rawdevices.yaml",
"https://github.com/alauda/nativestor/blob/main/config/crd/bases/topolvm.cybozu.com_logicalvolumes.yaml",
"https://github.com/alauda/nativestor/blob/main/config/crd/bases/topolvm.cybozu.com_topolvmclusters.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "alexandrevilain/temporal-operator",
license: APACHE_V2,
urls: &[
"https://github.com/alexandrevilain/temporal-operator/blob/main/config/crd/bases/temporal.io_temporalclusterclients.yaml",
"https://github.com/alexandrevilain/temporal-operator/blob/main/config/crd/bases/temporal.io_temporalclusters.yaml",
"https://github.com/alexandrevilain/temporal-operator/blob/main/config/crd/bases/temporal.io_temporalnamespaces.yaml",
"https://github.com/alexandrevilain/temporal-operator/blob/main/config/crd/bases/temporal.io_temporalworkerprocesses.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "Alvearie/imaging-ingestion",
license: APACHE_V2,
urls: &[
"https://github.com/Alvearie/imaging-ingestion/blob/main/imaging-ingestion-operator/config/crd/bases/imaging-ingestion.alvearie.org_dicomeventbridges.yaml",
"https://github.com/Alvearie/imaging-ingestion/blob/main/imaging-ingestion-operator/config/crd/bases/imaging-ingestion.alvearie.org_dicomeventdriveningestions.yaml",
"https://github.com/Alvearie/imaging-ingestion/blob/main/imaging-ingestion-operator/config/crd/bases/imaging-ingestion.alvearie.org_dicominstancebindings.yaml",
"https://github.com/Alvearie/imaging-ingestion/blob/main/imaging-ingestion-operator/config/crd/bases/imaging-ingestion.alvearie.org_dicomstudybindings.yaml",
"https://github.com/Alvearie/imaging-ingestion/blob/main/imaging-ingestion-operator/config/crd/bases/imaging-ingestion.alvearie.org_dicomwebingestionservices.yaml",
"https://github.com/Alvearie/imaging-ingestion/blob/main/imaging-ingestion-operator/config/crd/bases/imaging-ingestion.alvearie.org_dimseingestionservices.yaml",
"https://github.com/Alvearie/imaging-ingestion/blob/main/imaging-ingestion-operator/config/crd/bases/imaging-ingestion.alvearie.org_dimseproxies.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "ansible/awx-operator",
license: APACHE_V2,
urls: &[
"https://github.com/ansible/awx-operator/blob/devel/config/crd/bases/awx.ansible.com_awxbackups.yaml",
"https://github.com/ansible/awx-operator/blob/devel/config/crd/bases/awx.ansible.com_awxrestores.yaml",
"https://github.com/ansible/awx-operator/blob/devel/config/crd/bases/awx.ansible.com_awxs.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "antrea-io/antrea",
license: APACHE_V2,
urls: &[
"https://github.com/antrea-io/antrea/blob/main/multicluster/config/crd/bases/multicluster.crd.antrea.io_clusterclaims.yaml",
"https://github.com/antrea-io/antrea/blob/main/multicluster/config/crd/bases/multicluster.crd.antrea.io_clusterinfoimports.yaml",
"https://github.com/antrea-io/antrea/blob/main/multicluster/config/crd/bases/multicluster.crd.antrea.io_clustersets.yaml",
"https://github.com/antrea-io/antrea/blob/main/multicluster/config/crd/bases/multicluster.crd.antrea.io_gateways.yaml",
"https://github.com/antrea-io/antrea/blob/main/multicluster/config/crd/bases/multicluster.crd.antrea.io_labelidentities.yaml",
"https://github.com/antrea-io/antrea/blob/main/multicluster/config/crd/bases/multicluster.crd.antrea.io_memberclusterannounces.yaml",
"https://github.com/antrea-io/antrea/blob/main/multicluster/config/crd/bases/multicluster.crd.antrea.io_multiclusterconfigs.yaml",
"https://github.com/antrea-io/antrea/blob/main/multicluster/config/crd/bases/multicluster.crd.antrea.io_resourceexports.yaml",
"https://github.com/antrea-io/antrea/blob/main/multicluster/config/crd/bases/multicluster.crd.antrea.io_resourceimports.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "apache/apisix-ingress-controller",
license: APACHE_V2,
urls: &[
"https://github.com/apache/apisix-ingress-controller/blob/master/samples/deploy/crd/v1/ApisixClusterConfig.yaml",
"https://github.com/apache/apisix-ingress-controller/blob/master/samples/deploy/crd/v1/ApisixConsumer.yaml",
"https://github.com/apache/apisix-ingress-controller/blob/master/samples/deploy/crd/v1/ApisixGlobalRule.yaml",
"https://github.com/apache/apisix-ingress-controller/blob/master/samples/deploy/crd/v1/ApisixPluginConfig.yaml",
"https://github.com/apache/apisix-ingress-controller/blob/master/samples/deploy/crd/v1/ApisixRoute.yaml",
"https://github.com/apache/apisix-ingress-controller/blob/master/samples/deploy/crd/v1/ApisixTls.yaml",
"https://github.com/apache/apisix-ingress-controller/blob/master/samples/deploy/crd/v1/ApisixUpstream.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "apache/camel-k",
license: APACHE_V2,
urls: &[
"https://github.com/apache/camel-k/blob/main/pkg/resources/config/crd/bases/camel.apache.org_builds.yaml",
"https://github.com/apache/camel-k/blob/main/pkg/resources/config/crd/bases/camel.apache.org_camelcatalogs.yaml",
"https://github.com/apache/camel-k/blob/main/pkg/resources/config/crd/bases/camel.apache.org_integrationkits.yaml",
"https://github.com/apache/camel-k/blob/main/pkg/resources/config/crd/bases/camel.apache.org_integrationplatforms.yaml",
"https://github.com/apache/camel-k/blob/main/pkg/resources/config/crd/bases/camel.apache.org_integrationprofiles.yaml",
"https://github.com/apache/camel-k/blob/main/pkg/resources/config/crd/bases/camel.apache.org_integrations.yaml",
"https://github.com/apache/camel-k/blob/main/pkg/resources/config/crd/bases/camel.apache.org_kameletbindings.yaml",
"https://github.com/apache/camel-k/blob/main/pkg/resources/config/crd/bases/camel.apache.org_kamelets.yaml",
"https://github.com/apache/camel-k/blob/main/pkg/resources/config/crd/bases/camel.apache.org_pipes.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "apache/flink-kubernetes-operator",
license: APACHE_V2,
urls: &[
"https://github.com/apache/flink-kubernetes-operator/blob/main/helm/flink-kubernetes-operator/crds/flinkdeployments.flink.apache.org-v1.yml",
"https://github.com/apache/flink-kubernetes-operator/blob/main/helm/flink-kubernetes-operator/crds/flinksessionjobs.flink.apache.org-v1.yml",
],
ignores: &[],
},
UpstreamSource {
project_name: "apache/rocketmq-operator",
license: APACHE_V2,
urls: &[
"https://github.com/apache/rocketmq-operator/blob/master/deploy/crds/rocketmq.apache.org_brokers.yaml",
"https://github.com/apache/rocketmq-operator/blob/master/deploy/crds/rocketmq.apache.org_consoles.yaml",
"https://github.com/apache/rocketmq-operator/blob/master/deploy/crds/rocketmq.apache.org_nameservices.yaml",
"https://github.com/apache/rocketmq-operator/blob/master/deploy/crds/rocketmq.apache.org_topictransfers.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "apecloud/kubeblocks",
license: AGPL_V3_OR_LATER,
urls: &[
"https://github.com/apecloud/kubeblocks/blob/main/config/crd/bases/apps.kubeblocks.io_backuppolicytemplates.yaml",
"https://github.com/apecloud/kubeblocks/blob/main/config/crd/bases/apps.kubeblocks.io_clusterdefinitions.yaml",
"https://github.com/apecloud/kubeblocks/blob/main/config/crd/bases/apps.kubeblocks.io_clusters.yaml",
"https://github.com/apecloud/kubeblocks/blob/main/config/crd/bases/apps.kubeblocks.io_clusterversions.yaml",
"https://github.com/apecloud/kubeblocks/blob/main/config/crd/bases/apps.kubeblocks.io_componentdefinitions.yaml",
"https://github.com/apecloud/kubeblocks/blob/main/config/crd/bases/apps.kubeblocks.io_components.yaml",
"https://github.com/apecloud/kubeblocks/blob/main/config/crd/bases/apps.kubeblocks.io_componentversions.yaml",
"https://github.com/apecloud/kubeblocks/blob/main/config/crd/bases/apps.kubeblocks.io_configconstraints.yaml",
"https://github.com/apecloud/kubeblocks/blob/main/config/crd/bases/apps.kubeblocks.io_configurations.yaml",
"https://github.com/apecloud/kubeblocks/blob/main/config/crd/bases/apps.kubeblocks.io_opsdefinitions.yaml",
"https://github.com/apecloud/kubeblocks/blob/main/config/crd/bases/apps.kubeblocks.io_opsrequests.yaml",
"https://github.com/apecloud/kubeblocks/blob/main/config/crd/bases/apps.kubeblocks.io_servicedescriptors.yaml",
"https://github.com/apecloud/kubeblocks/blob/main/config/crd/bases/dataprotection.kubeblocks.io_actionsets.yaml",
"https://github.com/apecloud/kubeblocks/blob/main/config/crd/bases/dataprotection.kubeblocks.io_backuppolicies.yaml",
"https://github.com/apecloud/kubeblocks/blob/main/config/crd/bases/dataprotection.kubeblocks.io_backuprepos.yaml",
"https://github.com/apecloud/kubeblocks/blob/main/config/crd/bases/dataprotection.kubeblocks.io_backups.yaml",
"https://github.com/apecloud/kubeblocks/blob/main/config/crd/bases/dataprotection.kubeblocks.io_backupschedules.yaml",
"https://github.com/apecloud/kubeblocks/blob/main/config/crd/bases/dataprotection.kubeblocks.io_restores.yaml",
"https://github.com/apecloud/kubeblocks/blob/main/config/crd/bases/extensions.kubeblocks.io_addons.yaml",
"https://github.com/apecloud/kubeblocks/blob/main/config/crd/bases/storage.kubeblocks.io_storageproviders.yaml",
"https://github.com/apecloud/kubeblocks/blob/main/config/crd/bases/workloads.kubeblocks.io_instancesets.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "Apicurio/apicurio-registry-operator",
license: APACHE_V2,
urls: &[
"https://github.com/Apicurio/apicurio-registry-operator/blob/main/config/crd/resources/registry.apicur.io_apicurioregistries.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "apimatic/apimatic-kubernetes-operator",
license: APACHE_V2,
urls: &[
"https://github.com/apimatic/apimatic-kubernetes-operator/blob/main/config/crd/bases/apicodegen.apimatic.io_apimatics.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "application-stacks/runtime-component-operator",
license: APACHE_V2,
urls: &[
"https://github.com/application-stacks/runtime-component-operator/blob/main/config/crd/bases/rc.app.stacks_runtimecomponents.yaml",
"https://github.com/application-stacks/runtime-component-operator/blob/main/config/crd/bases/rc.app.stacks_runtimeoperations.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aquasecurity/aqua-operator",
license: AQUA,
urls: &[
"https://github.com/aquasecurity/aqua-operator/blob/master/config/crd/bases/aquasecurity.github.io_aquastarboards.yaml",
"https://github.com/aquasecurity/aqua-operator/blob/master/config/crd/bases/aquasecurity.github.io_clusterconfigauditreports.yaml",
"https://github.com/aquasecurity/aqua-operator/blob/master/config/crd/bases/aquasecurity.github.io_configauditreports.yaml",
"https://github.com/aquasecurity/aqua-operator/blob/master/config/crd/bases/operator.aquasec.com_aquacsps.yaml",
"https://github.com/aquasecurity/aqua-operator/blob/master/config/crd/bases/operator.aquasec.com_aquadatabases.yaml",
"https://github.com/aquasecurity/aqua-operator/blob/master/config/crd/bases/operator.aquasec.com_aquaenforcers.yaml",
"https://github.com/aquasecurity/aqua-operator/blob/master/config/crd/bases/operator.aquasec.com_aquagateways.yaml",
"https://github.com/aquasecurity/aqua-operator/blob/master/config/crd/bases/operator.aquasec.com_aquakubeenforcers.yaml",
"https://github.com/aquasecurity/aqua-operator/blob/master/config/crd/bases/operator.aquasec.com_aquascanners.yaml",
"https://github.com/aquasecurity/aqua-operator/blob/master/config/crd/bases/operator.aquasec.com_aquaservers.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "argoproj-labs/argocd-operator",
license: APACHE_V2,
urls: &[
"https://github.com/argoproj-labs/argocd-operator/blob/master/config/crd/bases/argoproj.io_applications.yaml",
"https://github.com/argoproj-labs/argocd-operator/blob/master/config/crd/bases/argoproj.io_applicationsets.yaml",
"https://github.com/argoproj-labs/argocd-operator/blob/master/config/crd/bases/argoproj.io_appprojects.yaml",
"https://github.com/argoproj-labs/argocd-operator/blob/master/config/crd/bases/argoproj.io_argocdexports.yaml",
"https://github.com/argoproj-labs/argocd-operator/blob/master/config/crd/bases/argoproj.io_argocds.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "arsenalzp/apch-operator",
license: APACHE_V2,
urls: &[
"https://github.com/arsenalzp/apch-operator/blob/master/config/crd/bases/apacheweb.arsenal.dev_apachewebs.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "atlasmap/atlasmap-operator",
license: APACHE_V2,
urls: &[
"https://github.com/atlasmap/atlasmap-operator/blob/main/config/crd/bases/atlasmap.io_atlasmaps.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "authzed/spicedb-operator",
license: APACHE_V2,
urls: &[
"https://github.com/authzed/spicedb-operator/blob/main/config/crds/authzed.com_spicedbclusters.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws/amazon-cloudwatch-agent-operator",
license: APACHE_V2,
urls: &[
"https://github.com/aws/amazon-cloudwatch-agent-operator/blob/main/config/crd/bases/cloudwatch.aws.amazon.com_amazoncloudwatchagents.yaml",
"https://github.com/aws/amazon-cloudwatch-agent-operator/blob/main/config/crd/bases/cloudwatch.aws.amazon.com_instrumentations.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws/amazon-network-policy-controller-k8s",
license: APACHE_V2,
urls: &[
"https://github.com/aws/amazon-network-policy-controller-k8s/blob/main/config/crd/bases/networking.k8s.aws_policyendpoints.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws/amazon-vpc-resource-controller-k8s",
license: APACHE_V2,
urls: &[
"https://github.com/aws/amazon-vpc-resource-controller-k8s/blob/master/config/crd/bases/vpcresources.k8s.aws_cninodes.yaml",
"https://github.com/aws/amazon-vpc-resource-controller-k8s/blob/master/config/crd/bases/vpcresources.k8s.aws_securitygrouppolicies.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws/aws-application-networking-k8s",
license: APACHE_V2,
urls: &[
"https://github.com/aws/aws-application-networking-k8s/blob/main/config/crds/bases/application-networking.k8s.aws_accesslogpolicies.yaml",
"https://github.com/aws/aws-application-networking-k8s/blob/main/config/crds/bases/application-networking.k8s.aws_iamauthpolicies.yaml",
"https://github.com/aws/aws-application-networking-k8s/blob/main/config/crds/bases/application-networking.k8s.aws_serviceexports.yaml",
"https://github.com/aws/aws-application-networking-k8s/blob/main/config/crds/bases/application-networking.k8s.aws_serviceimports.yaml",
"https://github.com/aws/aws-application-networking-k8s/blob/main/config/crds/bases/application-networking.k8s.aws_targetgrouppolicies.yaml",
"https://github.com/aws/aws-application-networking-k8s/blob/main/config/crds/bases/application-networking.k8s.aws_vpcassociationpolicies.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws/aws-app-mesh-controller-for-k8",
license: APACHE_V2,
urls: &[
"https://github.com/aws/aws-app-mesh-controller-for-k8s/blob/master/config/crd/bases/appmesh.k8s.aws_backendgroups.yaml",
"https://github.com/aws/aws-app-mesh-controller-for-k8s/blob/master/config/crd/bases/appmesh.k8s.aws_gatewayroutes.yaml",
"https://github.com/aws/aws-app-mesh-controller-for-k8s/blob/master/config/crd/bases/appmesh.k8s.aws_meshes.yaml",
"https://github.com/aws/aws-app-mesh-controller-for-k8s/blob/master/config/crd/bases/appmesh.k8s.aws_virtualgateways.yaml",
"https://github.com/aws/aws-app-mesh-controller-for-k8s/blob/master/config/crd/bases/appmesh.k8s.aws_virtualnodes.yaml",
"https://github.com/aws/aws-app-mesh-controller-for-k8s/blob/master/config/crd/bases/appmesh.k8s.aws_virtualrouters.yaml",
"https://github.com/aws/aws-app-mesh-controller-for-k8s/blob/master/config/crd/bases/appmesh.k8s.aws_virtualservices.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws/eks-anywhere",
license: APACHE_V2,
urls: &[
"https://github.com/aws/eks-anywhere/blob/main/config/crd/bases/anywhere.eks.amazonaws.com_awsdatacenterconfigs.yaml",
"https://github.com/aws/eks-anywhere/blob/main/config/crd/bases/anywhere.eks.amazonaws.com_awsiamconfigs.yaml",
"https://github.com/aws/eks-anywhere/blob/main/config/crd/bases/anywhere.eks.amazonaws.com_bundles.yaml",
"https://github.com/aws/eks-anywhere/blob/main/config/crd/bases/anywhere.eks.amazonaws.com_cloudstackdatacenterconfigs.yaml",
"https://github.com/aws/eks-anywhere/blob/main/config/crd/bases/anywhere.eks.amazonaws.com_cloudstackmachineconfigs.yaml",
"https://github.com/aws/eks-anywhere/blob/main/config/crd/bases/anywhere.eks.amazonaws.com_clusters.yaml",
"https://github.com/aws/eks-anywhere/blob/main/config/crd/bases/anywhere.eks.amazonaws.com_controlplaneupgrades.yaml",
"https://github.com/aws/eks-anywhere/blob/main/config/crd/bases/anywhere.eks.amazonaws.com_dockerdatacenterconfigs.yaml",
"https://github.com/aws/eks-anywhere/blob/main/config/crd/bases/anywhere.eks.amazonaws.com_eksareleases.yaml",
"https://github.com/aws/eks-anywhere/blob/main/config/crd/bases/anywhere.eks.amazonaws.com_fluxconfigs.yaml",
"https://github.com/aws/eks-anywhere/blob/main/config/crd/bases/anywhere.eks.amazonaws.com_gitopsconfigs.yaml",
"https://github.com/aws/eks-anywhere/blob/main/config/crd/bases/anywhere.eks.amazonaws.com_machinedeploymentupgrades.yaml",
"https://github.com/aws/eks-anywhere/blob/main/config/crd/bases/anywhere.eks.amazonaws.com_nodeupgrades.yaml",
"https://github.com/aws/eks-anywhere/blob/main/config/crd/bases/anywhere.eks.amazonaws.com_nutanixdatacenterconfigs.yaml",
"https://github.com/aws/eks-anywhere/blob/main/config/crd/bases/anywhere.eks.amazonaws.com_nutanixmachineconfigs.yaml",
"https://github.com/aws/eks-anywhere/blob/main/config/crd/bases/anywhere.eks.amazonaws.com_oidcconfigs.yaml",
"https://github.com/aws/eks-anywhere/blob/main/config/crd/bases/anywhere.eks.amazonaws.com_snowdatacenterconfigs.yaml",
"https://github.com/aws/eks-anywhere/blob/main/config/crd/bases/anywhere.eks.amazonaws.com_snowippools.yaml",
"https://github.com/aws/eks-anywhere/blob/main/config/crd/bases/anywhere.eks.amazonaws.com_snowmachineconfigs.yaml",
"https://github.com/aws/eks-anywhere/blob/main/config/crd/bases/anywhere.eks.amazonaws.com_tinkerbelldatacenterconfigs.yaml",
"https://github.com/aws/eks-anywhere/blob/main/config/crd/bases/anywhere.eks.amazonaws.com_tinkerbellmachineconfigs.yaml",
"https://github.com/aws/eks-anywhere/blob/main/config/crd/bases/anywhere.eks.amazonaws.com_tinkerbelltemplateconfigs.yaml",
"https://github.com/aws/eks-anywhere/blob/main/config/crd/bases/anywhere.eks.amazonaws.com_vspheredatacenterconfigs.yaml",
"https://github.com/aws/eks-anywhere/blob/main/config/crd/bases/anywhere.eks.amazonaws.com_vspheremachineconfigs.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws/karpenter-provider-aws",
license: APACHE_V2,
urls: &[
"https://github.com/aws/karpenter-provider-aws/blob/main/pkg/apis/crds/karpenter.k8s.aws_ec2nodeclasses.yaml",
"https://github.com/aws/karpenter-provider-aws/blob/main/pkg/apis/crds/karpenter.sh_nodeclaims.yaml",
"https://github.com/aws/karpenter-provider-aws/blob/main/pkg/apis/crds/karpenter.sh_nodepools.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws/zone-aware-controllers-for-k8s",
license: APACHE_V2,
urls: &[
"https://github.com/aws/zone-aware-controllers-for-k8s/blob/main/config/crd/bases/zonecontrol.k8s.aws_zoneawareupdates.yaml",
"https://github.com/aws/zone-aware-controllers-for-k8s/blob/main/config/crd/bases/zonecontrol.k8s.aws_zonedisruptionbudgets.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/acmpca-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/acmpca-controller/blob/main/config/crd/bases/acmpca.services.k8s.aws_certificateauthorities.yaml",
"https://github.com/aws-controllers-k8s/acmpca-controller/blob/main/config/crd/bases/acmpca.services.k8s.aws_certificateauthorityactivations.yaml",
"https://github.com/aws-controllers-k8s/acmpca-controller/blob/main/config/crd/bases/acmpca.services.k8s.aws_certificates.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/apigatewayv2-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/apigatewayv2-controller/blob/main/config/crd/bases/apigatewayv2.services.k8s.aws_apis.yaml",
"https://github.com/aws-controllers-k8s/apigatewayv2-controller/blob/main/config/crd/bases/apigatewayv2.services.k8s.aws_authorizers.yaml",
"https://github.com/aws-controllers-k8s/apigatewayv2-controller/blob/main/config/crd/bases/apigatewayv2.services.k8s.aws_deployments.yaml",
"https://github.com/aws-controllers-k8s/apigatewayv2-controller/blob/main/config/crd/bases/apigatewayv2.services.k8s.aws_integrations.yaml",
"https://github.com/aws-controllers-k8s/apigatewayv2-controller/blob/main/config/crd/bases/apigatewayv2.services.k8s.aws_routes.yaml",
"https://github.com/aws-controllers-k8s/apigatewayv2-controller/blob/main/config/crd/bases/apigatewayv2.services.k8s.aws_stages.yaml",
"https://github.com/aws-controllers-k8s/apigatewayv2-controller/blob/main/config/crd/bases/apigatewayv2.services.k8s.aws_vpclinks.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/applicationautoscaling-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/applicationautoscaling-controller/blob/main/config/crd/bases/applicationautoscaling.services.k8s.aws_scalabletargets.yaml",
"https://github.com/aws-controllers-k8s/applicationautoscaling-controller/blob/main/config/crd/bases/applicationautoscaling.services.k8s.aws_scalingpolicies.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/cloudfront-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/cloudfront-controller/blob/main/config/crd/bases/cloudfront.services.k8s.aws_cachepolicies.yaml",
"https://github.com/aws-controllers-k8s/cloudfront-controller/blob/main/config/crd/bases/cloudfront.services.k8s.aws_distributions.yaml",
"https://github.com/aws-controllers-k8s/cloudfront-controller/blob/main/config/crd/bases/cloudfront.services.k8s.aws_functions.yaml",
"https://github.com/aws-controllers-k8s/cloudfront-controller/blob/main/config/crd/bases/cloudfront.services.k8s.aws_originrequestpolicies.yaml",
"https://github.com/aws-controllers-k8s/cloudfront-controller/blob/main/config/crd/bases/cloudfront.services.k8s.aws_responseheaderspolicies.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/cloudtrail-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/cloudtrail-controller/blob/main/config/crd/bases/cloudtrail.services.k8s.aws_eventdatastores.yaml",
"https://github.com/aws-controllers-k8s/cloudtrail-controller/blob/main/config/crd/bases/cloudtrail.services.k8s.aws_trails.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/cloudwatch-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/cloudwatch-controller/blob/main/config/crd/bases/cloudwatch.services.k8s.aws_metricalarms.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/cloudwatchlogs-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/cloudwatchlogs-controller/blob/main/config/crd/bases/cloudwatchlogs.services.k8s.aws_loggroups.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/documentdb-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/documentdb-controller/blob/main/config/crd/bases/documentdb.services.k8s.aws_dbclusters.yaml",
"https://github.com/aws-controllers-k8s/documentdb-controller/blob/main/config/crd/bases/documentdb.services.k8s.aws_dbinstances.yaml",
"https://github.com/aws-controllers-k8s/documentdb-controller/blob/main/config/crd/bases/documentdb.services.k8s.aws_dbsubnetgroups.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/dynamodb-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/dynamodb-controller/blob/main/config/crd/bases/dynamodb.services.k8s.aws_backups.yaml",
"https://github.com/aws-controllers-k8s/dynamodb-controller/blob/main/config/crd/bases/dynamodb.services.k8s.aws_globaltables.yaml",
"https://github.com/aws-controllers-k8s/dynamodb-controller/blob/main/config/crd/bases/dynamodb.services.k8s.aws_tables.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/ec2-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/ec2-controller/blob/main/config/crd/bases/ec2.services.k8s.aws_dhcpoptions.yaml",
"https://github.com/aws-controllers-k8s/ec2-controller/blob/main/config/crd/bases/ec2.services.k8s.aws_elasticipaddresses.yaml",
"https://github.com/aws-controllers-k8s/ec2-controller/blob/main/config/crd/bases/ec2.services.k8s.aws_instances.yaml",
"https://github.com/aws-controllers-k8s/ec2-controller/blob/main/config/crd/bases/ec2.services.k8s.aws_internetgateways.yaml",
"https://github.com/aws-controllers-k8s/ec2-controller/blob/main/config/crd/bases/ec2.services.k8s.aws_natgateways.yaml",
"https://github.com/aws-controllers-k8s/ec2-controller/blob/main/config/crd/bases/ec2.services.k8s.aws_routetables.yaml",
"https://github.com/aws-controllers-k8s/ec2-controller/blob/main/config/crd/bases/ec2.services.k8s.aws_securitygroups.yaml",
"https://github.com/aws-controllers-k8s/ec2-controller/blob/main/config/crd/bases/ec2.services.k8s.aws_subnets.yaml",
"https://github.com/aws-controllers-k8s/ec2-controller/blob/main/config/crd/bases/ec2.services.k8s.aws_transitgateways.yaml",
"https://github.com/aws-controllers-k8s/ec2-controller/blob/main/config/crd/bases/ec2.services.k8s.aws_vpcendpoints.yaml",
"https://github.com/aws-controllers-k8s/ec2-controller/blob/main/config/crd/bases/ec2.services.k8s.aws_vpcs.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/ecr-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/ecr-controller/blob/main/config/crd/bases/ecr.services.k8s.aws_pullthroughcacherules.yaml",
"https://github.com/aws-controllers-k8s/ecr-controller/blob/main/config/crd/bases/ecr.services.k8s.aws_repositories.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/efs-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/efs-controller/blob/main/config/crd/bases/efs.services.k8s.aws_accesspoints.yaml",
"https://github.com/aws-controllers-k8s/efs-controller/blob/main/config/crd/bases/efs.services.k8s.aws_filesystems.yaml",
"https://github.com/aws-controllers-k8s/efs-controller/blob/main/config/crd/bases/efs.services.k8s.aws_mounttargets.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/eks-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/eks-controller/blob/main/config/crd/bases/eks.services.k8s.aws_addons.yaml",
"https://github.com/aws-controllers-k8s/eks-controller/blob/main/config/crd/bases/eks.services.k8s.aws_clusters.yaml",
"https://github.com/aws-controllers-k8s/eks-controller/blob/main/config/crd/bases/eks.services.k8s.aws_fargateprofiles.yaml",
"https://github.com/aws-controllers-k8s/eks-controller/blob/main/config/crd/bases/eks.services.k8s.aws_nodegroups.yaml",
"https://github.com/aws-controllers-k8s/eks-controller/blob/main/config/crd/common/bases/services.k8s.aws_adoptedresources.yaml",
"https://github.com/aws-controllers-k8s/eks-controller/blob/main/config/crd/common/bases/services.k8s.aws_fieldexports.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/elasticache-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/elasticache-controller/blob/main/config/crd/bases/elasticache.services.k8s.aws_cacheparametergroups.yaml",
"https://github.com/aws-controllers-k8s/elasticache-controller/blob/main/config/crd/bases/elasticache.services.k8s.aws_cachesubnetgroups.yaml",
"https://github.com/aws-controllers-k8s/elasticache-controller/blob/main/config/crd/bases/elasticache.services.k8s.aws_replicationgroups.yaml",
"https://github.com/aws-controllers-k8s/elasticache-controller/blob/main/config/crd/bases/elasticache.services.k8s.aws_snapshots.yaml",
"https://github.com/aws-controllers-k8s/elasticache-controller/blob/main/config/crd/bases/elasticache.services.k8s.aws_usergroups.yaml",
"https://github.com/aws-controllers-k8s/elasticache-controller/blob/main/config/crd/bases/elasticache.services.k8s.aws_users.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/emrcontainers-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/emrcontainers-controller/blob/main/config/crd/bases/emrcontainers.services.k8s.aws_jobruns.yaml",
"https://github.com/aws-controllers-k8s/emrcontainers-controller/blob/main/config/crd/bases/emrcontainers.services.k8s.aws_virtualclusters.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/iam-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/iam-controller/blob/main/config/crd/bases/iam.services.k8s.aws_groups.yaml",
"https://github.com/aws-controllers-k8s/iam-controller/blob/main/config/crd/bases/iam.services.k8s.aws_instanceprofiles.yaml",
"https://github.com/aws-controllers-k8s/iam-controller/blob/main/config/crd/bases/iam.services.k8s.aws_openidconnectproviders.yaml",
"https://github.com/aws-controllers-k8s/iam-controller/blob/main/config/crd/bases/iam.services.k8s.aws_policies.yaml",
"https://github.com/aws-controllers-k8s/iam-controller/blob/main/config/crd/bases/iam.services.k8s.aws_roles.yaml",
"https://github.com/aws-controllers-k8s/iam-controller/blob/main/config/crd/bases/iam.services.k8s.aws_users.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/kafka-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/kafka-controller/blob/main/config/crd/bases/kafka.services.k8s.aws_clusters.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/keyspaces-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/keyspaces-controller/blob/main/config/crd/bases/keyspaces.services.k8s.aws_keyspaces.yaml",
"https://github.com/aws-controllers-k8s/keyspaces-controller/blob/main/config/crd/bases/keyspaces.services.k8s.aws_tables.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/kinesis-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/kinesis-controller/blob/main/config/crd/bases/kinesis.services.k8s.aws_streams.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/kms-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/kms-controller/blob/main/config/crd/bases/kms.services.k8s.aws_aliases.yaml",
"https://github.com/aws-controllers-k8s/kms-controller/blob/main/config/crd/bases/kms.services.k8s.aws_grants.yaml",
"https://github.com/aws-controllers-k8s/kms-controller/blob/main/config/crd/bases/kms.services.k8s.aws_keys.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/lambda-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/lambda-controller/blob/main/config/crd/bases/lambda.services.k8s.aws_aliases.yaml",
"https://github.com/aws-controllers-k8s/lambda-controller/blob/main/config/crd/bases/lambda.services.k8s.aws_codesigningconfigs.yaml",
"https://github.com/aws-controllers-k8s/lambda-controller/blob/main/config/crd/bases/lambda.services.k8s.aws_eventsourcemappings.yaml",
"https://github.com/aws-controllers-k8s/lambda-controller/blob/main/config/crd/bases/lambda.services.k8s.aws_functions.yaml",
"https://github.com/aws-controllers-k8s/lambda-controller/blob/main/config/crd/bases/lambda.services.k8s.aws_functionurlconfigs.yaml",
"https://github.com/aws-controllers-k8s/lambda-controller/blob/main/config/crd/bases/lambda.services.k8s.aws_layerversions.yaml",
"https://github.com/aws-controllers-k8s/lambda-controller/blob/main/config/crd/bases/lambda.services.k8s.aws_versions.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/memorydb-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/memorydb-controller/blob/main/config/crd/bases/memorydb.services.k8s.aws_acls.yaml",
"https://github.com/aws-controllers-k8s/memorydb-controller/blob/main/config/crd/bases/memorydb.services.k8s.aws_clusters.yaml",
"https://github.com/aws-controllers-k8s/memorydb-controller/blob/main/config/crd/bases/memorydb.services.k8s.aws_parametergroups.yaml",
"https://github.com/aws-controllers-k8s/memorydb-controller/blob/main/config/crd/bases/memorydb.services.k8s.aws_snapshots.yaml",
"https://github.com/aws-controllers-k8s/memorydb-controller/blob/main/config/crd/bases/memorydb.services.k8s.aws_subnetgroups.yaml",
"https://github.com/aws-controllers-k8s/memorydb-controller/blob/main/config/crd/bases/memorydb.services.k8s.aws_users.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/mq-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/mq-controller/blob/main/config/crd/bases/mq.services.k8s.aws_brokers.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/networkfirewall-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/networkfirewall-controller/blob/main/config/crd/bases/networkfirewall.services.k8s.aws_firewallpolicies.yaml",
"https://github.com/aws-controllers-k8s/networkfirewall-controller/blob/main/config/crd/bases/networkfirewall.services.k8s.aws_firewalls.yaml",
"https://github.com/aws-controllers-k8s/networkfirewall-controller/blob/main/config/crd/bases/networkfirewall.services.k8s.aws_rulegroups.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/opensearchservice-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/opensearchservice-controller/blob/main/config/crd/bases/opensearchservice.services.k8s.aws_domains.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/organizations-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/organizations-controller/blob/main/config/crd/bases/organizations.services.k8s.aws_organizationalunits.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/pipes-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/pipes-controller/blob/main/config/crd/bases/pipes.services.k8s.aws_pipes.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/prometheusservice-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/prometheusservice-controller/blob/main/config/crd/bases/prometheusservice.services.k8s.aws_alertmanagerdefinitions.yaml",
"https://github.com/aws-controllers-k8s/prometheusservice-controller/blob/main/config/crd/bases/prometheusservice.services.k8s.aws_loggingconfigurations.yaml",
"https://github.com/aws-controllers-k8s/prometheusservice-controller/blob/main/config/crd/bases/prometheusservice.services.k8s.aws_rulegroupsnamespaces.yaml",
"https://github.com/aws-controllers-k8s/prometheusservice-controller/blob/main/config/crd/bases/prometheusservice.services.k8s.aws_workspaces.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/rds-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/rds-controller/blob/main/config/crd/bases/rds.services.k8s.aws_dbclusterparametergroups.yaml",
"https://github.com/aws-controllers-k8s/rds-controller/blob/main/config/crd/bases/rds.services.k8s.aws_dbclusters.yaml",
"https://github.com/aws-controllers-k8s/rds-controller/blob/main/config/crd/bases/rds.services.k8s.aws_dbinstances.yaml",
"https://github.com/aws-controllers-k8s/rds-controller/blob/main/config/crd/bases/rds.services.k8s.aws_dbparametergroups.yaml",
"https://github.com/aws-controllers-k8s/rds-controller/blob/main/config/crd/bases/rds.services.k8s.aws_dbproxies.yaml",
"https://github.com/aws-controllers-k8s/rds-controller/blob/main/config/crd/bases/rds.services.k8s.aws_dbsubnetgroups.yaml",
"https://github.com/aws-controllers-k8s/rds-controller/blob/main/config/crd/bases/rds.services.k8s.aws_globalclusters.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/route53-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/route53-controller/blob/main/config/crd/bases/route53.services.k8s.aws_hostedzones.yaml",
"https://github.com/aws-controllers-k8s/route53-controller/blob/main/config/crd/bases/route53.services.k8s.aws_recordsets.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/route53resolver-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/route53resolver-controller/blob/main/config/crd/bases/route53resolver.services.k8s.aws_resolverendpoints.yaml",
"https://github.com/aws-controllers-k8s/route53resolver-controller/blob/main/config/crd/bases/route53resolver.services.k8s.aws_resolverrules.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/s3-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/s3-controller/blob/main/config/crd/bases/s3.services.k8s.aws_buckets.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/sagemaker-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/sagemaker-controller/blob/main/config/crd/bases/sagemaker.services.k8s.aws_apps.yaml",
"https://github.com/aws-controllers-k8s/sagemaker-controller/blob/main/config/crd/bases/sagemaker.services.k8s.aws_dataqualityjobdefinitions.yaml",
"https://github.com/aws-controllers-k8s/sagemaker-controller/blob/main/config/crd/bases/sagemaker.services.k8s.aws_domains.yaml",
"https://github.com/aws-controllers-k8s/sagemaker-controller/blob/main/config/crd/bases/sagemaker.services.k8s.aws_endpointconfigs.yaml",
"https://github.com/aws-controllers-k8s/sagemaker-controller/blob/main/config/crd/bases/sagemaker.services.k8s.aws_endpoints.yaml",
"https://github.com/aws-controllers-k8s/sagemaker-controller/blob/main/config/crd/bases/sagemaker.services.k8s.aws_featuregroups.yaml",
"https://github.com/aws-controllers-k8s/sagemaker-controller/blob/main/config/crd/bases/sagemaker.services.k8s.aws_hyperparametertuningjobs.yaml",
"https://github.com/aws-controllers-k8s/sagemaker-controller/blob/main/config/crd/bases/sagemaker.services.k8s.aws_modelbiasjobdefinitions.yaml",
"https://github.com/aws-controllers-k8s/sagemaker-controller/blob/main/config/crd/bases/sagemaker.services.k8s.aws_modelexplainabilityjobdefinitions.yaml",
"https://github.com/aws-controllers-k8s/sagemaker-controller/blob/main/config/crd/bases/sagemaker.services.k8s.aws_modelpackagegroups.yaml",
"https://github.com/aws-controllers-k8s/sagemaker-controller/blob/main/config/crd/bases/sagemaker.services.k8s.aws_modelpackages.yaml",
"https://github.com/aws-controllers-k8s/sagemaker-controller/blob/main/config/crd/bases/sagemaker.services.k8s.aws_modelqualityjobdefinitions.yaml",
"https://github.com/aws-controllers-k8s/sagemaker-controller/blob/main/config/crd/bases/sagemaker.services.k8s.aws_models.yaml",
"https://github.com/aws-controllers-k8s/sagemaker-controller/blob/main/config/crd/bases/sagemaker.services.k8s.aws_monitoringschedules.yaml",
"https://github.com/aws-controllers-k8s/sagemaker-controller/blob/main/config/crd/bases/sagemaker.services.k8s.aws_notebookinstancelifecycleconfigs.yaml",
"https://github.com/aws-controllers-k8s/sagemaker-controller/blob/main/config/crd/bases/sagemaker.services.k8s.aws_notebookinstances.yaml",
"https://github.com/aws-controllers-k8s/sagemaker-controller/blob/main/config/crd/bases/sagemaker.services.k8s.aws_processingjobs.yaml",
"https://github.com/aws-controllers-k8s/sagemaker-controller/blob/main/config/crd/bases/sagemaker.services.k8s.aws_trainingjobs.yaml",
"https://github.com/aws-controllers-k8s/sagemaker-controller/blob/main/config/crd/bases/sagemaker.services.k8s.aws_transformjobs.yaml",
"https://github.com/aws-controllers-k8s/sagemaker-controller/blob/main/config/crd/bases/sagemaker.services.k8s.aws_userprofiles.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/secretsmanager-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/secretsmanager-controller/blob/main/config/crd/bases/secretsmanager.services.k8s.aws_secrets.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/sfn-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/sfn-controller/blob/main/config/crd/bases/sfn.services.k8s.aws_activities.yaml",
"https://github.com/aws-controllers-k8s/sfn-controller/blob/main/config/crd/bases/sfn.services.k8s.aws_statemachines.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/sns-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/sns-controller/blob/main/config/crd/bases/sns.services.k8s.aws_platformapplications.yaml",
"https://github.com/aws-controllers-k8s/sns-controller/blob/main/config/crd/bases/sns.services.k8s.aws_platformendpoints.yaml",
"https://github.com/aws-controllers-k8s/sns-controller/blob/main/config/crd/bases/sns.services.k8s.aws_subscriptions.yaml",
"https://github.com/aws-controllers-k8s/sns-controller/blob/main/config/crd/bases/sns.services.k8s.aws_topics.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "aws-controllers-k8s/sqs-controller",
license: APACHE_V2,
urls: &[
"https://github.com/aws-controllers-k8s/sqs-controller/blob/main/config/crd/bases/sqs.services.k8s.aws_queues.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "Azure/azure-service-operator",
license: APACHE_V2,
urls: &[
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_apimgmtapis.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_apimservices.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_appinsights.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_appinsightsapikeys.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_azureloadbalancers.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_azurenetworkinterfaces.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_azurepublicipaddresses.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_azuresqlactions.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_azuresqldatabases.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_azuresqlfailovergroups.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_azuresqlfirewallrules.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_azuresqlmanagedusers.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_azuresqlservers.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_azuresqlusers.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_azuresqlvnetrules.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_azurevirtualmachineextensions.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_azurevirtualmachines.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_azurevmscalesets.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_blobcontainers.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_consumergroups.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_cosmosdbs.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_eventhubnamespaces.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_eventhubs.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_keyvaultkeys.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_keyvaults.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_mysqlaadusers.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_mysqldatabases.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_mysqlfirewallrules.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_mysqlserveradministrators.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_mysqlservers.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_mysqlusers.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_mysqlvnetrules.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_postgresqldatabases.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_postgresqlfirewallrules.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_postgresqlservers.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_postgresqlusers.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_postgresqlvnetrules.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_rediscacheactions.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_rediscachefirewallrules.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_resourcegroups.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_storageaccounts.azure.microsoft.com.yaml",
"https://github.com/Azure/azure-service-operator/blob/main/charts/azure-service-operator/crds/apiextensions.k8s.io_v1_customresourcedefinition_virtualnetworks.azure.microsoft.com.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "b3scale/b3scale-operator",
license: APACHE_V2,
urls: &[
"https://github.com/b3scale/b3scale-operator/blob/main/kubernetes/crd.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "backube/snapscheduler",
license: AGPL_V3_OR_LATER,
urls: &[
"https://github.com/backube/snapscheduler/blob/master/config/crd/bases/snapscheduler.backube_snapshotschedules.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "backube/volsync",
license: AGPL_V3_OR_LATER,
urls: &[
"https://github.com/backube/volsync/blob/main/config/crd/bases/volsync.backube_replicationdestinations.yaml",
"https://github.com/backube/volsync/blob/main/config/crd/bases/volsync.backube_replicationsources.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "banzaicloud/istio-operator",
license: APACHE_V2,
urls: &[
"https://github.com/banzaicloud/istio-operator/blob/release-1.17/config/crd/bases/istio-operator-crds.gen.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "banzaicloud/koperator",
license: APACHE_V2,
urls: &[
"https://github.com/banzaicloud/koperator/blob/master/config/base/crds/kafka.banzaicloud.io_cruisecontroloperations.yaml",
"https://github.com/banzaicloud/koperator/blob/master/config/base/crds/kafka.banzaicloud.io_kafkaclusters.yaml",
"https://github.com/banzaicloud/koperator/blob/master/config/base/crds/kafka.banzaicloud.io_kafkatopics.yaml",
"https://github.com/banzaicloud/koperator/blob/master/config/base/crds/kafka.banzaicloud.io_kafkausers.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "berops/claudie",
license: APACHE_V2,
urls: &[
"https://github.com/berops/claudie/blob/master/manifests/claudie/crd/claudie.io_inputmanifests.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "bitnami-labs/sealed-secrets",
license: APACHE_V2,
urls: &[
"https://github.com/bitnami-labs/sealed-secrets/blob/main/helm/sealed-secrets/crds/bitnami.com_sealedsecrets.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "bitspur/rock8s/integration-operator",
license: AGPL_V3_OR_LATER,
urls: &[
"https://gitlab.com/bitspur/rock8s/integration-operator/-/blob/main/config/crd/bases/integration.rock8s.com_deferredresources.yaml?ref_type=heads",
"https://gitlab.com/bitspur/rock8s/integration-operator/-/blob/main/config/crd/bases/integration.rock8s.com_plugs.yaml?ref_type=heads",
"https://gitlab.com/bitspur/rock8s/integration-operator/-/blob/main/config/crd/bases/integration.rock8s.com_sockets.yaml?ref_type=heads",
],
ignores: &[],
},
UpstreamSource {
project_name: "bpfman/bpfman",
license: APACHE_V2,
urls: &[
"https://github.com/bpfman/bpfman/blob/main/bpfman-operator/config/crd/bases/bpfman.io_bpfprograms.yaml",
"https://github.com/bpfman/bpfman/blob/main/bpfman-operator/config/crd/bases/bpfman.io_fentryprograms.yaml",
"https://github.com/bpfman/bpfman/blob/main/bpfman-operator/config/crd/bases/bpfman.io_fexitprograms.yaml",
"https://github.com/bpfman/bpfman/blob/main/bpfman-operator/config/crd/bases/bpfman.io_kprobeprograms.yaml",
"https://github.com/bpfman/bpfman/blob/main/bpfman-operator/config/crd/bases/bpfman.io_tcprograms.yaml",
"https://github.com/bpfman/bpfman/blob/main/bpfman-operator/config/crd/bases/bpfman.io_tracepointprograms.yaml",
"https://github.com/bpfman/bpfman/blob/main/bpfman-operator/config/crd/bases/bpfman.io_uprobeprograms.yaml",
"https://github.com/bpfman/bpfman/blob/main/bpfman-operator/config/crd/bases/bpfman.io_xdpprograms.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "carlosedp/lbconfig-operator",
license: MIT,
urls: &[
"https://github.com/carlosedp/lbconfig-operator/blob/main/config/crd/bases/lb.lbconfig.carlosedp.com_externalloadbalancers.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "cert-manager/cert-manager",
license: APACHE_V2,
urls: &[
"https://github.com/cert-manager/cert-manager/blob/master/deploy/crds/crd-certificaterequests.yaml",
"https://github.com/cert-manager/cert-manager/blob/master/deploy/crds/crd-certificates.yaml",
"https://github.com/cert-manager/cert-manager/blob/master/deploy/crds/crd-challenges.yaml",
"https://github.com/cert-manager/cert-manager/blob/master/deploy/crds/crd-clusterissuers.yaml",
"https://github.com/cert-manager/cert-manager/blob/master/deploy/crds/crd-issuers.yaml",
"https://github.com/cert-manager/cert-manager/blob/master/deploy/crds/crd-orders.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "cert-manager/trust-manager",
license: APACHE_V2,
urls: &[
"https://github.com/cert-manager/trust-manager/blob/main/deploy/crds/trust.cert-manager.io_bundles.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "change-metrics/monocle-operator",
license: APACHE_V2,
urls: &[
"https://github.com/change-metrics/monocle-operator/blob/master/config/crd/bases/monocle.monocle.change-metrics.io_monocles.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "chaosblade-io/chaosblade-operator",
license: APACHE_V2,
urls: &[
"https://github.com/chaosblade-io/chaosblade-operator/blob/master/deploy/crds/chaosblade.io_chaosblades_crd.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "chaos-mesh/chaos-mesh",
license: APACHE_V2,
urls: &[
"https://github.com/chaos-mesh/chaos-mesh/blob/master/config/crd/bases/chaos-mesh.org_awschaos.yaml",
"https://github.com/chaos-mesh/chaos-mesh/blob/master/config/crd/bases/chaos-mesh.org_azurechaos.yaml",
"https://github.com/chaos-mesh/chaos-mesh/blob/master/config/crd/bases/chaos-mesh.org_blockchaos.yaml",
"https://github.com/chaos-mesh/chaos-mesh/blob/master/config/crd/bases/chaos-mesh.org_dnschaos.yaml",
"https://github.com/chaos-mesh/chaos-mesh/blob/master/config/crd/bases/chaos-mesh.org_gcpchaos.yaml",
"https://github.com/chaos-mesh/chaos-mesh/blob/master/config/crd/bases/chaos-mesh.org_httpchaos.yaml",
"https://github.com/chaos-mesh/chaos-mesh/blob/master/config/crd/bases/chaos-mesh.org_iochaos.yaml",
"https://github.com/chaos-mesh/chaos-mesh/blob/master/config/crd/bases/chaos-mesh.org_jvmchaos.yaml",
"https://github.com/chaos-mesh/chaos-mesh/blob/master/config/crd/bases/chaos-mesh.org_kernelchaos.yaml",
"https://github.com/chaos-mesh/chaos-mesh/blob/master/config/crd/bases/chaos-mesh.org_networkchaos.yaml",
"https://github.com/chaos-mesh/chaos-mesh/blob/master/config/crd/bases/chaos-mesh.org_physicalmachinechaos.yaml",
"https://github.com/chaos-mesh/chaos-mesh/blob/master/config/crd/bases/chaos-mesh.org_physicalmachines.yaml",
"https://github.com/chaos-mesh/chaos-mesh/blob/master/config/crd/bases/chaos-mesh.org_podchaos.yaml",
"https://github.com/chaos-mesh/chaos-mesh/blob/master/config/crd/bases/chaos-mesh.org_podhttpchaos.yaml",
"https://github.com/chaos-mesh/chaos-mesh/blob/master/config/crd/bases/chaos-mesh.org_podiochaos.yaml",
"https://github.com/chaos-mesh/chaos-mesh/blob/master/config/crd/bases/chaos-mesh.org_podnetworkchaos.yaml",
"https://github.com/chaos-mesh/chaos-mesh/blob/master/config/crd/bases/chaos-mesh.org_remoteclusters.yaml",
"https://github.com/chaos-mesh/chaos-mesh/blob/master/config/crd/bases/chaos-mesh.org_schedules.yaml",
"https://github.com/chaos-mesh/chaos-mesh/blob/master/config/crd/bases/chaos-mesh.org_statuschecks.yaml",
"https://github.com/chaos-mesh/chaos-mesh/blob/master/config/crd/bases/chaos-mesh.org_stresschaos.yaml",
"https://github.com/chaos-mesh/chaos-mesh/blob/master/config/crd/bases/chaos-mesh.org_timechaos.yaml",
"https://github.com/chaos-mesh/chaos-mesh/blob/master/config/crd/bases/chaos-mesh.org_workflownodes.yaml",
"https://github.com/chaos-mesh/chaos-mesh/blob/master/config/crd/bases/chaos-mesh.org_workflows.yaml",
],
ignores: &[],
},
UpstreamSource {
project_name: "che-incubator/kubernetes-image-puller-operator",