-
Notifications
You must be signed in to change notification settings - Fork 2
/
tests.mk
7015 lines (7012 loc) · 874 KB
/
tests.mk
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 terraform-provider-k8s Authors
# SPDX-License-Identifier: 0BSD
out/test-sentinel-about_k8s_io_cluster_property_v1alpha1_manifest_test.go: ./internal/provider/about_k8s_io_v1alpha1/about_k8s_io_cluster_property_v1alpha1_manifest.go ./internal/provider/about_k8s_io_v1alpha1/about_k8s_io_cluster_property_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/about_k8s_io_v1alpha1/about_k8s_io_cluster_property_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-acid_zalan_do_operator_configuration_v1_manifest_test.go: ./internal/provider/acid_zalan_do_v1/acid_zalan_do_operator_configuration_v1_manifest.go ./internal/provider/acid_zalan_do_v1/acid_zalan_do_operator_configuration_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/acid_zalan_do_v1/acid_zalan_do_operator_configuration_v1_manifest_test.go
touch $@
out/test-sentinel-acid_zalan_do_postgres_team_v1_manifest_test.go: ./internal/provider/acid_zalan_do_v1/acid_zalan_do_postgres_team_v1_manifest.go ./internal/provider/acid_zalan_do_v1/acid_zalan_do_postgres_team_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/acid_zalan_do_v1/acid_zalan_do_postgres_team_v1_manifest_test.go
touch $@
out/test-sentinel-acid_zalan_do_postgresql_v1_manifest_test.go: ./internal/provider/acid_zalan_do_v1/acid_zalan_do_postgresql_v1_manifest.go ./internal/provider/acid_zalan_do_v1/acid_zalan_do_postgresql_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/acid_zalan_do_v1/acid_zalan_do_postgresql_v1_manifest_test.go
touch $@
out/test-sentinel-acme_cert_manager_io_challenge_v1_manifest_test.go: ./internal/provider/acme_cert_manager_io_v1/acme_cert_manager_io_challenge_v1_manifest.go ./internal/provider/acme_cert_manager_io_v1/acme_cert_manager_io_challenge_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/acme_cert_manager_io_v1/acme_cert_manager_io_challenge_v1_manifest_test.go
touch $@
out/test-sentinel-acme_cert_manager_io_order_v1_manifest_test.go: ./internal/provider/acme_cert_manager_io_v1/acme_cert_manager_io_order_v1_manifest.go ./internal/provider/acme_cert_manager_io_v1/acme_cert_manager_io_order_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/acme_cert_manager_io_v1/acme_cert_manager_io_order_v1_manifest_test.go
touch $@
out/test-sentinel-acmpca_services_k8s_aws_certificate_authority_activation_v1alpha1_manifest_test.go: ./internal/provider/acmpca_services_k8s_aws_v1alpha1/acmpca_services_k8s_aws_certificate_authority_activation_v1alpha1_manifest.go ./internal/provider/acmpca_services_k8s_aws_v1alpha1/acmpca_services_k8s_aws_certificate_authority_activation_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/acmpca_services_k8s_aws_v1alpha1/acmpca_services_k8s_aws_certificate_authority_activation_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-acmpca_services_k8s_aws_certificate_authority_v1alpha1_manifest_test.go: ./internal/provider/acmpca_services_k8s_aws_v1alpha1/acmpca_services_k8s_aws_certificate_authority_v1alpha1_manifest.go ./internal/provider/acmpca_services_k8s_aws_v1alpha1/acmpca_services_k8s_aws_certificate_authority_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/acmpca_services_k8s_aws_v1alpha1/acmpca_services_k8s_aws_certificate_authority_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-acmpca_services_k8s_aws_certificate_v1alpha1_manifest_test.go: ./internal/provider/acmpca_services_k8s_aws_v1alpha1/acmpca_services_k8s_aws_certificate_v1alpha1_manifest.go ./internal/provider/acmpca_services_k8s_aws_v1alpha1/acmpca_services_k8s_aws_certificate_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/acmpca_services_k8s_aws_v1alpha1/acmpca_services_k8s_aws_certificate_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-actions_github_com_autoscaling_listener_v1alpha1_manifest_test.go: ./internal/provider/actions_github_com_v1alpha1/actions_github_com_autoscaling_listener_v1alpha1_manifest.go ./internal/provider/actions_github_com_v1alpha1/actions_github_com_autoscaling_listener_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/actions_github_com_v1alpha1/actions_github_com_autoscaling_listener_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-actions_github_com_autoscaling_runner_set_v1alpha1_manifest_test.go: ./internal/provider/actions_github_com_v1alpha1/actions_github_com_autoscaling_runner_set_v1alpha1_manifest.go ./internal/provider/actions_github_com_v1alpha1/actions_github_com_autoscaling_runner_set_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/actions_github_com_v1alpha1/actions_github_com_autoscaling_runner_set_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-actions_github_com_ephemeral_runner_set_v1alpha1_manifest_test.go: ./internal/provider/actions_github_com_v1alpha1/actions_github_com_ephemeral_runner_set_v1alpha1_manifest.go ./internal/provider/actions_github_com_v1alpha1/actions_github_com_ephemeral_runner_set_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/actions_github_com_v1alpha1/actions_github_com_ephemeral_runner_set_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-actions_github_com_ephemeral_runner_v1alpha1_manifest_test.go: ./internal/provider/actions_github_com_v1alpha1/actions_github_com_ephemeral_runner_v1alpha1_manifest.go ./internal/provider/actions_github_com_v1alpha1/actions_github_com_ephemeral_runner_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/actions_github_com_v1alpha1/actions_github_com_ephemeral_runner_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-actions_summerwind_dev_horizontal_runner_autoscaler_v1alpha1_manifest_test.go: ./internal/provider/actions_summerwind_dev_v1alpha1/actions_summerwind_dev_horizontal_runner_autoscaler_v1alpha1_manifest.go ./internal/provider/actions_summerwind_dev_v1alpha1/actions_summerwind_dev_horizontal_runner_autoscaler_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/actions_summerwind_dev_v1alpha1/actions_summerwind_dev_horizontal_runner_autoscaler_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-actions_summerwind_dev_runner_deployment_v1alpha1_manifest_test.go: ./internal/provider/actions_summerwind_dev_v1alpha1/actions_summerwind_dev_runner_deployment_v1alpha1_manifest.go ./internal/provider/actions_summerwind_dev_v1alpha1/actions_summerwind_dev_runner_deployment_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/actions_summerwind_dev_v1alpha1/actions_summerwind_dev_runner_deployment_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-actions_summerwind_dev_runner_replica_set_v1alpha1_manifest_test.go: ./internal/provider/actions_summerwind_dev_v1alpha1/actions_summerwind_dev_runner_replica_set_v1alpha1_manifest.go ./internal/provider/actions_summerwind_dev_v1alpha1/actions_summerwind_dev_runner_replica_set_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/actions_summerwind_dev_v1alpha1/actions_summerwind_dev_runner_replica_set_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-actions_summerwind_dev_runner_set_v1alpha1_manifest_test.go: ./internal/provider/actions_summerwind_dev_v1alpha1/actions_summerwind_dev_runner_set_v1alpha1_manifest.go ./internal/provider/actions_summerwind_dev_v1alpha1/actions_summerwind_dev_runner_set_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/actions_summerwind_dev_v1alpha1/actions_summerwind_dev_runner_set_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-actions_summerwind_dev_runner_v1alpha1_manifest_test.go: ./internal/provider/actions_summerwind_dev_v1alpha1/actions_summerwind_dev_runner_v1alpha1_manifest.go ./internal/provider/actions_summerwind_dev_v1alpha1/actions_summerwind_dev_runner_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/actions_summerwind_dev_v1alpha1/actions_summerwind_dev_runner_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-addons_cluster_x_k8s_io_cluster_resource_set_binding_v1alpha3_manifest_test.go: ./internal/provider/addons_cluster_x_k8s_io_v1alpha3/addons_cluster_x_k8s_io_cluster_resource_set_binding_v1alpha3_manifest.go ./internal/provider/addons_cluster_x_k8s_io_v1alpha3/addons_cluster_x_k8s_io_cluster_resource_set_binding_v1alpha3_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/addons_cluster_x_k8s_io_v1alpha3/addons_cluster_x_k8s_io_cluster_resource_set_binding_v1alpha3_manifest_test.go
touch $@
out/test-sentinel-addons_cluster_x_k8s_io_cluster_resource_set_v1alpha3_manifest_test.go: ./internal/provider/addons_cluster_x_k8s_io_v1alpha3/addons_cluster_x_k8s_io_cluster_resource_set_v1alpha3_manifest.go ./internal/provider/addons_cluster_x_k8s_io_v1alpha3/addons_cluster_x_k8s_io_cluster_resource_set_v1alpha3_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/addons_cluster_x_k8s_io_v1alpha3/addons_cluster_x_k8s_io_cluster_resource_set_v1alpha3_manifest_test.go
touch $@
out/test-sentinel-addons_cluster_x_k8s_io_cluster_resource_set_binding_v1alpha4_manifest_test.go: ./internal/provider/addons_cluster_x_k8s_io_v1alpha4/addons_cluster_x_k8s_io_cluster_resource_set_binding_v1alpha4_manifest.go ./internal/provider/addons_cluster_x_k8s_io_v1alpha4/addons_cluster_x_k8s_io_cluster_resource_set_binding_v1alpha4_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/addons_cluster_x_k8s_io_v1alpha4/addons_cluster_x_k8s_io_cluster_resource_set_binding_v1alpha4_manifest_test.go
touch $@
out/test-sentinel-addons_cluster_x_k8s_io_cluster_resource_set_v1alpha4_manifest_test.go: ./internal/provider/addons_cluster_x_k8s_io_v1alpha4/addons_cluster_x_k8s_io_cluster_resource_set_v1alpha4_manifest.go ./internal/provider/addons_cluster_x_k8s_io_v1alpha4/addons_cluster_x_k8s_io_cluster_resource_set_v1alpha4_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/addons_cluster_x_k8s_io_v1alpha4/addons_cluster_x_k8s_io_cluster_resource_set_v1alpha4_manifest_test.go
touch $@
out/test-sentinel-addons_cluster_x_k8s_io_cluster_resource_set_binding_v1beta1_manifest_test.go: ./internal/provider/addons_cluster_x_k8s_io_v1beta1/addons_cluster_x_k8s_io_cluster_resource_set_binding_v1beta1_manifest.go ./internal/provider/addons_cluster_x_k8s_io_v1beta1/addons_cluster_x_k8s_io_cluster_resource_set_binding_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/addons_cluster_x_k8s_io_v1beta1/addons_cluster_x_k8s_io_cluster_resource_set_binding_v1beta1_manifest_test.go
touch $@
out/test-sentinel-addons_cluster_x_k8s_io_cluster_resource_set_v1beta1_manifest_test.go: ./internal/provider/addons_cluster_x_k8s_io_v1beta1/addons_cluster_x_k8s_io_cluster_resource_set_v1beta1_manifest.go ./internal/provider/addons_cluster_x_k8s_io_v1beta1/addons_cluster_x_k8s_io_cluster_resource_set_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/addons_cluster_x_k8s_io_v1beta1/addons_cluster_x_k8s_io_cluster_resource_set_v1beta1_manifest_test.go
touch $@
out/test-sentinel-admissionregistration_k8s_io_mutating_webhook_configuration_v1_manifest_test.go: ./internal/provider/admissionregistration_k8s_io_v1/admissionregistration_k8s_io_mutating_webhook_configuration_v1_manifest.go ./internal/provider/admissionregistration_k8s_io_v1/admissionregistration_k8s_io_mutating_webhook_configuration_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/admissionregistration_k8s_io_v1/admissionregistration_k8s_io_mutating_webhook_configuration_v1_manifest_test.go
touch $@
out/test-sentinel-admissionregistration_k8s_io_validating_webhook_configuration_v1_manifest_test.go: ./internal/provider/admissionregistration_k8s_io_v1/admissionregistration_k8s_io_validating_webhook_configuration_v1_manifest.go ./internal/provider/admissionregistration_k8s_io_v1/admissionregistration_k8s_io_validating_webhook_configuration_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/admissionregistration_k8s_io_v1/admissionregistration_k8s_io_validating_webhook_configuration_v1_manifest_test.go
touch $@
out/test-sentinel-agent_k8s_elastic_co_agent_v1alpha1_manifest_test.go: ./internal/provider/agent_k8s_elastic_co_v1alpha1/agent_k8s_elastic_co_agent_v1alpha1_manifest.go ./internal/provider/agent_k8s_elastic_co_v1alpha1/agent_k8s_elastic_co_agent_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/agent_k8s_elastic_co_v1alpha1/agent_k8s_elastic_co_agent_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-airflow_stackable_tech_airflow_cluster_v1alpha1_manifest_test.go: ./internal/provider/airflow_stackable_tech_v1alpha1/airflow_stackable_tech_airflow_cluster_v1alpha1_manifest.go ./internal/provider/airflow_stackable_tech_v1alpha1/airflow_stackable_tech_airflow_cluster_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/airflow_stackable_tech_v1alpha1/airflow_stackable_tech_airflow_cluster_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-anywhere_eks_amazonaws_com_aws_datacenter_config_v1alpha1_manifest_test.go: ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_aws_datacenter_config_v1alpha1_manifest.go ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_aws_datacenter_config_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_aws_datacenter_config_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-anywhere_eks_amazonaws_com_aws_iam_config_v1alpha1_manifest_test.go: ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_aws_iam_config_v1alpha1_manifest.go ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_aws_iam_config_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_aws_iam_config_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-anywhere_eks_amazonaws_com_bundles_v1alpha1_manifest_test.go: ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_bundles_v1alpha1_manifest.go ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_bundles_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_bundles_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-anywhere_eks_amazonaws_com_cloud_stack_datacenter_config_v1alpha1_manifest_test.go: ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_cloud_stack_datacenter_config_v1alpha1_manifest.go ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_cloud_stack_datacenter_config_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_cloud_stack_datacenter_config_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-anywhere_eks_amazonaws_com_cloud_stack_machine_config_v1alpha1_manifest_test.go: ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_cloud_stack_machine_config_v1alpha1_manifest.go ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_cloud_stack_machine_config_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_cloud_stack_machine_config_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-anywhere_eks_amazonaws_com_cluster_v1alpha1_manifest_test.go: ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_cluster_v1alpha1_manifest.go ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_cluster_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_cluster_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-anywhere_eks_amazonaws_com_control_plane_upgrade_v1alpha1_manifest_test.go: ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_control_plane_upgrade_v1alpha1_manifest.go ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_control_plane_upgrade_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_control_plane_upgrade_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-anywhere_eks_amazonaws_com_docker_datacenter_config_v1alpha1_manifest_test.go: ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_docker_datacenter_config_v1alpha1_manifest.go ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_docker_datacenter_config_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_docker_datacenter_config_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-anywhere_eks_amazonaws_com_eksa_release_v1alpha1_manifest_test.go: ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_eksa_release_v1alpha1_manifest.go ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_eksa_release_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_eksa_release_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-anywhere_eks_amazonaws_com_flux_config_v1alpha1_manifest_test.go: ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_flux_config_v1alpha1_manifest.go ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_flux_config_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_flux_config_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-anywhere_eks_amazonaws_com_git_ops_config_v1alpha1_manifest_test.go: ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_git_ops_config_v1alpha1_manifest.go ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_git_ops_config_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_git_ops_config_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-anywhere_eks_amazonaws_com_machine_deployment_upgrade_v1alpha1_manifest_test.go: ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_machine_deployment_upgrade_v1alpha1_manifest.go ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_machine_deployment_upgrade_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_machine_deployment_upgrade_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-anywhere_eks_amazonaws_com_node_upgrade_v1alpha1_manifest_test.go: ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_node_upgrade_v1alpha1_manifest.go ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_node_upgrade_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_node_upgrade_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-anywhere_eks_amazonaws_com_nutanix_datacenter_config_v1alpha1_manifest_test.go: ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_nutanix_datacenter_config_v1alpha1_manifest.go ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_nutanix_datacenter_config_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_nutanix_datacenter_config_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-anywhere_eks_amazonaws_com_nutanix_machine_config_v1alpha1_manifest_test.go: ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_nutanix_machine_config_v1alpha1_manifest.go ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_nutanix_machine_config_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_nutanix_machine_config_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-anywhere_eks_amazonaws_com_oidc_config_v1alpha1_manifest_test.go: ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_oidc_config_v1alpha1_manifest.go ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_oidc_config_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_oidc_config_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-anywhere_eks_amazonaws_com_snow_datacenter_config_v1alpha1_manifest_test.go: ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_snow_datacenter_config_v1alpha1_manifest.go ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_snow_datacenter_config_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_snow_datacenter_config_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-anywhere_eks_amazonaws_com_snow_ip_pool_v1alpha1_manifest_test.go: ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_snow_ip_pool_v1alpha1_manifest.go ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_snow_ip_pool_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_snow_ip_pool_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-anywhere_eks_amazonaws_com_snow_machine_config_v1alpha1_manifest_test.go: ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_snow_machine_config_v1alpha1_manifest.go ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_snow_machine_config_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_snow_machine_config_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-anywhere_eks_amazonaws_com_tinkerbell_datacenter_config_v1alpha1_manifest_test.go: ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_tinkerbell_datacenter_config_v1alpha1_manifest.go ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_tinkerbell_datacenter_config_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_tinkerbell_datacenter_config_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-anywhere_eks_amazonaws_com_tinkerbell_machine_config_v1alpha1_manifest_test.go: ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_tinkerbell_machine_config_v1alpha1_manifest.go ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_tinkerbell_machine_config_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_tinkerbell_machine_config_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-anywhere_eks_amazonaws_com_tinkerbell_template_config_v1alpha1_manifest_test.go: ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_tinkerbell_template_config_v1alpha1_manifest.go ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_tinkerbell_template_config_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_tinkerbell_template_config_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-anywhere_eks_amazonaws_com_v_sphere_datacenter_config_v1alpha1_manifest_test.go: ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_v_sphere_datacenter_config_v1alpha1_manifest.go ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_v_sphere_datacenter_config_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_v_sphere_datacenter_config_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-anywhere_eks_amazonaws_com_v_sphere_machine_config_v1alpha1_manifest_test.go: ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_v_sphere_machine_config_v1alpha1_manifest.go ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_v_sphere_machine_config_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/anywhere_eks_amazonaws_com_v1alpha1/anywhere_eks_amazonaws_com_v_sphere_machine_config_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apacheweb_arsenal_dev_apacheweb_v1alpha1_manifest_test.go: ./internal/provider/apacheweb_arsenal_dev_v1alpha1/apacheweb_arsenal_dev_apacheweb_v1alpha1_manifest.go ./internal/provider/apacheweb_arsenal_dev_v1alpha1/apacheweb_arsenal_dev_apacheweb_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apacheweb_arsenal_dev_v1alpha1/apacheweb_arsenal_dev_apacheweb_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-api_clever_cloud_com_config_provider_v1_manifest_test.go: ./internal/provider/api_clever_cloud_com_v1/api_clever_cloud_com_config_provider_v1_manifest.go ./internal/provider/api_clever_cloud_com_v1/api_clever_cloud_com_config_provider_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/api_clever_cloud_com_v1/api_clever_cloud_com_config_provider_v1_manifest_test.go
touch $@
out/test-sentinel-api_clever_cloud_com_elastic_search_v1_manifest_test.go: ./internal/provider/api_clever_cloud_com_v1/api_clever_cloud_com_elastic_search_v1_manifest.go ./internal/provider/api_clever_cloud_com_v1/api_clever_cloud_com_elastic_search_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/api_clever_cloud_com_v1/api_clever_cloud_com_elastic_search_v1_manifest_test.go
touch $@
out/test-sentinel-api_clever_cloud_com_mongo_db_v1_manifest_test.go: ./internal/provider/api_clever_cloud_com_v1/api_clever_cloud_com_mongo_db_v1_manifest.go ./internal/provider/api_clever_cloud_com_v1/api_clever_cloud_com_mongo_db_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/api_clever_cloud_com_v1/api_clever_cloud_com_mongo_db_v1_manifest_test.go
touch $@
out/test-sentinel-api_clever_cloud_com_my_sql_v1_manifest_test.go: ./internal/provider/api_clever_cloud_com_v1/api_clever_cloud_com_my_sql_v1_manifest.go ./internal/provider/api_clever_cloud_com_v1/api_clever_cloud_com_my_sql_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/api_clever_cloud_com_v1/api_clever_cloud_com_my_sql_v1_manifest_test.go
touch $@
out/test-sentinel-api_clever_cloud_com_postgre_sql_v1_manifest_test.go: ./internal/provider/api_clever_cloud_com_v1/api_clever_cloud_com_postgre_sql_v1_manifest.go ./internal/provider/api_clever_cloud_com_v1/api_clever_cloud_com_postgre_sql_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/api_clever_cloud_com_v1/api_clever_cloud_com_postgre_sql_v1_manifest_test.go
touch $@
out/test-sentinel-api_clever_cloud_com_redis_v1_manifest_test.go: ./internal/provider/api_clever_cloud_com_v1/api_clever_cloud_com_redis_v1_manifest.go ./internal/provider/api_clever_cloud_com_v1/api_clever_cloud_com_redis_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/api_clever_cloud_com_v1/api_clever_cloud_com_redis_v1_manifest_test.go
touch $@
out/test-sentinel-api_clever_cloud_com_pulsar_v1beta1_manifest_test.go: ./internal/provider/api_clever_cloud_com_v1beta1/api_clever_cloud_com_pulsar_v1beta1_manifest.go ./internal/provider/api_clever_cloud_com_v1beta1/api_clever_cloud_com_pulsar_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/api_clever_cloud_com_v1beta1/api_clever_cloud_com_pulsar_v1beta1_manifest_test.go
touch $@
out/test-sentinel-api_kubemod_io_mod_rule_v1beta1_manifest_test.go: ./internal/provider/api_kubemod_io_v1beta1/api_kubemod_io_mod_rule_v1beta1_manifest.go ./internal/provider/api_kubemod_io_v1beta1/api_kubemod_io_mod_rule_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/api_kubemod_io_v1beta1/api_kubemod_io_mod_rule_v1beta1_manifest_test.go
touch $@
out/test-sentinel-apicodegen_apimatic_io_api_matic_v1beta1_manifest_test.go: ./internal/provider/apicodegen_apimatic_io_v1beta1/apicodegen_apimatic_io_api_matic_v1beta1_manifest.go ./internal/provider/apicodegen_apimatic_io_v1beta1/apicodegen_apimatic_io_api_matic_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apicodegen_apimatic_io_v1beta1/apicodegen_apimatic_io_api_matic_v1beta1_manifest_test.go
touch $@
out/test-sentinel-apiextensions_crossplane_io_composite_resource_definition_v1_manifest_test.go: ./internal/provider/apiextensions_crossplane_io_v1/apiextensions_crossplane_io_composite_resource_definition_v1_manifest.go ./internal/provider/apiextensions_crossplane_io_v1/apiextensions_crossplane_io_composite_resource_definition_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apiextensions_crossplane_io_v1/apiextensions_crossplane_io_composite_resource_definition_v1_manifest_test.go
touch $@
out/test-sentinel-apiextensions_crossplane_io_composition_revision_v1_manifest_test.go: ./internal/provider/apiextensions_crossplane_io_v1/apiextensions_crossplane_io_composition_revision_v1_manifest.go ./internal/provider/apiextensions_crossplane_io_v1/apiextensions_crossplane_io_composition_revision_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apiextensions_crossplane_io_v1/apiextensions_crossplane_io_composition_revision_v1_manifest_test.go
touch $@
out/test-sentinel-apiextensions_crossplane_io_composition_v1_manifest_test.go: ./internal/provider/apiextensions_crossplane_io_v1/apiextensions_crossplane_io_composition_v1_manifest.go ./internal/provider/apiextensions_crossplane_io_v1/apiextensions_crossplane_io_composition_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apiextensions_crossplane_io_v1/apiextensions_crossplane_io_composition_v1_manifest_test.go
touch $@
out/test-sentinel-apiextensions_crossplane_io_composition_revision_v1beta1_manifest_test.go: ./internal/provider/apiextensions_crossplane_io_v1beta1/apiextensions_crossplane_io_composition_revision_v1beta1_manifest.go ./internal/provider/apiextensions_crossplane_io_v1beta1/apiextensions_crossplane_io_composition_revision_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apiextensions_crossplane_io_v1beta1/apiextensions_crossplane_io_composition_revision_v1beta1_manifest_test.go
touch $@
out/test-sentinel-apigatewayv2_services_k8s_aws_api_v1alpha1_manifest_test.go: ./internal/provider/apigatewayv2_services_k8s_aws_v1alpha1/apigatewayv2_services_k8s_aws_api_v1alpha1_manifest.go ./internal/provider/apigatewayv2_services_k8s_aws_v1alpha1/apigatewayv2_services_k8s_aws_api_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apigatewayv2_services_k8s_aws_v1alpha1/apigatewayv2_services_k8s_aws_api_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apigatewayv2_services_k8s_aws_authorizer_v1alpha1_manifest_test.go: ./internal/provider/apigatewayv2_services_k8s_aws_v1alpha1/apigatewayv2_services_k8s_aws_authorizer_v1alpha1_manifest.go ./internal/provider/apigatewayv2_services_k8s_aws_v1alpha1/apigatewayv2_services_k8s_aws_authorizer_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apigatewayv2_services_k8s_aws_v1alpha1/apigatewayv2_services_k8s_aws_authorizer_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apigatewayv2_services_k8s_aws_deployment_v1alpha1_manifest_test.go: ./internal/provider/apigatewayv2_services_k8s_aws_v1alpha1/apigatewayv2_services_k8s_aws_deployment_v1alpha1_manifest.go ./internal/provider/apigatewayv2_services_k8s_aws_v1alpha1/apigatewayv2_services_k8s_aws_deployment_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apigatewayv2_services_k8s_aws_v1alpha1/apigatewayv2_services_k8s_aws_deployment_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apigatewayv2_services_k8s_aws_integration_v1alpha1_manifest_test.go: ./internal/provider/apigatewayv2_services_k8s_aws_v1alpha1/apigatewayv2_services_k8s_aws_integration_v1alpha1_manifest.go ./internal/provider/apigatewayv2_services_k8s_aws_v1alpha1/apigatewayv2_services_k8s_aws_integration_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apigatewayv2_services_k8s_aws_v1alpha1/apigatewayv2_services_k8s_aws_integration_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apigatewayv2_services_k8s_aws_route_v1alpha1_manifest_test.go: ./internal/provider/apigatewayv2_services_k8s_aws_v1alpha1/apigatewayv2_services_k8s_aws_route_v1alpha1_manifest.go ./internal/provider/apigatewayv2_services_k8s_aws_v1alpha1/apigatewayv2_services_k8s_aws_route_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apigatewayv2_services_k8s_aws_v1alpha1/apigatewayv2_services_k8s_aws_route_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apigatewayv2_services_k8s_aws_stage_v1alpha1_manifest_test.go: ./internal/provider/apigatewayv2_services_k8s_aws_v1alpha1/apigatewayv2_services_k8s_aws_stage_v1alpha1_manifest.go ./internal/provider/apigatewayv2_services_k8s_aws_v1alpha1/apigatewayv2_services_k8s_aws_stage_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apigatewayv2_services_k8s_aws_v1alpha1/apigatewayv2_services_k8s_aws_stage_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apigatewayv2_services_k8s_aws_vpc_link_v1alpha1_manifest_test.go: ./internal/provider/apigatewayv2_services_k8s_aws_v1alpha1/apigatewayv2_services_k8s_aws_vpc_link_v1alpha1_manifest.go ./internal/provider/apigatewayv2_services_k8s_aws_v1alpha1/apigatewayv2_services_k8s_aws_vpc_link_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apigatewayv2_services_k8s_aws_v1alpha1/apigatewayv2_services_k8s_aws_vpc_link_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apiregistration_k8s_io_api_service_v1_manifest_test.go: ./internal/provider/apiregistration_k8s_io_v1/apiregistration_k8s_io_api_service_v1_manifest.go ./internal/provider/apiregistration_k8s_io_v1/apiregistration_k8s_io_api_service_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apiregistration_k8s_io_v1/apiregistration_k8s_io_api_service_v1_manifest_test.go
touch $@
out/test-sentinel-apisix_apache_org_apisix_cluster_config_v2_manifest_test.go: ./internal/provider/apisix_apache_org_v2/apisix_apache_org_apisix_cluster_config_v2_manifest.go ./internal/provider/apisix_apache_org_v2/apisix_apache_org_apisix_cluster_config_v2_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apisix_apache_org_v2/apisix_apache_org_apisix_cluster_config_v2_manifest_test.go
touch $@
out/test-sentinel-apisix_apache_org_apisix_consumer_v2_manifest_test.go: ./internal/provider/apisix_apache_org_v2/apisix_apache_org_apisix_consumer_v2_manifest.go ./internal/provider/apisix_apache_org_v2/apisix_apache_org_apisix_consumer_v2_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apisix_apache_org_v2/apisix_apache_org_apisix_consumer_v2_manifest_test.go
touch $@
out/test-sentinel-apisix_apache_org_apisix_global_rule_v2_manifest_test.go: ./internal/provider/apisix_apache_org_v2/apisix_apache_org_apisix_global_rule_v2_manifest.go ./internal/provider/apisix_apache_org_v2/apisix_apache_org_apisix_global_rule_v2_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apisix_apache_org_v2/apisix_apache_org_apisix_global_rule_v2_manifest_test.go
touch $@
out/test-sentinel-apisix_apache_org_apisix_plugin_config_v2_manifest_test.go: ./internal/provider/apisix_apache_org_v2/apisix_apache_org_apisix_plugin_config_v2_manifest.go ./internal/provider/apisix_apache_org_v2/apisix_apache_org_apisix_plugin_config_v2_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apisix_apache_org_v2/apisix_apache_org_apisix_plugin_config_v2_manifest_test.go
touch $@
out/test-sentinel-apisix_apache_org_apisix_route_v2_manifest_test.go: ./internal/provider/apisix_apache_org_v2/apisix_apache_org_apisix_route_v2_manifest.go ./internal/provider/apisix_apache_org_v2/apisix_apache_org_apisix_route_v2_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apisix_apache_org_v2/apisix_apache_org_apisix_route_v2_manifest_test.go
touch $@
out/test-sentinel-apisix_apache_org_apisix_tls_v2_manifest_test.go: ./internal/provider/apisix_apache_org_v2/apisix_apache_org_apisix_tls_v2_manifest.go ./internal/provider/apisix_apache_org_v2/apisix_apache_org_apisix_tls_v2_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apisix_apache_org_v2/apisix_apache_org_apisix_tls_v2_manifest_test.go
touch $@
out/test-sentinel-apisix_apache_org_apisix_upstream_v2_manifest_test.go: ./internal/provider/apisix_apache_org_v2/apisix_apache_org_apisix_upstream_v2_manifest.go ./internal/provider/apisix_apache_org_v2/apisix_apache_org_apisix_upstream_v2_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apisix_apache_org_v2/apisix_apache_org_apisix_upstream_v2_manifest_test.go
touch $@
out/test-sentinel-apm_k8s_elastic_co_apm_server_v1_manifest_test.go: ./internal/provider/apm_k8s_elastic_co_v1/apm_k8s_elastic_co_apm_server_v1_manifest.go ./internal/provider/apm_k8s_elastic_co_v1/apm_k8s_elastic_co_apm_server_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apm_k8s_elastic_co_v1/apm_k8s_elastic_co_apm_server_v1_manifest_test.go
touch $@
out/test-sentinel-apm_k8s_elastic_co_apm_server_v1beta1_manifest_test.go: ./internal/provider/apm_k8s_elastic_co_v1beta1/apm_k8s_elastic_co_apm_server_v1beta1_manifest.go ./internal/provider/apm_k8s_elastic_co_v1beta1/apm_k8s_elastic_co_apm_server_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apm_k8s_elastic_co_v1beta1/apm_k8s_elastic_co_apm_server_v1beta1_manifest_test.go
touch $@
out/test-sentinel-app_kiegroup_org_kogito_build_v1beta1_manifest_test.go: ./internal/provider/app_kiegroup_org_v1beta1/app_kiegroup_org_kogito_build_v1beta1_manifest.go ./internal/provider/app_kiegroup_org_v1beta1/app_kiegroup_org_kogito_build_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/app_kiegroup_org_v1beta1/app_kiegroup_org_kogito_build_v1beta1_manifest_test.go
touch $@
out/test-sentinel-app_kiegroup_org_kogito_infra_v1beta1_manifest_test.go: ./internal/provider/app_kiegroup_org_v1beta1/app_kiegroup_org_kogito_infra_v1beta1_manifest.go ./internal/provider/app_kiegroup_org_v1beta1/app_kiegroup_org_kogito_infra_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/app_kiegroup_org_v1beta1/app_kiegroup_org_kogito_infra_v1beta1_manifest_test.go
touch $@
out/test-sentinel-app_kiegroup_org_kogito_runtime_v1beta1_manifest_test.go: ./internal/provider/app_kiegroup_org_v1beta1/app_kiegroup_org_kogito_runtime_v1beta1_manifest.go ./internal/provider/app_kiegroup_org_v1beta1/app_kiegroup_org_kogito_runtime_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/app_kiegroup_org_v1beta1/app_kiegroup_org_kogito_runtime_v1beta1_manifest_test.go
touch $@
out/test-sentinel-app_kiegroup_org_kogito_supporting_service_v1beta1_manifest_test.go: ./internal/provider/app_kiegroup_org_v1beta1/app_kiegroup_org_kogito_supporting_service_v1beta1_manifest.go ./internal/provider/app_kiegroup_org_v1beta1/app_kiegroup_org_kogito_supporting_service_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/app_kiegroup_org_v1beta1/app_kiegroup_org_kogito_supporting_service_v1beta1_manifest_test.go
touch $@
out/test-sentinel-app_lightbend_com_akka_cluster_v1alpha1_manifest_test.go: ./internal/provider/app_lightbend_com_v1alpha1/app_lightbend_com_akka_cluster_v1alpha1_manifest.go ./internal/provider/app_lightbend_com_v1alpha1/app_lightbend_com_akka_cluster_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/app_lightbend_com_v1alpha1/app_lightbend_com_akka_cluster_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-app_redislabs_com_redis_enterprise_cluster_v1_manifest_test.go: ./internal/provider/app_redislabs_com_v1/app_redislabs_com_redis_enterprise_cluster_v1_manifest.go ./internal/provider/app_redislabs_com_v1/app_redislabs_com_redis_enterprise_cluster_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/app_redislabs_com_v1/app_redislabs_com_redis_enterprise_cluster_v1_manifest_test.go
touch $@
out/test-sentinel-app_redislabs_com_redis_enterprise_active_active_database_v1alpha1_manifest_test.go: ./internal/provider/app_redislabs_com_v1alpha1/app_redislabs_com_redis_enterprise_active_active_database_v1alpha1_manifest.go ./internal/provider/app_redislabs_com_v1alpha1/app_redislabs_com_redis_enterprise_active_active_database_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/app_redislabs_com_v1alpha1/app_redislabs_com_redis_enterprise_active_active_database_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-app_redislabs_com_redis_enterprise_cluster_v1alpha1_manifest_test.go: ./internal/provider/app_redislabs_com_v1alpha1/app_redislabs_com_redis_enterprise_cluster_v1alpha1_manifest.go ./internal/provider/app_redislabs_com_v1alpha1/app_redislabs_com_redis_enterprise_cluster_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/app_redislabs_com_v1alpha1/app_redislabs_com_redis_enterprise_cluster_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-app_redislabs_com_redis_enterprise_database_v1alpha1_manifest_test.go: ./internal/provider/app_redislabs_com_v1alpha1/app_redislabs_com_redis_enterprise_database_v1alpha1_manifest.go ./internal/provider/app_redislabs_com_v1alpha1/app_redislabs_com_redis_enterprise_database_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/app_redislabs_com_v1alpha1/app_redislabs_com_redis_enterprise_database_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-app_redislabs_com_redis_enterprise_remote_cluster_v1alpha1_manifest_test.go: ./internal/provider/app_redislabs_com_v1alpha1/app_redislabs_com_redis_enterprise_remote_cluster_v1alpha1_manifest.go ./internal/provider/app_redislabs_com_v1alpha1/app_redislabs_com_redis_enterprise_remote_cluster_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/app_redislabs_com_v1alpha1/app_redislabs_com_redis_enterprise_remote_cluster_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-app_terraform_io_agent_pool_v1alpha2_manifest_test.go: ./internal/provider/app_terraform_io_v1alpha2/app_terraform_io_agent_pool_v1alpha2_manifest.go ./internal/provider/app_terraform_io_v1alpha2/app_terraform_io_agent_pool_v1alpha2_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/app_terraform_io_v1alpha2/app_terraform_io_agent_pool_v1alpha2_manifest_test.go
touch $@
out/test-sentinel-app_terraform_io_module_v1alpha2_manifest_test.go: ./internal/provider/app_terraform_io_v1alpha2/app_terraform_io_module_v1alpha2_manifest.go ./internal/provider/app_terraform_io_v1alpha2/app_terraform_io_module_v1alpha2_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/app_terraform_io_v1alpha2/app_terraform_io_module_v1alpha2_manifest_test.go
touch $@
out/test-sentinel-app_terraform_io_workspace_v1alpha2_manifest_test.go: ./internal/provider/app_terraform_io_v1alpha2/app_terraform_io_workspace_v1alpha2_manifest.go ./internal/provider/app_terraform_io_v1alpha2/app_terraform_io_workspace_v1alpha2_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/app_terraform_io_v1alpha2/app_terraform_io_workspace_v1alpha2_manifest_test.go
touch $@
out/test-sentinel-application_networking_k8s_aws_access_log_policy_v1alpha1_manifest_test.go: ./internal/provider/application_networking_k8s_aws_v1alpha1/application_networking_k8s_aws_access_log_policy_v1alpha1_manifest.go ./internal/provider/application_networking_k8s_aws_v1alpha1/application_networking_k8s_aws_access_log_policy_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/application_networking_k8s_aws_v1alpha1/application_networking_k8s_aws_access_log_policy_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-application_networking_k8s_aws_iam_auth_policy_v1alpha1_manifest_test.go: ./internal/provider/application_networking_k8s_aws_v1alpha1/application_networking_k8s_aws_iam_auth_policy_v1alpha1_manifest.go ./internal/provider/application_networking_k8s_aws_v1alpha1/application_networking_k8s_aws_iam_auth_policy_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/application_networking_k8s_aws_v1alpha1/application_networking_k8s_aws_iam_auth_policy_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-application_networking_k8s_aws_service_import_v1alpha1_manifest_test.go: ./internal/provider/application_networking_k8s_aws_v1alpha1/application_networking_k8s_aws_service_import_v1alpha1_manifest.go ./internal/provider/application_networking_k8s_aws_v1alpha1/application_networking_k8s_aws_service_import_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/application_networking_k8s_aws_v1alpha1/application_networking_k8s_aws_service_import_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-application_networking_k8s_aws_target_group_policy_v1alpha1_manifest_test.go: ./internal/provider/application_networking_k8s_aws_v1alpha1/application_networking_k8s_aws_target_group_policy_v1alpha1_manifest.go ./internal/provider/application_networking_k8s_aws_v1alpha1/application_networking_k8s_aws_target_group_policy_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/application_networking_k8s_aws_v1alpha1/application_networking_k8s_aws_target_group_policy_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-application_networking_k8s_aws_vpc_association_policy_v1alpha1_manifest_test.go: ./internal/provider/application_networking_k8s_aws_v1alpha1/application_networking_k8s_aws_vpc_association_policy_v1alpha1_manifest.go ./internal/provider/application_networking_k8s_aws_v1alpha1/application_networking_k8s_aws_vpc_association_policy_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/application_networking_k8s_aws_v1alpha1/application_networking_k8s_aws_vpc_association_policy_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-applicationautoscaling_services_k8s_aws_scalable_target_v1alpha1_manifest_test.go: ./internal/provider/applicationautoscaling_services_k8s_aws_v1alpha1/applicationautoscaling_services_k8s_aws_scalable_target_v1alpha1_manifest.go ./internal/provider/applicationautoscaling_services_k8s_aws_v1alpha1/applicationautoscaling_services_k8s_aws_scalable_target_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/applicationautoscaling_services_k8s_aws_v1alpha1/applicationautoscaling_services_k8s_aws_scalable_target_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-applicationautoscaling_services_k8s_aws_scaling_policy_v1alpha1_manifest_test.go: ./internal/provider/applicationautoscaling_services_k8s_aws_v1alpha1/applicationautoscaling_services_k8s_aws_scaling_policy_v1alpha1_manifest.go ./internal/provider/applicationautoscaling_services_k8s_aws_v1alpha1/applicationautoscaling_services_k8s_aws_scaling_policy_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/applicationautoscaling_services_k8s_aws_v1alpha1/applicationautoscaling_services_k8s_aws_scaling_policy_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-appmesh_k8s_aws_backend_group_v1beta2_manifest_test.go: ./internal/provider/appmesh_k8s_aws_v1beta2/appmesh_k8s_aws_backend_group_v1beta2_manifest.go ./internal/provider/appmesh_k8s_aws_v1beta2/appmesh_k8s_aws_backend_group_v1beta2_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/appmesh_k8s_aws_v1beta2/appmesh_k8s_aws_backend_group_v1beta2_manifest_test.go
touch $@
out/test-sentinel-appmesh_k8s_aws_gateway_route_v1beta2_manifest_test.go: ./internal/provider/appmesh_k8s_aws_v1beta2/appmesh_k8s_aws_gateway_route_v1beta2_manifest.go ./internal/provider/appmesh_k8s_aws_v1beta2/appmesh_k8s_aws_gateway_route_v1beta2_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/appmesh_k8s_aws_v1beta2/appmesh_k8s_aws_gateway_route_v1beta2_manifest_test.go
touch $@
out/test-sentinel-appmesh_k8s_aws_mesh_v1beta2_manifest_test.go: ./internal/provider/appmesh_k8s_aws_v1beta2/appmesh_k8s_aws_mesh_v1beta2_manifest.go ./internal/provider/appmesh_k8s_aws_v1beta2/appmesh_k8s_aws_mesh_v1beta2_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/appmesh_k8s_aws_v1beta2/appmesh_k8s_aws_mesh_v1beta2_manifest_test.go
touch $@
out/test-sentinel-appmesh_k8s_aws_virtual_gateway_v1beta2_manifest_test.go: ./internal/provider/appmesh_k8s_aws_v1beta2/appmesh_k8s_aws_virtual_gateway_v1beta2_manifest.go ./internal/provider/appmesh_k8s_aws_v1beta2/appmesh_k8s_aws_virtual_gateway_v1beta2_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/appmesh_k8s_aws_v1beta2/appmesh_k8s_aws_virtual_gateway_v1beta2_manifest_test.go
touch $@
out/test-sentinel-appmesh_k8s_aws_virtual_node_v1beta2_manifest_test.go: ./internal/provider/appmesh_k8s_aws_v1beta2/appmesh_k8s_aws_virtual_node_v1beta2_manifest.go ./internal/provider/appmesh_k8s_aws_v1beta2/appmesh_k8s_aws_virtual_node_v1beta2_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/appmesh_k8s_aws_v1beta2/appmesh_k8s_aws_virtual_node_v1beta2_manifest_test.go
touch $@
out/test-sentinel-appmesh_k8s_aws_virtual_router_v1beta2_manifest_test.go: ./internal/provider/appmesh_k8s_aws_v1beta2/appmesh_k8s_aws_virtual_router_v1beta2_manifest.go ./internal/provider/appmesh_k8s_aws_v1beta2/appmesh_k8s_aws_virtual_router_v1beta2_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/appmesh_k8s_aws_v1beta2/appmesh_k8s_aws_virtual_router_v1beta2_manifest_test.go
touch $@
out/test-sentinel-appmesh_k8s_aws_virtual_service_v1beta2_manifest_test.go: ./internal/provider/appmesh_k8s_aws_v1beta2/appmesh_k8s_aws_virtual_service_v1beta2_manifest.go ./internal/provider/appmesh_k8s_aws_v1beta2/appmesh_k8s_aws_virtual_service_v1beta2_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/appmesh_k8s_aws_v1beta2/appmesh_k8s_aws_virtual_service_v1beta2_manifest_test.go
touch $@
out/test-sentinel-appprotect_f5_com_ap_log_conf_v1beta1_manifest_test.go: ./internal/provider/appprotect_f5_com_v1beta1/appprotect_f5_com_ap_log_conf_v1beta1_manifest.go ./internal/provider/appprotect_f5_com_v1beta1/appprotect_f5_com_ap_log_conf_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/appprotect_f5_com_v1beta1/appprotect_f5_com_ap_log_conf_v1beta1_manifest_test.go
touch $@
out/test-sentinel-appprotect_f5_com_ap_policy_v1beta1_manifest_test.go: ./internal/provider/appprotect_f5_com_v1beta1/appprotect_f5_com_ap_policy_v1beta1_manifest.go ./internal/provider/appprotect_f5_com_v1beta1/appprotect_f5_com_ap_policy_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/appprotect_f5_com_v1beta1/appprotect_f5_com_ap_policy_v1beta1_manifest_test.go
touch $@
out/test-sentinel-appprotect_f5_com_ap_user_sig_v1beta1_manifest_test.go: ./internal/provider/appprotect_f5_com_v1beta1/appprotect_f5_com_ap_user_sig_v1beta1_manifest.go ./internal/provider/appprotect_f5_com_v1beta1/appprotect_f5_com_ap_user_sig_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/appprotect_f5_com_v1beta1/appprotect_f5_com_ap_user_sig_v1beta1_manifest_test.go
touch $@
out/test-sentinel-appprotectdos_f5_com_ap_dos_log_conf_v1beta1_manifest_test.go: ./internal/provider/appprotectdos_f5_com_v1beta1/appprotectdos_f5_com_ap_dos_log_conf_v1beta1_manifest.go ./internal/provider/appprotectdos_f5_com_v1beta1/appprotectdos_f5_com_ap_dos_log_conf_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/appprotectdos_f5_com_v1beta1/appprotectdos_f5_com_ap_dos_log_conf_v1beta1_manifest_test.go
touch $@
out/test-sentinel-appprotectdos_f5_com_ap_dos_policy_v1beta1_manifest_test.go: ./internal/provider/appprotectdos_f5_com_v1beta1/appprotectdos_f5_com_ap_dos_policy_v1beta1_manifest.go ./internal/provider/appprotectdos_f5_com_v1beta1/appprotectdos_f5_com_ap_dos_policy_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/appprotectdos_f5_com_v1beta1/appprotectdos_f5_com_ap_dos_policy_v1beta1_manifest_test.go
touch $@
out/test-sentinel-appprotectdos_f5_com_dos_protected_resource_v1beta1_manifest_test.go: ./internal/provider/appprotectdos_f5_com_v1beta1/appprotectdos_f5_com_dos_protected_resource_v1beta1_manifest.go ./internal/provider/appprotectdos_f5_com_v1beta1/appprotectdos_f5_com_dos_protected_resource_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/appprotectdos_f5_com_v1beta1/appprotectdos_f5_com_dos_protected_resource_v1beta1_manifest_test.go
touch $@
out/test-sentinel-apps_3scale_net_ap_icast_v1alpha1_manifest_test.go: ./internal/provider/apps_3scale_net_v1alpha1/apps_3scale_net_ap_icast_v1alpha1_manifest.go ./internal/provider/apps_3scale_net_v1alpha1/apps_3scale_net_ap_icast_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_3scale_net_v1alpha1/apps_3scale_net_ap_icast_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_3scale_net_api_manager_backup_v1alpha1_manifest_test.go: ./internal/provider/apps_3scale_net_v1alpha1/apps_3scale_net_api_manager_backup_v1alpha1_manifest.go ./internal/provider/apps_3scale_net_v1alpha1/apps_3scale_net_api_manager_backup_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_3scale_net_v1alpha1/apps_3scale_net_api_manager_backup_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_3scale_net_api_manager_restore_v1alpha1_manifest_test.go: ./internal/provider/apps_3scale_net_v1alpha1/apps_3scale_net_api_manager_restore_v1alpha1_manifest.go ./internal/provider/apps_3scale_net_v1alpha1/apps_3scale_net_api_manager_restore_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_3scale_net_v1alpha1/apps_3scale_net_api_manager_restore_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_3scale_net_api_manager_v1alpha1_manifest_test.go: ./internal/provider/apps_3scale_net_v1alpha1/apps_3scale_net_api_manager_v1alpha1_manifest.go ./internal/provider/apps_3scale_net_v1alpha1/apps_3scale_net_api_manager_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_3scale_net_v1alpha1/apps_3scale_net_api_manager_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_clusternet_io_base_v1alpha1_manifest_test.go: ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_base_v1alpha1_manifest.go ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_base_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_base_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_clusternet_io_description_v1alpha1_manifest_test.go: ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_description_v1alpha1_manifest.go ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_description_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_description_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_clusternet_io_feed_inventory_v1alpha1_manifest_test.go: ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_feed_inventory_v1alpha1_manifest.go ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_feed_inventory_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_feed_inventory_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_clusternet_io_globalization_v1alpha1_manifest_test.go: ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_globalization_v1alpha1_manifest.go ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_globalization_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_globalization_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_clusternet_io_helm_chart_v1alpha1_manifest_test.go: ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_helm_chart_v1alpha1_manifest.go ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_helm_chart_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_helm_chart_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_clusternet_io_helm_release_v1alpha1_manifest_test.go: ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_helm_release_v1alpha1_manifest.go ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_helm_release_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_helm_release_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_clusternet_io_localization_v1alpha1_manifest_test.go: ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_localization_v1alpha1_manifest.go ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_localization_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_localization_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_clusternet_io_manifest_v1alpha1_manifest_test.go: ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_manifest_v1alpha1_manifest.go ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_manifest_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_manifest_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_clusternet_io_subscription_v1alpha1_manifest_test.go: ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_subscription_v1alpha1_manifest.go ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_subscription_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_clusternet_io_v1alpha1/apps_clusternet_io_subscription_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_emqx_io_emqx_broker_v1beta3_manifest_test.go: ./internal/provider/apps_emqx_io_v1beta3/apps_emqx_io_emqx_broker_v1beta3_manifest.go ./internal/provider/apps_emqx_io_v1beta3/apps_emqx_io_emqx_broker_v1beta3_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_emqx_io_v1beta3/apps_emqx_io_emqx_broker_v1beta3_manifest_test.go
touch $@
out/test-sentinel-apps_emqx_io_emqx_enterprise_v1beta3_manifest_test.go: ./internal/provider/apps_emqx_io_v1beta3/apps_emqx_io_emqx_enterprise_v1beta3_manifest.go ./internal/provider/apps_emqx_io_v1beta3/apps_emqx_io_emqx_enterprise_v1beta3_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_emqx_io_v1beta3/apps_emqx_io_emqx_enterprise_v1beta3_manifest_test.go
touch $@
out/test-sentinel-apps_emqx_io_emqx_plugin_v1beta3_manifest_test.go: ./internal/provider/apps_emqx_io_v1beta3/apps_emqx_io_emqx_plugin_v1beta3_manifest.go ./internal/provider/apps_emqx_io_v1beta3/apps_emqx_io_emqx_plugin_v1beta3_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_emqx_io_v1beta3/apps_emqx_io_emqx_plugin_v1beta3_manifest_test.go
touch $@
out/test-sentinel-apps_emqx_io_emqx_broker_v1beta4_manifest_test.go: ./internal/provider/apps_emqx_io_v1beta4/apps_emqx_io_emqx_broker_v1beta4_manifest.go ./internal/provider/apps_emqx_io_v1beta4/apps_emqx_io_emqx_broker_v1beta4_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_emqx_io_v1beta4/apps_emqx_io_emqx_broker_v1beta4_manifest_test.go
touch $@
out/test-sentinel-apps_emqx_io_emqx_enterprise_v1beta4_manifest_test.go: ./internal/provider/apps_emqx_io_v1beta4/apps_emqx_io_emqx_enterprise_v1beta4_manifest.go ./internal/provider/apps_emqx_io_v1beta4/apps_emqx_io_emqx_enterprise_v1beta4_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_emqx_io_v1beta4/apps_emqx_io_emqx_enterprise_v1beta4_manifest_test.go
touch $@
out/test-sentinel-apps_emqx_io_emqx_plugin_v1beta4_manifest_test.go: ./internal/provider/apps_emqx_io_v1beta4/apps_emqx_io_emqx_plugin_v1beta4_manifest.go ./internal/provider/apps_emqx_io_v1beta4/apps_emqx_io_emqx_plugin_v1beta4_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_emqx_io_v1beta4/apps_emqx_io_emqx_plugin_v1beta4_manifest_test.go
touch $@
out/test-sentinel-apps_emqx_io_rebalance_v1beta4_manifest_test.go: ./internal/provider/apps_emqx_io_v1beta4/apps_emqx_io_rebalance_v1beta4_manifest.go ./internal/provider/apps_emqx_io_v1beta4/apps_emqx_io_rebalance_v1beta4_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_emqx_io_v1beta4/apps_emqx_io_rebalance_v1beta4_manifest_test.go
touch $@
out/test-sentinel-apps_emqx_io_emqx_v2alpha1_manifest_test.go: ./internal/provider/apps_emqx_io_v2alpha1/apps_emqx_io_emqx_v2alpha1_manifest.go ./internal/provider/apps_emqx_io_v2alpha1/apps_emqx_io_emqx_v2alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_emqx_io_v2alpha1/apps_emqx_io_emqx_v2alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_emqx_io_emqx_v2beta1_manifest_test.go: ./internal/provider/apps_emqx_io_v2beta1/apps_emqx_io_emqx_v2beta1_manifest.go ./internal/provider/apps_emqx_io_v2beta1/apps_emqx_io_emqx_v2beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_emqx_io_v2beta1/apps_emqx_io_emqx_v2beta1_manifest_test.go
touch $@
out/test-sentinel-apps_emqx_io_rebalance_v2beta1_manifest_test.go: ./internal/provider/apps_emqx_io_v2beta1/apps_emqx_io_rebalance_v2beta1_manifest.go ./internal/provider/apps_emqx_io_v2beta1/apps_emqx_io_rebalance_v2beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_emqx_io_v2beta1/apps_emqx_io_rebalance_v2beta1_manifest_test.go
touch $@
out/test-sentinel-apps_gitlab_com_git_lab_v1beta1_manifest_test.go: ./internal/provider/apps_gitlab_com_v1beta1/apps_gitlab_com_git_lab_v1beta1_manifest.go ./internal/provider/apps_gitlab_com_v1beta1/apps_gitlab_com_git_lab_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_gitlab_com_v1beta1/apps_gitlab_com_git_lab_v1beta1_manifest_test.go
touch $@
out/test-sentinel-apps_gitlab_com_runner_v1beta2_manifest_test.go: ./internal/provider/apps_gitlab_com_v1beta2/apps_gitlab_com_runner_v1beta2_manifest.go ./internal/provider/apps_gitlab_com_v1beta2/apps_gitlab_com_runner_v1beta2_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_gitlab_com_v1beta2/apps_gitlab_com_runner_v1beta2_manifest_test.go
touch $@
out/test-sentinel-apps_kubeblocks_io_cluster_definition_v1_manifest_test.go: ./internal/provider/apps_kubeblocks_io_v1/apps_kubeblocks_io_cluster_definition_v1_manifest.go ./internal/provider/apps_kubeblocks_io_v1/apps_kubeblocks_io_cluster_definition_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_kubeblocks_io_v1/apps_kubeblocks_io_cluster_definition_v1_manifest_test.go
touch $@
out/test-sentinel-apps_kubeblocks_io_cluster_v1_manifest_test.go: ./internal/provider/apps_kubeblocks_io_v1/apps_kubeblocks_io_cluster_v1_manifest.go ./internal/provider/apps_kubeblocks_io_v1/apps_kubeblocks_io_cluster_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_kubeblocks_io_v1/apps_kubeblocks_io_cluster_v1_manifest_test.go
touch $@
out/test-sentinel-apps_kubeblocks_io_component_definition_v1_manifest_test.go: ./internal/provider/apps_kubeblocks_io_v1/apps_kubeblocks_io_component_definition_v1_manifest.go ./internal/provider/apps_kubeblocks_io_v1/apps_kubeblocks_io_component_definition_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_kubeblocks_io_v1/apps_kubeblocks_io_component_definition_v1_manifest_test.go
touch $@
out/test-sentinel-apps_kubeblocks_io_component_v1_manifest_test.go: ./internal/provider/apps_kubeblocks_io_v1/apps_kubeblocks_io_component_v1_manifest.go ./internal/provider/apps_kubeblocks_io_v1/apps_kubeblocks_io_component_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_kubeblocks_io_v1/apps_kubeblocks_io_component_v1_manifest_test.go
touch $@
out/test-sentinel-apps_kubeblocks_io_component_version_v1_manifest_test.go: ./internal/provider/apps_kubeblocks_io_v1/apps_kubeblocks_io_component_version_v1_manifest.go ./internal/provider/apps_kubeblocks_io_v1/apps_kubeblocks_io_component_version_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_kubeblocks_io_v1/apps_kubeblocks_io_component_version_v1_manifest_test.go
touch $@
out/test-sentinel-apps_kubeblocks_io_service_descriptor_v1_manifest_test.go: ./internal/provider/apps_kubeblocks_io_v1/apps_kubeblocks_io_service_descriptor_v1_manifest.go ./internal/provider/apps_kubeblocks_io_v1/apps_kubeblocks_io_service_descriptor_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_kubeblocks_io_v1/apps_kubeblocks_io_service_descriptor_v1_manifest_test.go
touch $@
out/test-sentinel-apps_kubeblocks_io_backup_policy_template_v1alpha1_manifest_test.go: ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_backup_policy_template_v1alpha1_manifest.go ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_backup_policy_template_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_backup_policy_template_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_kubeblocks_io_cluster_definition_v1alpha1_manifest_test.go: ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_cluster_definition_v1alpha1_manifest.go ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_cluster_definition_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_cluster_definition_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_kubeblocks_io_cluster_v1alpha1_manifest_test.go: ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_cluster_v1alpha1_manifest.go ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_cluster_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_cluster_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_kubeblocks_io_cluster_version_v1alpha1_manifest_test.go: ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_cluster_version_v1alpha1_manifest.go ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_cluster_version_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_cluster_version_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_kubeblocks_io_component_class_definition_v1alpha1_manifest_test.go: ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_component_class_definition_v1alpha1_manifest.go ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_component_class_definition_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_component_class_definition_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_kubeblocks_io_component_definition_v1alpha1_manifest_test.go: ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_component_definition_v1alpha1_manifest.go ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_component_definition_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_component_definition_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_kubeblocks_io_component_resource_constraint_v1alpha1_manifest_test.go: ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_component_resource_constraint_v1alpha1_manifest.go ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_component_resource_constraint_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_component_resource_constraint_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_kubeblocks_io_component_v1alpha1_manifest_test.go: ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_component_v1alpha1_manifest.go ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_component_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_component_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_kubeblocks_io_component_version_v1alpha1_manifest_test.go: ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_component_version_v1alpha1_manifest.go ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_component_version_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_component_version_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_kubeblocks_io_config_constraint_v1alpha1_manifest_test.go: ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_config_constraint_v1alpha1_manifest.go ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_config_constraint_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_config_constraint_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_kubeblocks_io_configuration_v1alpha1_manifest_test.go: ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_configuration_v1alpha1_manifest.go ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_configuration_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_configuration_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_kubeblocks_io_ops_definition_v1alpha1_manifest_test.go: ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_ops_definition_v1alpha1_manifest.go ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_ops_definition_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_ops_definition_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_kubeblocks_io_ops_request_v1alpha1_manifest_test.go: ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_ops_request_v1alpha1_manifest.go ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_ops_request_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_ops_request_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_kubeblocks_io_service_descriptor_v1alpha1_manifest_test.go: ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_service_descriptor_v1alpha1_manifest.go ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_service_descriptor_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_kubeblocks_io_v1alpha1/apps_kubeblocks_io_service_descriptor_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_kubeblocks_io_config_constraint_v1beta1_manifest_test.go: ./internal/provider/apps_kubeblocks_io_v1beta1/apps_kubeblocks_io_config_constraint_v1beta1_manifest.go ./internal/provider/apps_kubeblocks_io_v1beta1/apps_kubeblocks_io_config_constraint_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_kubeblocks_io_v1beta1/apps_kubeblocks_io_config_constraint_v1beta1_manifest_test.go
touch $@
out/test-sentinel-apps_kubedl_io_cron_v1alpha1_manifest_test.go: ./internal/provider/apps_kubedl_io_v1alpha1/apps_kubedl_io_cron_v1alpha1_manifest.go ./internal/provider/apps_kubedl_io_v1alpha1/apps_kubedl_io_cron_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_kubedl_io_v1alpha1/apps_kubedl_io_cron_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_kubeedge_io_edge_application_v1alpha1_manifest_test.go: ./internal/provider/apps_kubeedge_io_v1alpha1/apps_kubeedge_io_edge_application_v1alpha1_manifest.go ./internal/provider/apps_kubeedge_io_v1alpha1/apps_kubeedge_io_edge_application_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_kubeedge_io_v1alpha1/apps_kubeedge_io_edge_application_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_kubeedge_io_node_group_v1alpha1_manifest_test.go: ./internal/provider/apps_kubeedge_io_v1alpha1/apps_kubeedge_io_node_group_v1alpha1_manifest.go ./internal/provider/apps_kubeedge_io_v1alpha1/apps_kubeedge_io_node_group_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_kubeedge_io_v1alpha1/apps_kubeedge_io_node_group_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_m88i_io_nexus_v1alpha1_manifest_test.go: ./internal/provider/apps_m88i_io_v1alpha1/apps_m88i_io_nexus_v1alpha1_manifest.go ./internal/provider/apps_m88i_io_v1alpha1/apps_m88i_io_nexus_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_m88i_io_v1alpha1/apps_m88i_io_nexus_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_redhat_com_cluster_impairment_v1alpha1_manifest_test.go: ./internal/provider/apps_redhat_com_v1alpha1/apps_redhat_com_cluster_impairment_v1alpha1_manifest.go ./internal/provider/apps_redhat_com_v1alpha1/apps_redhat_com_cluster_impairment_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_redhat_com_v1alpha1/apps_redhat_com_cluster_impairment_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-apps_daemon_set_v1_manifest_test.go: ./internal/provider/apps_v1/apps_daemon_set_v1_manifest.go ./internal/provider/apps_v1/apps_daemon_set_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_v1/apps_daemon_set_v1_manifest_test.go
touch $@
out/test-sentinel-apps_deployment_v1_manifest_test.go: ./internal/provider/apps_v1/apps_deployment_v1_manifest.go ./internal/provider/apps_v1/apps_deployment_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_v1/apps_deployment_v1_manifest_test.go
touch $@
out/test-sentinel-apps_replica_set_v1_manifest_test.go: ./internal/provider/apps_v1/apps_replica_set_v1_manifest.go ./internal/provider/apps_v1/apps_replica_set_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_v1/apps_replica_set_v1_manifest_test.go
touch $@
out/test-sentinel-apps_stateful_set_v1_manifest_test.go: ./internal/provider/apps_v1/apps_stateful_set_v1_manifest.go ./internal/provider/apps_v1/apps_stateful_set_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/apps_v1/apps_stateful_set_v1_manifest_test.go
touch $@
out/test-sentinel-aquasecurity_github_io_aqua_starboard_v1alpha1_manifest_test.go: ./internal/provider/aquasecurity_github_io_v1alpha1/aquasecurity_github_io_aqua_starboard_v1alpha1_manifest.go ./internal/provider/aquasecurity_github_io_v1alpha1/aquasecurity_github_io_aqua_starboard_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/aquasecurity_github_io_v1alpha1/aquasecurity_github_io_aqua_starboard_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-argoproj_io_app_project_v1alpha1_manifest_test.go: ./internal/provider/argoproj_io_v1alpha1/argoproj_io_app_project_v1alpha1_manifest.go ./internal/provider/argoproj_io_v1alpha1/argoproj_io_app_project_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/argoproj_io_v1alpha1/argoproj_io_app_project_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-argoproj_io_application_set_v1alpha1_manifest_test.go: ./internal/provider/argoproj_io_v1alpha1/argoproj_io_application_set_v1alpha1_manifest.go ./internal/provider/argoproj_io_v1alpha1/argoproj_io_application_set_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/argoproj_io_v1alpha1/argoproj_io_application_set_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-argoproj_io_application_v1alpha1_manifest_test.go: ./internal/provider/argoproj_io_v1alpha1/argoproj_io_application_v1alpha1_manifest.go ./internal/provider/argoproj_io_v1alpha1/argoproj_io_application_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/argoproj_io_v1alpha1/argoproj_io_application_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-argoproj_io_argo_cd_v1alpha1_manifest_test.go: ./internal/provider/argoproj_io_v1alpha1/argoproj_io_argo_cd_v1alpha1_manifest.go ./internal/provider/argoproj_io_v1alpha1/argoproj_io_argo_cd_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/argoproj_io_v1alpha1/argoproj_io_argo_cd_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-argoproj_io_argo_cd_export_v1alpha1_manifest_test.go: ./internal/provider/argoproj_io_v1alpha1/argoproj_io_argo_cd_export_v1alpha1_manifest.go ./internal/provider/argoproj_io_v1alpha1/argoproj_io_argo_cd_export_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/argoproj_io_v1alpha1/argoproj_io_argo_cd_export_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-argoproj_io_argo_cd_v1beta1_manifest_test.go: ./internal/provider/argoproj_io_v1beta1/argoproj_io_argo_cd_v1beta1_manifest.go ./internal/provider/argoproj_io_v1beta1/argoproj_io_argo_cd_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/argoproj_io_v1beta1/argoproj_io_argo_cd_v1beta1_manifest_test.go
touch $@
out/test-sentinel-asdb_aerospike_com_aerospike_cluster_v1_manifest_test.go: ./internal/provider/asdb_aerospike_com_v1/asdb_aerospike_com_aerospike_cluster_v1_manifest.go ./internal/provider/asdb_aerospike_com_v1/asdb_aerospike_com_aerospike_cluster_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/asdb_aerospike_com_v1/asdb_aerospike_com_aerospike_cluster_v1_manifest_test.go
touch $@
out/test-sentinel-asdb_aerospike_com_aerospike_cluster_v1beta1_manifest_test.go: ./internal/provider/asdb_aerospike_com_v1beta1/asdb_aerospike_com_aerospike_cluster_v1beta1_manifest.go ./internal/provider/asdb_aerospike_com_v1beta1/asdb_aerospike_com_aerospike_cluster_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/asdb_aerospike_com_v1beta1/asdb_aerospike_com_aerospike_cluster_v1beta1_manifest_test.go
touch $@
out/test-sentinel-atlasmap_io_atlas_map_v1alpha1_manifest_test.go: ./internal/provider/atlasmap_io_v1alpha1/atlasmap_io_atlas_map_v1alpha1_manifest.go ./internal/provider/atlasmap_io_v1alpha1/atlasmap_io_atlas_map_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/atlasmap_io_v1alpha1/atlasmap_io_atlas_map_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-auth_ops42_org_aws_auth_sync_config_v1alpha1_manifest_test.go: ./internal/provider/auth_ops42_org_v1alpha1/auth_ops42_org_aws_auth_sync_config_v1alpha1_manifest.go ./internal/provider/auth_ops42_org_v1alpha1/auth_ops42_org_aws_auth_sync_config_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/auth_ops42_org_v1alpha1/auth_ops42_org_aws_auth_sync_config_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-authentication_stackable_tech_authentication_class_v1alpha1_manifest_test.go: ./internal/provider/authentication_stackable_tech_v1alpha1/authentication_stackable_tech_authentication_class_v1alpha1_manifest.go ./internal/provider/authentication_stackable_tech_v1alpha1/authentication_stackable_tech_authentication_class_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/authentication_stackable_tech_v1alpha1/authentication_stackable_tech_authentication_class_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-authzed_com_spice_db_cluster_v1alpha1_manifest_test.go: ./internal/provider/authzed_com_v1alpha1/authzed_com_spice_db_cluster_v1alpha1_manifest.go ./internal/provider/authzed_com_v1alpha1/authzed_com_spice_db_cluster_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/authzed_com_v1alpha1/authzed_com_spice_db_cluster_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-automation_kubensync_com_managed_resource_v1alpha1_manifest_test.go: ./internal/provider/automation_kubensync_com_v1alpha1/automation_kubensync_com_managed_resource_v1alpha1_manifest.go ./internal/provider/automation_kubensync_com_v1alpha1/automation_kubensync_com_managed_resource_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/automation_kubensync_com_v1alpha1/automation_kubensync_com_managed_resource_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-autoscaling_k8s_elastic_co_elasticsearch_autoscaler_v1alpha1_manifest_test.go: ./internal/provider/autoscaling_k8s_elastic_co_v1alpha1/autoscaling_k8s_elastic_co_elasticsearch_autoscaler_v1alpha1_manifest.go ./internal/provider/autoscaling_k8s_elastic_co_v1alpha1/autoscaling_k8s_elastic_co_elasticsearch_autoscaler_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/autoscaling_k8s_elastic_co_v1alpha1/autoscaling_k8s_elastic_co_elasticsearch_autoscaler_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-autoscaling_k8s_io_vertical_pod_autoscaler_checkpoint_v1_manifest_test.go: ./internal/provider/autoscaling_k8s_io_v1/autoscaling_k8s_io_vertical_pod_autoscaler_checkpoint_v1_manifest.go ./internal/provider/autoscaling_k8s_io_v1/autoscaling_k8s_io_vertical_pod_autoscaler_checkpoint_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/autoscaling_k8s_io_v1/autoscaling_k8s_io_vertical_pod_autoscaler_checkpoint_v1_manifest_test.go
touch $@
out/test-sentinel-autoscaling_k8s_io_vertical_pod_autoscaler_v1_manifest_test.go: ./internal/provider/autoscaling_k8s_io_v1/autoscaling_k8s_io_vertical_pod_autoscaler_v1_manifest.go ./internal/provider/autoscaling_k8s_io_v1/autoscaling_k8s_io_vertical_pod_autoscaler_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/autoscaling_k8s_io_v1/autoscaling_k8s_io_vertical_pod_autoscaler_v1_manifest_test.go
touch $@
out/test-sentinel-autoscaling_k8s_io_vertical_pod_autoscaler_checkpoint_v1beta2_manifest_test.go: ./internal/provider/autoscaling_k8s_io_v1beta2/autoscaling_k8s_io_vertical_pod_autoscaler_checkpoint_v1beta2_manifest.go ./internal/provider/autoscaling_k8s_io_v1beta2/autoscaling_k8s_io_vertical_pod_autoscaler_checkpoint_v1beta2_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/autoscaling_k8s_io_v1beta2/autoscaling_k8s_io_vertical_pod_autoscaler_checkpoint_v1beta2_manifest_test.go
touch $@
out/test-sentinel-autoscaling_k8s_io_vertical_pod_autoscaler_v1beta2_manifest_test.go: ./internal/provider/autoscaling_k8s_io_v1beta2/autoscaling_k8s_io_vertical_pod_autoscaler_v1beta2_manifest.go ./internal/provider/autoscaling_k8s_io_v1beta2/autoscaling_k8s_io_vertical_pod_autoscaler_v1beta2_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/autoscaling_k8s_io_v1beta2/autoscaling_k8s_io_vertical_pod_autoscaler_v1beta2_manifest_test.go
touch $@
out/test-sentinel-autoscaling_karmada_io_cron_federated_hpa_v1alpha1_manifest_test.go: ./internal/provider/autoscaling_karmada_io_v1alpha1/autoscaling_karmada_io_cron_federated_hpa_v1alpha1_manifest.go ./internal/provider/autoscaling_karmada_io_v1alpha1/autoscaling_karmada_io_cron_federated_hpa_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/autoscaling_karmada_io_v1alpha1/autoscaling_karmada_io_cron_federated_hpa_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-autoscaling_karmada_io_federated_hpa_v1alpha1_manifest_test.go: ./internal/provider/autoscaling_karmada_io_v1alpha1/autoscaling_karmada_io_federated_hpa_v1alpha1_manifest.go ./internal/provider/autoscaling_karmada_io_v1alpha1/autoscaling_karmada_io_federated_hpa_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/autoscaling_karmada_io_v1alpha1/autoscaling_karmada_io_federated_hpa_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-autoscaling_horizontal_pod_autoscaler_v1_manifest_test.go: ./internal/provider/autoscaling_v1/autoscaling_horizontal_pod_autoscaler_v1_manifest.go ./internal/provider/autoscaling_v1/autoscaling_horizontal_pod_autoscaler_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/autoscaling_v1/autoscaling_horizontal_pod_autoscaler_v1_manifest_test.go
touch $@
out/test-sentinel-autoscaling_horizontal_pod_autoscaler_v2_manifest_test.go: ./internal/provider/autoscaling_v2/autoscaling_horizontal_pod_autoscaler_v2_manifest.go ./internal/provider/autoscaling_v2/autoscaling_horizontal_pod_autoscaler_v2_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/autoscaling_v2/autoscaling_horizontal_pod_autoscaler_v2_manifest_test.go
touch $@
out/test-sentinel-awx_ansible_com_awx_v1beta1_manifest_test.go: ./internal/provider/awx_ansible_com_v1beta1/awx_ansible_com_awx_v1beta1_manifest.go ./internal/provider/awx_ansible_com_v1beta1/awx_ansible_com_awx_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/awx_ansible_com_v1beta1/awx_ansible_com_awx_v1beta1_manifest_test.go
touch $@
out/test-sentinel-awx_ansible_com_awx_backup_v1beta1_manifest_test.go: ./internal/provider/awx_ansible_com_v1beta1/awx_ansible_com_awx_backup_v1beta1_manifest.go ./internal/provider/awx_ansible_com_v1beta1/awx_ansible_com_awx_backup_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/awx_ansible_com_v1beta1/awx_ansible_com_awx_backup_v1beta1_manifest_test.go
touch $@
out/test-sentinel-awx_ansible_com_awx_restore_v1beta1_manifest_test.go: ./internal/provider/awx_ansible_com_v1beta1/awx_ansible_com_awx_restore_v1beta1_manifest.go ./internal/provider/awx_ansible_com_v1beta1/awx_ansible_com_awx_restore_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/awx_ansible_com_v1beta1/awx_ansible_com_awx_restore_v1beta1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_apim_service_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_apim_service_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_apim_service_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_apim_service_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_api_mgmt_api_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_api_mgmt_api_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_api_mgmt_api_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_api_mgmt_api_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_app_insights_api_key_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_app_insights_api_key_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_app_insights_api_key_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_app_insights_api_key_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_app_insights_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_app_insights_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_app_insights_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_app_insights_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_azure_load_balancer_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_load_balancer_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_load_balancer_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_load_balancer_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_azure_network_interface_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_network_interface_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_network_interface_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_network_interface_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_azure_public_ip_address_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_public_ip_address_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_public_ip_address_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_public_ip_address_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_azure_sql_action_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_sql_action_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_sql_action_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_sql_action_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_azure_sql_database_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_sql_database_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_sql_database_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_sql_database_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_azure_sql_failover_group_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_sql_failover_group_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_sql_failover_group_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_sql_failover_group_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_azure_sql_firewall_rule_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_sql_firewall_rule_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_sql_firewall_rule_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_sql_firewall_rule_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_azure_sql_server_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_sql_server_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_sql_server_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_sql_server_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_azure_sql_managed_user_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_sql_managed_user_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_sql_managed_user_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_sql_managed_user_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_azure_sql_user_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_sql_user_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_sql_user_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_sql_user_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_azure_sqlv_net_rule_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_sqlv_net_rule_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_sqlv_net_rule_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_sqlv_net_rule_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_azure_virtual_machine_extension_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_virtual_machine_extension_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_virtual_machine_extension_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_virtual_machine_extension_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_azure_virtual_machine_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_virtual_machine_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_virtual_machine_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_virtual_machine_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_azure_vm_scale_set_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_vm_scale_set_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_vm_scale_set_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_azure_vm_scale_set_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_blob_container_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_blob_container_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_blob_container_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_blob_container_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_consumer_group_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_consumer_group_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_consumer_group_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_consumer_group_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_cosmos_db_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_cosmos_db_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_cosmos_db_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_cosmos_db_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_eventhub_namespace_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_eventhub_namespace_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_eventhub_namespace_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_eventhub_namespace_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_eventhub_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_eventhub_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_eventhub_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_eventhub_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_key_vault_key_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_key_vault_key_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_key_vault_key_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_key_vault_key_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_key_vault_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_key_vault_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_key_vault_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_key_vault_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_my_sqlaad_user_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_my_sqlaad_user_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_my_sqlaad_user_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_my_sqlaad_user_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_my_sql_database_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_my_sql_database_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_my_sql_database_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_my_sql_database_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_my_sql_firewall_rule_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_my_sql_firewall_rule_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_my_sql_firewall_rule_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_my_sql_firewall_rule_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_my_sql_server_administrator_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_my_sql_server_administrator_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_my_sql_server_administrator_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_my_sql_server_administrator_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_my_sql_server_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_my_sql_server_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_my_sql_server_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_my_sql_server_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_my_sql_user_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_my_sql_user_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_my_sql_user_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_my_sql_user_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_my_sqlv_net_rule_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_my_sqlv_net_rule_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_my_sqlv_net_rule_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_my_sqlv_net_rule_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_postgre_sql_database_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_postgre_sql_database_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_postgre_sql_database_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_postgre_sql_database_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_postgre_sql_firewall_rule_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_postgre_sql_firewall_rule_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_postgre_sql_firewall_rule_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_postgre_sql_firewall_rule_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_postgre_sql_server_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_postgre_sql_server_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_postgre_sql_server_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_postgre_sql_server_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_postgre_sql_user_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_postgre_sql_user_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_postgre_sql_user_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_postgre_sql_user_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_postgre_sqlv_net_rule_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_postgre_sqlv_net_rule_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_postgre_sqlv_net_rule_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_postgre_sqlv_net_rule_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_redis_cache_action_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_redis_cache_action_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_redis_cache_action_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_redis_cache_action_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_redis_cache_firewall_rule_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_redis_cache_firewall_rule_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_redis_cache_firewall_rule_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_redis_cache_firewall_rule_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_resource_group_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_resource_group_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_resource_group_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_resource_group_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_storage_account_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_storage_account_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_storage_account_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_storage_account_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_virtual_network_v1alpha1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_virtual_network_v1alpha1_manifest.go ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_virtual_network_v1alpha1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha1/azure_microsoft_com_virtual_network_v1alpha1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_blob_container_v1alpha2_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha2/azure_microsoft_com_blob_container_v1alpha2_manifest.go ./internal/provider/azure_microsoft_com_v1alpha2/azure_microsoft_com_blob_container_v1alpha2_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha2/azure_microsoft_com_blob_container_v1alpha2_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_my_sqlaad_user_v1alpha2_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha2/azure_microsoft_com_my_sqlaad_user_v1alpha2_manifest.go ./internal/provider/azure_microsoft_com_v1alpha2/azure_microsoft_com_my_sqlaad_user_v1alpha2_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha2/azure_microsoft_com_my_sqlaad_user_v1alpha2_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_my_sql_server_v1alpha2_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha2/azure_microsoft_com_my_sql_server_v1alpha2_manifest.go ./internal/provider/azure_microsoft_com_v1alpha2/azure_microsoft_com_my_sql_server_v1alpha2_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha2/azure_microsoft_com_my_sql_server_v1alpha2_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_my_sql_user_v1alpha2_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha2/azure_microsoft_com_my_sql_user_v1alpha2_manifest.go ./internal/provider/azure_microsoft_com_v1alpha2/azure_microsoft_com_my_sql_user_v1alpha2_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha2/azure_microsoft_com_my_sql_user_v1alpha2_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_postgre_sql_server_v1alpha2_manifest_test.go: ./internal/provider/azure_microsoft_com_v1alpha2/azure_microsoft_com_postgre_sql_server_v1alpha2_manifest.go ./internal/provider/azure_microsoft_com_v1alpha2/azure_microsoft_com_postgre_sql_server_v1alpha2_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1alpha2/azure_microsoft_com_postgre_sql_server_v1alpha2_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_azure_sql_database_v1beta1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1beta1/azure_microsoft_com_azure_sql_database_v1beta1_manifest.go ./internal/provider/azure_microsoft_com_v1beta1/azure_microsoft_com_azure_sql_database_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1beta1/azure_microsoft_com_azure_sql_database_v1beta1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_azure_sql_failover_group_v1beta1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1beta1/azure_microsoft_com_azure_sql_failover_group_v1beta1_manifest.go ./internal/provider/azure_microsoft_com_v1beta1/azure_microsoft_com_azure_sql_failover_group_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1beta1/azure_microsoft_com_azure_sql_failover_group_v1beta1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_azure_sql_firewall_rule_v1beta1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1beta1/azure_microsoft_com_azure_sql_firewall_rule_v1beta1_manifest.go ./internal/provider/azure_microsoft_com_v1beta1/azure_microsoft_com_azure_sql_firewall_rule_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1beta1/azure_microsoft_com_azure_sql_firewall_rule_v1beta1_manifest_test.go
touch $@
out/test-sentinel-azure_microsoft_com_azure_sql_server_v1beta1_manifest_test.go: ./internal/provider/azure_microsoft_com_v1beta1/azure_microsoft_com_azure_sql_server_v1beta1_manifest.go ./internal/provider/azure_microsoft_com_v1beta1/azure_microsoft_com_azure_sql_server_v1beta1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/azure_microsoft_com_v1beta1/azure_microsoft_com_azure_sql_server_v1beta1_manifest_test.go
touch $@
out/test-sentinel-b3scale_infra_run_bbb_frontend_v1_manifest_test.go: ./internal/provider/b3scale_infra_run_v1/b3scale_infra_run_bbb_frontend_v1_manifest.go ./internal/provider/b3scale_infra_run_v1/b3scale_infra_run_bbb_frontend_v1_manifest_test.go
mkdir --parents $(@D)
go test ./internal/provider/b3scale_infra_run_v1/b3scale_infra_run_bbb_frontend_v1_manifest_test.go
touch $@
out/test-sentinel-b3scale_io_bbb_frontend_v1_manifest_test.go: ./internal/provider/b3scale_io_v1/b3scale_io_bbb_frontend_v1_manifest.go ./internal/provider/b3scale_io_v1/b3scale_io_bbb_frontend_v1_manifest_test.go