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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951
/*!
This crate contains [kube-rs](https://kube.rs/) compatible bindings for Kubernetes [custom resources](https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/). Each binding is generated with [kopium](https://github.com/kube-rs/kopium), updated weekly, and released monthly.
# Available Features
Every group has its own feature in this crate. The available features are as follows:
## about_k8s_io
apiVersion `about.k8s.io/v1alpha1`:
- `ClusterProperty`
## acid_zalan_do
apiVersion `acid.zalan.do/v1`:
- `PostgresTeam`
## acme_cert_manager_io
apiVersion `acme.cert-manager.io/v1`:
- `Challenge`
- `Order`
## acmpca_services_k8s_aws
apiVersion `acmpca.services.k8s.aws/v1alpha1`:
- `CertificateAuthority`
- `CertificateAuthorityActivation`
- `Certificate`
## actions_github_com
apiVersion `actions.github.com/v1alpha1`:
- `AutoscalingListener`
- `AutoscalingRunnerSet`
- `EphemeralRunnerSet`
## actions_summerwind_dev
apiVersion `actions.summerwind.dev/v1alpha1`:
- `HorizontalRunnerAutoscaler`
- `RunnerDeployment`
- `RunnerReplicaSet`
- `Runner`
- `RunnerSet`
## addons_cluster_x_k8s_io
apiVersion `addons.cluster.x-k8s.io/v1alpha3`:
- `ClusterResourceSetBinding`
- `ClusterResourceSet`
apiVersion `addons.cluster.x-k8s.io/v1alpha4`:
- `ClusterResourceSetBinding`
- `ClusterResourceSet`
apiVersion `addons.cluster.x-k8s.io/v1beta1`:
- `ClusterResourceSetBinding`
- `ClusterResourceSet`
## agent_k8s_elastic_co
apiVersion `agent.k8s.elastic.co/v1alpha1`:
- `Agent`
## anywhere_eks_amazonaws_com
apiVersion `anywhere.eks.amazonaws.com/v1alpha1`:
- `AWSDatacenterConfig`
- `AWSIamConfig`
- `Bundles`
- `CloudStackDatacenterConfig`
- `CloudStackMachineConfig`
- `Cluster`
- `ControlPlaneUpgrade`
- `DockerDatacenterConfig`
- `EKSARelease`
- `FluxConfig`
- `GitOpsConfig`
- `MachineDeploymentUpgrade`
- `NodeUpgrade`
- `NutanixDatacenterConfig`
- `NutanixMachineConfig`
- `OIDCConfig`
- `SnowDatacenterConfig`
- `SnowIPPool`
- `SnowMachineConfig`
- `TinkerbellDatacenterConfig`
- `TinkerbellMachineConfig`
- `TinkerbellTemplateConfig`
- `VSphereDatacenterConfig`
- `VSphereMachineConfig`
## api_clever_cloud_com
apiVersion `api.clever-cloud.com/v1`:
- `ConfigProvider`
- `ElasticSearch`
- `MongoDb`
- `MySql`
- `PostgreSql`
- `Redis`
apiVersion `api.clever-cloud.com/v1beta1`:
- `Pulsar`
## api_kubemod_io
apiVersion `api.kubemod.io/v1beta1`:
- `ModRule`
## apicodegen_apimatic_io
apiVersion `apicodegen.apimatic.io/v1beta1`:
- `APIMatic`
## apiextensions_crossplane_io
apiVersion `apiextensions.crossplane.io/v1`:
- `CompositeResourceDefinition`
## apigatewayv2_services_k8s_aws
apiVersion `apigatewayv2.services.k8s.aws/v1alpha1`:
- `API`
- `Authorizer`
- `Deployment`
- `Route`
- `Stage`
- `VPCLink`
## apisix_apache_org
apiVersion `apisix.apache.org/v2`:
- `ApisixClusterConfig`
- `ApisixConsumer`
- `ApisixGlobalRule`
- `ApisixPluginConfig`
- `ApisixRoute`
- `ApisixTls`
- `ApisixUpstream`
## apm_k8s_elastic_co
apiVersion `apm.k8s.elastic.co/v1`:
- `ApmServer`
apiVersion `apm.k8s.elastic.co/v1beta1`:
- `ApmServer`
## app_kiegroup_org
apiVersion `app.kiegroup.org/v1beta1`:
- `KogitoBuild`
- `KogitoInfra`
- `KogitoRuntime`
- `KogitoSupportingService`
## app_lightbend_com
apiVersion `app.lightbend.com/v1alpha1`:
- `AkkaCluster`
## app_redislabs_com
apiVersion `app.redislabs.com/v1`:
- `RedisEnterpriseCluster`
apiVersion `app.redislabs.com/v1alpha1`:
- `RedisEnterpriseActiveActiveDatabase`
- `RedisEnterpriseCluster`
- `RedisEnterpriseDatabase`
- `RedisEnterpriseRemoteCluster`
## app_terraform_io
apiVersion `app.terraform.io/v1alpha2`:
- `AgentPool`
- `Module`
- `Workspace`
## application_networking_k8s_aws
apiVersion `application-networking.k8s.aws/v1alpha1`:
- `AccessLogPolicy`
- `IAMAuthPolicy`
- `ServiceExport`
- `ServiceImport`
- `TargetGroupPolicy`
- `VpcAssociationPolicy`
## applicationautoscaling_services_k8s_aws
apiVersion `applicationautoscaling.services.k8s.aws/v1alpha1`:
- `ScalableTarget`
- `ScalingPolicy`
## appmesh_k8s_aws
apiVersion `appmesh.k8s.aws/v1beta2`:
- `BackendGroup`
- `GatewayRoute`
- `Mesh`
- `VirtualGateway`
- `VirtualNode`
- `VirtualRouter`
- `VirtualService`
## appprotect_f5_com
apiVersion `appprotect.f5.com/v1beta1`:
- `APLogConf`
- `APUserSig`
## appprotectdos_f5_com
apiVersion `appprotectdos.f5.com/v1beta1`:
- `APDosLogConf`
- `APDosPolicy`
- `DosProtectedResource`
## apps_3scale_net
apiVersion `apps.3scale.net/v1alpha1`:
- `APIManagerBackup`
- `APIManagerRestore`
- `APIManager`
- `APIcast`
## apps_clusternet_io
apiVersion `apps.clusternet.io/v1alpha1`:
- `Base`
- `Description`
- `FeedInventory`
- `Globalization`
- `HelmChart`
- `HelmRelease`
- `Localization`
- `Manifest`
- `Subscription`
## apps_emqx_io
apiVersion `apps.emqx.io/v1beta3`:
- `EmqxBroker`
- `EmqxEnterprise`
- `EmqxPlugin`
apiVersion `apps.emqx.io/v1beta4`:
- `EmqxBroker`
- `EmqxEnterprise`
- `EmqxPlugin`
- `Rebalance`
apiVersion `apps.emqx.io/v2alpha1`:
- `EMQX`
apiVersion `apps.emqx.io/v2beta1`:
- `EMQX`
- `Rebalance`
## apps_gitlab_com
apiVersion `apps.gitlab.com/v1beta1`:
- `GitLab`
apiVersion `apps.gitlab.com/v1beta2`:
- `Runner`
## apps_kubeblocks_io
apiVersion `apps.kubeblocks.io/v1alpha1`:
- `BackupPolicyTemplate`
- `ClusterDefinition`
- `Cluster`
- `ClusterVersion`
- `ComponentClassDefinition`
- `ConfigConstraint`
- `Configuration`
- `OpsRequest`
- `ServiceDescriptor`
## apps_kubedl_io
apiVersion `apps.kubedl.io/v1alpha1`:
- `Cron`
## apps_kubeedge_io
apiVersion `apps.kubeedge.io/v1alpha1`:
- `NodeGroup`
## apps_m88i_io
apiVersion `apps.m88i.io/v1alpha1`:
- `Nexus`
## apps_redhat_com
apiVersion `apps.redhat.com/v1alpha1`:
- `ClusterImpairment`
## aquasecurity_github_io
apiVersion `aquasecurity.github.io/v1alpha1`:
- `AquaStarboard`
- `ClusterConfigAuditReport`
- `ConfigAuditReport`
## argoproj_io
apiVersion `argoproj.io/v1alpha1`:
- `Application`
- `AppProject`
- `ArgoCDExport`
- `ArgoCD`
apiVersion `argoproj.io/v1beta1`:
- `ArgoCD`
## asdb_aerospike_com
apiVersion `asdb.aerospike.com/v1`:
- `AerospikeCluster`
apiVersion `asdb.aerospike.com/v1beta1`:
- `AerospikeCluster`
## atlasmap_io
apiVersion `atlasmap.io/v1alpha1`:
- `AtlasMap`
## auth_ops42_org
apiVersion `auth.ops42.org/v1alpha1`:
- `AwsAuthSyncConfig`
## authorization_openshift_io
apiVersion `authorization.openshift.io/v1`:
- `RoleBindingRestriction`
## authzed_com
apiVersion `authzed.com/v1alpha1`:
- `SpiceDBCluster`
## autoscaling_k8s_io
apiVersion `autoscaling.k8s.io/v1`:
- `VerticalPodAutoscalerCheckpoint`
- `VerticalPodAutoscaler`
apiVersion `autoscaling.k8s.io/v1beta2`:
- `VerticalPodAutoscalerCheckpoint`
- `VerticalPodAutoscaler`
## autoscaling_karmada_io
apiVersion `autoscaling.karmada.io/v1alpha1`:
- `CronFederatedHPA`
- `FederatedHPA`
## awx_ansible_com
apiVersion `awx.ansible.com/v1beta1`:
- `AWXBackup`
- `AWXRestore`
- `AWX`
## azure_microsoft_com
apiVersion `azure.microsoft.com/v1alpha1`:
- `APIMgmtAPI`
- `ApimService`
- `AppInsights`
- `AppInsightsApiKey`
- `AzureLoadBalancer`
- `AzureNetworkInterface`
- `AzurePublicIPAddress`
- `AzureSqlAction`
- `AzureSqlDatabase`
- `AzureSqlFailoverGroup`
- `AzureSqlFirewallRule`
- `AzureSQLManagedUser`
- `AzureSqlServer`
- `AzureSQLUser`
- `AzureSQLVNetRule`
- `AzureVirtualMachineExtension`
- `AzureVirtualMachine`
- `AzureVMScaleSet`
- `BlobContainer`
- `ConsumerGroup`
- `CosmosDB`
- `EventhubNamespace`
- `Eventhub`
- `KeyVaultKey`
- `KeyVault`
- `MySQLAADUser`
- `MySQLDatabase`
- `MySQLFirewallRule`
- `MySQLServerAdministrator`
- `MySQLServer`
- `MySQLUser`
- `MySQLVNetRule`
- `PostgreSQLDatabase`
- `PostgreSQLFirewallRule`
- `PostgreSQLServer`
- `PostgreSQLUser`
- `PostgreSQLVNetRule`
- `RedisCacheAction`
- `RedisCacheFirewallRule`
- `ResourceGroup`
- `StorageAccount`
- `VirtualNetwork`
apiVersion `azure.microsoft.com/v1alpha2`:
- `BlobContainer`
- `MySQLAADUser`
- `MySQLServer`
- `MySQLUser`
- `PostgreSQLServer`
apiVersion `azure.microsoft.com/v1beta1`:
- `AzureSqlDatabase`
- `AzureSqlFailoverGroup`
- `AzureSqlFirewallRule`
- `AzureSqlServer`
## b3scale_infra_run
apiVersion `b3scale.infra.run/v1`:
- `BBBFrontend`
## batch_volcano_sh
apiVersion `batch.volcano.sh/v1alpha1`:
- `Job`
## beat_k8s_elastic_co
apiVersion `beat.k8s.elastic.co/v1beta1`:
- `Beat`
## beegfs_csi_netapp_com
apiVersion `beegfs.csi.netapp.com/v1`:
- `BeegfsDriver`
## binding_operators_coreos_com
apiVersion `binding.operators.coreos.com/v1alpha1`:
- `BindableKinds`
- `ServiceBinding`
## bitnami_com
apiVersion `bitnami.com/v1alpha1`:
- `SealedSecret`
## bmc_tinkerbell_org
apiVersion `bmc.tinkerbell.org/v1alpha1`:
- `Job`
- `Machine`
- `Task`
## boskos_k8s_io
apiVersion `boskos.k8s.io/v1`:
- `DRLCObject`
- `ResourceObject`
## bpfd_dev
apiVersion `bpfd.dev/v1alpha1`:
- `BpfProgram`
- `KprobeProgram`
- `TcProgram`
- `TracepointProgram`
- `UprobeProgram`
- `XdpProgram`
## bus_volcano_sh
apiVersion `bus.volcano.sh/v1alpha1`:
- `Command`
## cache_kubedl_io
apiVersion `cache.kubedl.io/v1alpha1`:
- `CacheBackend`
## caching_ibm_com
apiVersion `caching.ibm.com/v1alpha1`:
- `VarnishCluster`
## camel_apache_org
apiVersion `camel.apache.org/v1`:
- `Build`
- `CamelCatalog`
- `Kamelet`
apiVersion `camel.apache.org/v1alpha1`:
- `Kamelet`
## canaries_flanksource_com
apiVersion `canaries.flanksource.com/v1`:
- `Canary`
## capabilities_3scale_net
apiVersion `capabilities.3scale.net/v1alpha1`:
- `Tenant`
apiVersion `capabilities.3scale.net/v1beta1`:
- `ActiveDoc`
- `Application`
- `Backend`
- `CustomPolicyDefinition`
- `DeveloperAccount`
- `DeveloperUser`
- `OpenAPI`
- `Product`
- `ProxyConfigPromote`
## capsule_clastix_io
apiVersion `capsule.clastix.io/v1alpha1`:
- `CapsuleConfiguration`
- `Tenant`
apiVersion `capsule.clastix.io/v1beta1`:
- `Tenant`
apiVersion `capsule.clastix.io/v1beta2`:
- `CapsuleConfiguration`
- `Tenant`
## ceph_rook_io
apiVersion `ceph.rook.io/v1`:
- `CephBlockPoolRadosNamespace`
- `CephBlockPool`
- `CephBucketNotification`
- `CephBucketTopic`
- `CephClient`
- `CephCOSIDriver`
- `CephFilesystemMirror`
- `CephFilesystem`
- `CephFilesystemSubVolumeGroup`
- `CephNFS`
- `CephObjectRealm`
- `CephObjectStore`
- `CephObjectStoreUser`
- `CephObjectZoneGroup`
- `CephObjectZone`
- `CephRBDMirror`
## cert_manager_io
apiVersion `cert-manager.io/v1`:
- `CertificateRequest`
- `Certificate`
- `ClusterIssuer`
- `Issuer`
## chaos_mesh_org
apiVersion `chaos-mesh.org/v1alpha1`:
- `AWSChaos`
- `AzureChaos`
- `BlockChaos`
- `DNSChaos`
- `GCPChaos`
- `HTTPChaos`
- `IOChaos`
- `JVMChaos`
- `KernelChaos`
- `NetworkChaos`
- `PhysicalMachineChaos`
- `PhysicalMachine`
- `PodChaos`
- `PodHttpChaos`
- `PodIOChaos`
- `PodNetworkChaos`
- `RemoteCluster`
- `Schedule`
- `StatusCheck`
- `StressChaos`
- `TimeChaos`
- `WorkflowNode`
- `Workflow`
## chaosblade_io
apiVersion `chaosblade.io/v1alpha1`:
- `ChaosBlade`
## charts_amd_com
apiVersion `charts.amd.com/v1alpha1`:
- `AMDGPU`
## charts_flagsmith_com
apiVersion `charts.flagsmith.com/v1alpha1`:
- `Flagsmith`
## charts_helm_k8s_io
apiVersion `charts.helm.k8s.io/v1alpha1`:
- `SnykMonitor`
## charts_opdev_io
apiVersion `charts.opdev.io/v1alpha1`:
- `Synapse`
## charts_operatorhub_io
apiVersion `charts.operatorhub.io/v1alpha1`:
- `Cockroachdb`
## che_eclipse_org
apiVersion `che.eclipse.org/v1alpha1`:
- `KubernetesImagePuller`
## chisel_operator_io
apiVersion `chisel-operator.io/v1`:
- `ExitNodeProvisioner`
- `ExitNode`
## cilium_io
apiVersion `cilium.io/v2`:
- `CiliumClusterwideNetworkPolicy`
- `CiliumEgressGatewayPolicy`
- `CiliumEndpoint`
- `CiliumExternalWorkload`
- `CiliumIdentity`
- `CiliumLocalRedirectPolicy`
- `CiliumNetworkPolicy`
- `CiliumNode`
apiVersion `cilium.io/v2alpha1`:
- `CiliumBGPPeeringPolicy`
- `CiliumCIDRGroup`
- `CiliumEndpointSlice`
- `CiliumL2AnnouncementPolicy`
- `CiliumLoadBalancerIPPool`
- `CiliumNodeConfig`
- `CiliumPodIPPool`
## claudie_io
apiVersion `claudie.io/v1beta1`:
- `InputManifest`
## cloud_network_openshift_io
apiVersion `cloud.network.openshift.io/v1`:
- `CloudPrivateIPConfig`
## cloudformation_linki_space
apiVersion `cloudformation.linki.space/v1alpha1`:
- `Stack`
## cloudfront_services_k8s_aws
apiVersion `cloudfront.services.k8s.aws/v1alpha1`:
- `CachePolicy`
- `Distribution`
- `Function`
- `OriginRequestPolicy`
- `ResponseHeadersPolicy`
## cloudtrail_services_k8s_aws
apiVersion `cloudtrail.services.k8s.aws/v1alpha1`:
- `EventDataStore`
- `Trail`
## cloudwatch_aws_amazon_com
apiVersion `cloudwatch.aws.amazon.com/v1alpha1`:
- `AmazonCloudWatchAgent`
- `Instrumentation`
## cloudwatch_services_k8s_aws
apiVersion `cloudwatch.services.k8s.aws/v1alpha1`:
- `MetricAlarm`
## cloudwatchlogs_services_k8s_aws
apiVersion `cloudwatchlogs.services.k8s.aws/v1alpha1`:
- `LogGroup`
## cluster_clusterpedia_io
apiVersion `cluster.clusterpedia.io/v1alpha2`:
- `ClusterSyncResources`
- `PediaCluster`
## cluster_ipfs_io
apiVersion `cluster.ipfs.io/v1alpha1`:
- `CircuitRelay`
- `IpfsCluster`
## cluster_x_k8s_io
apiVersion `cluster.x-k8s.io/v1alpha3`:
- `Cluster`
- `MachineDeployment`
- `MachineHealthCheck`
- `MachinePool`
- `Machine`
- `MachineSet`
apiVersion `cluster.x-k8s.io/v1alpha4`:
- `ClusterClass`
- `Cluster`
- `MachineDeployment`
- `MachineHealthCheck`
- `MachinePool`
- `Machine`
- `MachineSet`
apiVersion `cluster.x-k8s.io/v1beta1`:
- `ClusterClass`
- `Cluster`
- `MachineDeployment`
- `MachineHealthCheck`
- `MachinePool`
- `Machine`
- `MachineSet`
## clusters_clusternet_io
apiVersion `clusters.clusternet.io/v1beta1`:
- `ClusterRegistrationRequest`
- `ManagedCluster`
## clustertemplate_openshift_io
apiVersion `clustertemplate.openshift.io/v1alpha1`:
- `ClusterTemplateInstance`
- `ClusterTemplateQuota`
- `ClusterTemplate`
- `ClusterTemplateSetup`
- `Config`
## config_gatekeeper_sh
apiVersion `config.gatekeeper.sh/v1alpha1`:
- `Config`
## config_grafana_com
apiVersion `config.grafana.com/v1`:
- `ProjectConfig`
## config_karmada_io
apiVersion `config.karmada.io/v1alpha1`:
- `ResourceInterpreterCustomization`
- `ResourceInterpreterWebhookConfiguration`
## config_koordinator_sh
apiVersion `config.koordinator.sh/v1alpha1`:
- `ClusterColocationProfile`
## config_openshift_io
apiVersion `config.openshift.io/v1`:
- `APIServer`
- `Authentication`
- `Build`
- `ClusterOperator`
- `ClusterVersion`
- `Console`
- `DNS`
- `FeatureGate`
- `ImageContentPolicy`
- `ImageDigestMirrorSet`
- `Image`
- `ImageTagMirrorSet`
- `Infrastructure`
- `Ingress`
- `Network`
- `Node`
- `OAuth`
- `OperatorHub`
- `Project`
- `Proxy`
- `Scheduler`
## console_openshift_io
apiVersion `console.openshift.io/v1`:
- `ConsoleCLIDownload`
- `ConsoleExternalLogLink`
- `ConsoleLink`
- `ConsoleNotification`
- `ConsolePlugin`
- `ConsoleQuickStart`
- `ConsoleSample`
- `ConsoleYAMLSample`
apiVersion `console.openshift.io/v1alpha1`:
- `ConsolePlugin`
## controlplane_operator_openshift_io
apiVersion `controlplane.operator.openshift.io/v1alpha1`:
- `PodNetworkConnectivityCheck`
## core_kubeadmiral_io
apiVersion `core.kubeadmiral.io/v1alpha1`:
- `ClusterCollectedStatus`
- `ClusterFederatedObject`
- `ClusterOverridePolicy`
- `ClusterPropagatedVersion`
- `ClusterPropagationPolicy`
- `CollectedStatus`
- `FederatedCluster`
- `FederatedObject`
- `FederatedTypeConfig`
- `OverridePolicy`
- `PropagatedVersion`
- `PropagationPolicy`
- `SchedulerPluginWebhookConfiguration`
- `SchedulingProfile`
## core_linuxsuren_github_com
apiVersion `core.linuxsuren.github.com/v1alpha1`:
- `ATest`
## core_openfeature_dev
apiVersion `core.openfeature.dev/v1alpha1`:
- `FeatureFlagConfiguration`
apiVersion `core.openfeature.dev/v1alpha2`:
- `FeatureFlagConfiguration`
## couchbase_com
apiVersion `couchbase.com/v2`:
- `CouchbaseAutoscaler`
- `CouchbaseBackupRestore`
- `CouchbaseBackup`
- `CouchbaseBucket`
- `CouchbaseCluster`
- `CouchbaseCollectionGroup`
- `CouchbaseCollection`
- `CouchbaseEphemeralBucket`
- `CouchbaseGroup`
- `CouchbaseMemcachedBucket`
- `CouchbaseMigrationReplication`
- `CouchbaseReplication`
- `CouchbaseRoleBinding`
- `CouchbaseScopeGroup`
- `CouchbaseScope`
- `CouchbaseUser`
## craftypath_github_io
apiVersion `craftypath.github.io/v1alpha1`:
- `SopsSecret`
## crane_konveyor_io
apiVersion `crane.konveyor.io/v1alpha1`:
- `OperatorConfig`
## crd_projectcalico_org
apiVersion `crd.projectcalico.org/v1`:
- `BGPConfiguration`
- `BGPFilter`
- `BGPPeer`
- `BlockAffinity`
- `CalicoNodeStatus`
- `ClusterInformation`
- `GlobalNetworkSet`
- `HostEndpoint`
- `IPAMBlock`
- `IPAMConfig`
- `IPAMHandle`
- `IPPool`
- `IPReservation`
- `KubeControllersConfiguration`
- `NetworkSet`
## data_fluid_io
apiVersion `data.fluid.io/v1alpha1`:
- `AlluxioRuntime`
- `DataBackup`
- `DataLoad`
- `Dataset`
- `GooseFSRuntime`
- `JindoRuntime`
- `JuiceFSRuntime`
- `ThinRuntimeProfile`
- `ThinRuntime`
## databases_schemahero_io
apiVersion `databases.schemahero.io/v1alpha4`:
- `Database`
## databases_spotahome_com
apiVersion `databases.spotahome.com/v1`:
- `RedisFailover`
## datadoghq_com
apiVersion `datadoghq.com/v1alpha1`:
- `DatadogAgent`
- `DatadogMetric`
- `DatadogMonitor`
- `DatadogSLO`
apiVersion `datadoghq.com/v2alpha1`:
- `DatadogAgent`
## dataprotection_kubeblocks_io
apiVersion `dataprotection.kubeblocks.io/v1alpha1`:
- `ActionSet`
- `BackupPolicy`
- `BackupRepo`
- `Backup`
- `BackupSchedule`
- `Restore`
## designer_kaoto_io
apiVersion `designer.kaoto.io/v1alpha1`:
- `Kaoto`
## devices_kubeedge_io
apiVersion `devices.kubeedge.io/v1alpha2`:
- `DeviceModel`
- `Device`
## dex_coreos_com
apiVersion `dex.coreos.com/v1`:
- `AuthCode`
- `AuthRequest`
- `Connector`
- `DeviceRequest`
- `DeviceToken`
- `OAuth2Client`
- `OfflineSessions`
- `Password`
- `RefreshToken`
- `SigningKey`
## dex_gpu_ninja_com
apiVersion `dex.gpu-ninja.com/v1alpha1`:
- `DexIdentityProvider`
- `DexOAuth2Client`
- `DexUser`
## digitalis_io
apiVersion `digitalis.io/v1`:
- `ValsSecret`
apiVersion `digitalis.io/v1beta1`:
- `DbSecret`
## documentdb_services_k8s_aws
apiVersion `documentdb.services.k8s.aws/v1alpha1`:
- `DBCluster`
- `DBInstance`
- `DBSubnetGroup`
## druid_apache_org
apiVersion `druid.apache.org/v1alpha1`:
- `Druid`
## dynamodb_services_k8s_aws
apiVersion `dynamodb.services.k8s.aws/v1alpha1`:
- `Backup`
- `GlobalTable`
- `Table`
## ec2_services_k8s_aws
apiVersion `ec2.services.k8s.aws/v1alpha1`:
- `DHCPOptions`
- `ElasticIPAddress`
- `Instance`
- `InternetGateway`
- `NATGateway`
- `RouteTable`
- `SecurityGroup`
- `Subnet`
- `TransitGateway`
- `VPCEndpoint`
- `VPC`
## ecr_services_k8s_aws
apiVersion `ecr.services.k8s.aws/v1alpha1`:
- `PullThroughCacheRule`
- `Repository`
## efs_services_k8s_aws
apiVersion `efs.services.k8s.aws/v1alpha1`:
- `AccessPoint`
- `FileSystem`
- `MountTarget`
## eks_services_k8s_aws
apiVersion `eks.services.k8s.aws/v1alpha1`:
- `Addon`
- `Cluster`
- `FargateProfile`
- `Nodegroup`
## elasticache_services_k8s_aws
apiVersion `elasticache.services.k8s.aws/v1alpha1`:
- `CacheParameterGroup`
- `CacheSubnetGroup`
- `ReplicationGroup`
- `Snapshot`
- `UserGroup`
- `User`
## elasticsearch_k8s_elastic_co
apiVersion `elasticsearch.k8s.elastic.co/v1`:
- `Elasticsearch`
apiVersion `elasticsearch.k8s.elastic.co/v1beta1`:
- `Elasticsearch`
## elbv2_k8s_aws
apiVersion `elbv2.k8s.aws/v1alpha1`:
- `TargetGroupBinding`
apiVersion `elbv2.k8s.aws/v1beta1`:
- `IngressClassParams`
- `TargetGroupBinding`
## emrcontainers_services_k8s_aws
apiVersion `emrcontainers.services.k8s.aws/v1alpha1`:
- `JobRun`
- `VirtualCluster`
## ensembleoss_io
apiVersion `ensembleoss.io/v1`:
- `Cluster`
- `Resource`
## enterprisesearch_k8s_elastic_co
apiVersion `enterprisesearch.k8s.elastic.co/v1`:
- `EnterpriseSearch`
apiVersion `enterprisesearch.k8s.elastic.co/v1beta1`:
- `EnterpriseSearch`
## everest_percona_com
apiVersion `everest.percona.com/v1alpha1`:
- `BackupStorage`
- `DatabaseClusterBackup`
- `DatabaseClusterRestore`
- `DatabaseCluster`
- `MonitoringConfig`
## example_openshift_io
apiVersion `example.openshift.io/v1`:
- `StableConfigType`
## execution_furiko_io
apiVersion `execution.furiko.io/v1alpha1`:
- `JobConfig`
- `Job`
## executor_testkube_io
apiVersion `executor.testkube.io/v1`:
- `Executor`
- `Webhook`
## expansion_gatekeeper_sh
apiVersion `expansion.gatekeeper.sh/v1alpha1`:
- `ExpansionTemplate`
apiVersion `expansion.gatekeeper.sh/v1beta1`:
- `ExpansionTemplate`
## extensions_istio_io
apiVersion `extensions.istio.io/v1alpha1`:
- `WasmPlugin`
## extensions_kubeblocks_io
apiVersion `extensions.kubeblocks.io/v1alpha1`:
- `Addon`
## external_secrets_io
apiVersion `external-secrets.io/v1alpha1`:
- `ClusterSecretStore`
- `ExternalSecret`
- `SecretStore`
apiVersion `external-secrets.io/v1beta1`:
- `ClusterExternalSecret`
- `ClusterSecretStore`
- `ExternalSecret`
- `SecretStore`
## externaldata_gatekeeper_sh
apiVersion `externaldata.gatekeeper.sh/v1alpha1`:
- `Provider`
apiVersion `externaldata.gatekeeper.sh/v1beta1`:
- `Provider`
## externaldns_k8s_io
apiVersion `externaldns.k8s.io/v1alpha1`:
- `DNSEndpoint`
## externaldns_nginx_org
apiVersion `externaldns.nginx.org/v1`:
- `DNSEndpoint`
## flagger_app
apiVersion `flagger.app/v1beta1`:
- `AlertProvider`
- `Canary`
- `MetricTemplate`
## flink_apache_org
apiVersion `flink.apache.org/v1beta1`:
- `FlinkDeployment`
- `FlinkSessionJob`
## flow_volcano_sh
apiVersion `flow.volcano.sh/v1alpha1`:
- `JobFlow`
- `JobTemplate`
## flows_netobserv_io
apiVersion `flows.netobserv.io/v1alpha1`:
- `FlowCollector`
apiVersion `flows.netobserv.io/v1beta1`:
- `FlowCollector`
apiVersion `flows.netobserv.io/v1beta2`:
- `FlowCollector`
## fluentbit_fluent_io
apiVersion `fluentbit.fluent.io/v1alpha2`:
- `ClusterFilter`
- `ClusterFluentBitConfig`
- `ClusterInput`
- `ClusterOutput`
- `ClusterParser`
- `Collector`
- `Filter`
- `FluentBitConfig`
- `FluentBit`
- `Output`
- `Parser`
## fluentd_fluent_io
apiVersion `fluentd.fluent.io/v1alpha1`:
- `ClusterFilter`
- `ClusterFluentdConfig`
- `ClusterInput`
- `ClusterOutput`
- `Filter`
- `FluentdConfig`
- `Fluentd`
- `Input`
- `Output`
## flux_framework_org
apiVersion `flux-framework.org/v1alpha1`:
- `MiniCluster`
apiVersion `flux-framework.org/v1alpha2`:
- `MiniCluster`
## forklift_konveyor_io
apiVersion `forklift.konveyor.io/v1beta1`:
- `ForkliftController`
- `Hook`
- `Host`
- `Migration`
- `NetworkMap`
- `OpenstackVolumePopulator`
- `OvirtVolumePopulator`
- `Plan`
- `Provider`
- `StorageMap`
## fossul_io
apiVersion `fossul.io/v1`:
- `BackupConfig`
- `Backup`
- `BackupSchedule`
- `Fossul`
- `Restore`
## gateway_networking_k8s_io
apiVersion `gateway.networking.k8s.io/v1`:
- `GatewayClass`
- `Gateway`
- `HTTPRoute`
apiVersion `gateway.networking.k8s.io/v1alpha2`:
- `GRPCRoute`
- `ReferenceGrant`
- `TCPRoute`
- `TLSRoute`
- `UDPRoute`
apiVersion `gateway.networking.k8s.io/v1beta1`:
- `GatewayClass`
- `Gateway`
- `HTTPRoute`
- `ReferenceGrant`
## gateway_nginx_org
apiVersion `gateway.nginx.org/v1alpha1`:
- `NginxGateway`
## getambassador_io
apiVersion `getambassador.io/v3alpha1`:
- `AuthService`
- `ConsulResolver`
- `DevPortal`
- `Host`
- `KubernetesEndpointResolver`
- `KubernetesServiceResolver`
- `Listener`
- `LogService`
- `Module`
- `RateLimitService`
- `TCPMapping`
- `TLSContext`
- `TracingService`
## gitops_hybrid_cloud_patterns_io
apiVersion `gitops.hybrid-cloud-patterns.io/v1alpha1`:
- `Pattern`
## grafana_integreatly_org
apiVersion `grafana.integreatly.org/v1beta1`:
- `GrafanaDashboard`
- `GrafanaDatasource`
- `GrafanaFolder`
## groupsnapshot_storage_k8s_io
apiVersion `groupsnapshot.storage.k8s.io/v1alpha1`:
- `VolumeGroupSnapshotClass`
- `VolumeGroupSnapshotContent`
- `VolumeGroupSnapshot`
## hazelcast_com
apiVersion `hazelcast.com/v1alpha1`:
- `CronHotBackup`
- `Hazelcast`
- `HotBackup`
- `ManagementCenter`
- `Map`
- `WanReplication`
## helm_openshift_io
apiVersion `helm.openshift.io/v1beta1`:
- `HelmChartRepository`
- `ProjectHelmChartRepository`
## helm_sigstore_dev
apiVersion `helm.sigstore.dev/v1alpha1`:
- `Rekor`
## helm_toolkit_fluxcd_io
apiVersion `helm.toolkit.fluxcd.io/v2beta1`:
- `HelmRelease`
apiVersion `helm.toolkit.fluxcd.io/v2beta2`:
- `HelmRelease`
## hive_openshift_io
apiVersion `hive.openshift.io/v1`:
- `Checkpoint`
- `ClusterClaim`
- `ClusterDeploymentCustomization`
- `ClusterDeployment`
- `ClusterDeprovision`
- `ClusterImageSet`
- `ClusterPool`
- `ClusterProvision`
- `ClusterRelocate`
- `ClusterState`
- `DNSZone`
- `HiveConfig`
- `MachinePoolNameLease`
- `MachinePool`
- `SelectorSyncIdentityProvider`
- `SyncIdentityProvider`
## hiveinternal_openshift_io
apiVersion `hiveinternal.openshift.io/v1alpha1`:
- `ClusterSyncLease`
- `ClusterSync`
- `FakeClusterInstall`
## hnc_x_k8s_io
apiVersion `hnc.x-k8s.io/v1alpha2`:
- `HierarchicalResourceQuota`
- `HierarchyConfiguration`
- `HNCConfiguration`
- `SubnamespaceAnchor`
## hyperfoil_io
apiVersion `hyperfoil.io/v1alpha1`:
- `Horreum`
apiVersion `hyperfoil.io/v1alpha2`:
- `Hyperfoil`
## iam_services_k8s_aws
apiVersion `iam.services.k8s.aws/v1alpha1`:
- `Group`
- `InstanceProfile`
- `OpenIDConnectProvider`
- `Policy`
- `Role`
- `User`
## ibmcloud_ibm_com
apiVersion `ibmcloud.ibm.com/v1alpha1`:
- `Composable`
## image_toolkit_fluxcd_io
apiVersion `image.toolkit.fluxcd.io/v1beta1`:
- `ImageUpdateAutomation`
- `ImagePolicy`
- `ImageRepository`
apiVersion `image.toolkit.fluxcd.io/v1beta2`:
- `ImagePolicy`
- `ImageRepository`
## imageregistry_operator_openshift_io
apiVersion `imageregistry.operator.openshift.io/v1`:
- `Config`
- `ImagePruner`
## imaging_ingestion_alvearie_org
apiVersion `imaging-ingestion.alvearie.org/v1alpha1`:
- `DicomEventBridge`
- `DicomEventDrivenIngestion`
- `DicomInstanceBinding`
- `DicomStudyBinding`
- `DicomwebIngestionService`
- `DimseIngestionService`
- `DimseProxy`
## inference_kubedl_io
apiVersion `inference.kubedl.io/v1alpha1`:
- `ElasticBatchJob`
## infinispan_org
apiVersion `infinispan.org/v1`:
- `Infinispan`
apiVersion `infinispan.org/v2alpha1`:
- `Backup`
- `Batch`
- `Cache`
- `Restore`
## infra_contrib_fluxcd_io
apiVersion `infra.contrib.fluxcd.io/v1alpha1`:
- `Terraform`
apiVersion `infra.contrib.fluxcd.io/v1alpha2`:
- `Terraform`
## infrastructure_cluster_x_k8s_io
apiVersion `infrastructure.cluster.x-k8s.io/v1alpha1`:
- `KubevirtCluster`
- `KubevirtClusterTemplate`
- `KubevirtMachine`
- `KubevirtMachineTemplate`
apiVersion `infrastructure.cluster.x-k8s.io/v1alpha3`:
- `VSphereClusterIdentity`
- `VSphereCluster`
- `VSphereDeploymentZone`
- `VSphereFailureDomain`
- `VSphereMachine`
- `VSphereMachineTemplate`
- `VSphereVM`
apiVersion `infrastructure.cluster.x-k8s.io/v1alpha4`:
- `VSphereClusterIdentity`
- `VSphereCluster`
- `VSphereClusterTemplate`
- `VSphereDeploymentZone`
- `VSphereFailureDomain`
- `VSphereMachine`
- `VSphereMachineTemplate`
- `VSphereVM`
apiVersion `infrastructure.cluster.x-k8s.io/v1beta1`:
- `IBMPowerVSCluster`
- `IBMPowerVSClusterTemplate`
- `IBMPowerVSImage`
- `IBMPowerVSMachine`
- `IBMPowerVSMachineTemplate`
- `IBMVPCCluster`
- `IBMVPCMachine`
- `IBMVPCMachineTemplate`
- `VSphereClusterIdentity`
- `VSphereCluster`
- `VSphereClusterTemplate`
- `VSphereDeploymentZone`
- `VSphereFailureDomain`
- `VSphereMachine`
- `VSphereMachineTemplate`
- `VSphereVM`
- `TinkerbellCluster`
- `TinkerbellMachine`
- `TinkerbellMachineTemplate`
apiVersion `infrastructure.cluster.x-k8s.io/v1beta2`:
- `IBMPowerVSCluster`
- `IBMPowerVSClusterTemplate`
- `IBMPowerVSImage`
- `IBMPowerVSMachine`
- `IBMPowerVSMachineTemplate`
- `IBMVPCCluster`
- `IBMVPCMachine`
- `IBMVPCMachineTemplate`
## ingress_operator_openshift_io
apiVersion `ingress.operator.openshift.io/v1`:
- `DNSRecord`
## insights_openshift_io
apiVersion `insights.openshift.io/v1alpha1`:
- `DataGather`
## install_istio_io
apiVersion `install.istio.io/v1alpha1`:
- `IstioOperator`
## installation_mattermost_com
apiVersion `installation.mattermost.com/v1beta1`:
- `Mattermost`
## integration_rock8s_com
apiVersion `integration.rock8s.com/v1beta1`:
- `Plug`
- `Socket`
## iot_eclipse_org
apiVersion `iot.eclipse.org/v1alpha1`:
- `Ditto`
- `Hawkbit`
## ipam_cluster_x_k8s_io
apiVersion `ipam.cluster.x-k8s.io/v1alpha1`:
- `IPAddressClaim`
- `IPAddress`
apiVersion `ipam.cluster.x-k8s.io/v1beta1`:
- `IPAddressClaim`
- `IPAddress`
## isindir_github_com
apiVersion `isindir.github.com/v1alpha1`:
- `SopsSecret`
apiVersion `isindir.github.com/v1alpha2`:
- `SopsSecret`
apiVersion `isindir.github.com/v1alpha3`:
- `SopsSecret`
## jaegertracing_io
apiVersion `jaegertracing.io/v1`:
- `Jaeger`
## jobset_x_k8s_io
apiVersion `jobset.x-k8s.io/v1alpha2`:
- `JobSet`
## jobsmanager_raczylo_com
apiVersion `jobsmanager.raczylo.com/v1beta1`:
- `ManagedJob`
## k6_io
apiVersion `k6.io/v1alpha1`:
- `K6`
- `PrivateLoadZone`
- `TestRun`
## k8gb_absa_oss
apiVersion `k8gb.absa.oss/v1beta1`:
- `Gslb`
## k8s_keycloak_org
apiVersion `k8s.keycloak.org/v2alpha1`:
- `KeycloakRealmImport`
- `Keycloak`
## k8s_nginx_org
apiVersion `k8s.nginx.org/v1`:
- `GlobalConfiguration`
- `Policy`
- `TransportServer`
- `VirtualServerRoute`
- `VirtualServer`
apiVersion `k8s.nginx.org/v1alpha1`:
- `GlobalConfiguration`
- `Policy`
- `TransportServer`
## k8s_otterize_com
apiVersion `k8s.otterize.com/v1alpha2`:
- `ClientIntents`
- `KafkaServerConfig`
- `ProtectedService`
apiVersion `k8s.otterize.com/v1alpha3`:
- `ClientIntents`
- `KafkaServerConfig`
- `ProtectedService`
## k8up_io
apiVersion `k8up.io/v1`:
- `Archive`
- `Backup`
- `Check`
- `PreBackupPod`
- `Prune`
- `Restore`
- `Schedule`
- `Snapshot`
## kafka_services_k8s_aws
apiVersion `kafka.services.k8s.aws/v1alpha1`:
- `Cluster`
## kafka_strimzi_io
apiVersion `kafka.strimzi.io/v1alpha1`:
- `KafkaTopic`
- `KafkaUser`
apiVersion `kafka.strimzi.io/v1beta1`:
- `KafkaTopic`
- `KafkaUser`
apiVersion `kafka.strimzi.io/v1beta2`:
- `KafkaBridge`
- `KafkaConnector`
- `KafkaConnect`
- `KafkaMirrorMaker`
- `KafkaRebalance`
- `Kafka`
- `KafkaTopic`
- `KafkaUser`
## kamaji_clastix_io
apiVersion `kamaji.clastix.io/v1alpha1`:
- `DataStore`
- `TenantControlPlane`
## karpenter_k8s_aws
apiVersion `karpenter.k8s.aws/v1beta1`:
- `EC2NodeClass`
## karpenter_sh
apiVersion `karpenter.sh/v1beta1`:
- `NodeClaim`
- `NodePool`
## keda_sh
apiVersion `keda.sh/v1alpha1`:
- `ClusterTriggerAuthentication`
- `ScaledJob`
- `ScaledObject`
- `TriggerAuthentication`
## keycloak_k8s_reddec_net
apiVersion `keycloak.k8s.reddec.net/v1alpha1`:
- `KeycloakClient`
## keycloak_org
apiVersion `keycloak.org/v1alpha1`:
- `KeycloakBackup`
- `KeycloakClient`
- `KeycloakRealm`
- `Keycloak`
- `KeycloakUser`
## keyspaces_services_k8s_aws
apiVersion `keyspaces.services.k8s.aws/v1alpha1`:
- `Keyspace`
- `Table`
## kibana_k8s_elastic_co
apiVersion `kibana.k8s.elastic.co/v1`:
- `Kibana`
apiVersion `kibana.k8s.elastic.co/v1beta1`:
- `Kibana`
## kinesis_services_k8s_aws
apiVersion `kinesis.services.k8s.aws/v1alpha1`:
- `Stream`
## kms_services_k8s_aws
apiVersion `kms.services.k8s.aws/v1alpha1`:
- `Alias`
- `Grant`
- `Key`
## kuadrant_io
apiVersion `kuadrant.io/v1beta1`:
- `Kuadrant`
apiVersion `kuadrant.io/v1beta2`:
- `RateLimitPolicy`
## kube_green_com
apiVersion `kube-green.com/v1alpha1`:
- `SleepInfo`
## kubean_io
apiVersion `kubean.io/v1alpha1`:
- `ClusterOperation`
- `Cluster`
- `LocalArtifactSet`
- `Manifest`
## kubecost_com
apiVersion `kubecost.com/v1alpha1`:
- `TurndownSchedule`
## kubevious_io
apiVersion `kubevious.io/v1alpha1`:
- `WorkloadProfile`
- `Workload`
## kueue_x_k8s_io
apiVersion `kueue.x-k8s.io/v1beta1`:
- `AdmissionCheck`
- `ClusterQueue`
- `LocalQueue`
- `ResourceFlavor`
- `Workload`
## kuma_io
apiVersion `kuma.io/v1alpha1`:
- `CircuitBreaker`
- `ContainerPatch`
- `DataplaneInsight`
- `Dataplane`
- `ExternalService`
- `FaultInjection`
- `HealthCheck`
- `MeshAccessLog`
- `MeshCircuitBreaker`
- `Mesh`
- `MeshFaultInjection`
- `MeshGatewayConfig`
- `MeshGatewayInstance`
- `MeshGatewayRoute`
- `MeshGateway`
- `MeshHealthCheck`
- `MeshHTTPRoute`
- `MeshInsight`
- `MeshLoadBalancingStrategy`
- `MeshProxyPatch`
- `MeshRateLimit`
- `MeshRetry`
- `MeshTCPRoute`
- `MeshTimeout`
- `MeshTrace`
- `MeshTrafficPermission`
- `ProxyTemplate`
- `RateLimit`
- `Retry`
- `ServiceInsight`
- `Timeout`
- `TrafficLog`
- `TrafficPermission`
- `TrafficRoute`
- `TrafficTrace`
- `VirtualOutbound`
- `ZoneEgress`
- `ZoneEgressInsight`
- `ZoneIngress`
- `ZoneIngressInsight`
- `ZoneInsight`
- `Zone`
## kustomize_toolkit_fluxcd_io
apiVersion `kustomize.toolkit.fluxcd.io/v1`:
- `Kustomization`
apiVersion `kustomize.toolkit.fluxcd.io/v1beta1`:
- `Kustomization`
apiVersion `kustomize.toolkit.fluxcd.io/v1beta2`:
- `Kustomization`
## kyverno_io
apiVersion `kyverno.io/v1`:
- `ClusterPolicy`
- `Policy`
apiVersion `kyverno.io/v1alpha2`:
- `AdmissionReport`
- `BackgroundScanReport`
- `ClusterAdmissionReport`
- `ClusterBackgroundScanReport`
apiVersion `kyverno.io/v1beta1`:
- `UpdateRequest`
apiVersion `kyverno.io/v2`:
- `AdmissionReport`
- `BackgroundScanReport`
- `CleanupPolicy`
- `ClusterAdmissionReport`
- `ClusterBackgroundScanReport`
- `ClusterCleanupPolicy`
- `PolicyException`
- `UpdateRequest`
apiVersion `kyverno.io/v2alpha1`:
- `CleanupPolicy`
- `ClusterCleanupPolicy`
- `PolicyException`
apiVersion `kyverno.io/v2beta1`:
- `CleanupPolicy`
- `ClusterCleanupPolicy`
- `ClusterPolicy`
- `Policy`
- `PolicyException`
## lambda_services_k8s_aws
apiVersion `lambda.services.k8s.aws/v1alpha1`:
- `CodeSigningConfig`
- `EventSourceMapping`
- `Function`
- `FunctionURLConfig`
- `LayerVersion`
- `Version`
## lerentis_uploadfilter24_eu
apiVersion `lerentis.uploadfilter24.eu/v1beta4`:
- `BitwardenSecret`
- `BitwardenTemplate`
- `RegistryCredential`
apiVersion `lerentis.uploadfilter24.eu/v1beta5`:
- `BitwardenSecret`
- `BitwardenTemplate`
- `RegistryCredential`
## limitador_kuadrant_io
apiVersion `limitador.kuadrant.io/v1alpha1`:
- `Limitador`
## litmuschaos_io
apiVersion `litmuschaos.io/v1alpha1`:
- `ChaosEngine`
- `ChaosExperiment`
- `ChaosResult`
## logging_extensions_banzaicloud_io
apiVersion `logging-extensions.banzaicloud.io/v1alpha1`:
- `HostTailer`
## logging_banzaicloud_io
apiVersion `logging.banzaicloud.io/v1alpha1`:
- `ClusterFlow`
- `ClusterOutput`
- `Flow`
- `Logging`
- `Output`
apiVersion `logging.banzaicloud.io/v1beta1`:
- `ClusterFlow`
- `ClusterOutput`
- `Flow`
- `Output`
- `SyslogNGClusterFlow`
- `SyslogNGClusterOutput`
- `SyslogNGFlow`
- `SyslogNGOutput`
## loki_grafana_com
apiVersion `loki.grafana.com/v1`:
- `AlertingRule`
- `LokiStack`
- `RecordingRule`
- `RulerConfig`
apiVersion `loki.grafana.com/v1beta1`:
- `AlertingRule`
- `LokiStack`
- `RecordingRule`
- `RulerConfig`
## longhorn_io
apiVersion `longhorn.io/v1beta1`:
- `BackingImageDataSource`
- `BackingImageManager`
- `BackingImage`
- `Backup`
- `BackupTarget`
- `BackupVolume`
- `EngineImage`
- `Engine`
- `InstanceManager`
- `Node`
- `RecurringJob`
- `Replica`
- `Setting`
- `ShareManager`
- `Volume`
apiVersion `longhorn.io/v1beta2`:
- `BackingImageDataSource`
- `BackingImageManager`
- `BackingImage`
- `BackupBackingImage`
- `Backup`
- `BackupTarget`
- `BackupVolume`
- `EngineImage`
- `Engine`
- `InstanceManager`
- `Node`
- `Orphan`
- `RecurringJob`
- `Replica`
- `Setting`
- `ShareManager`
- `Snapshot`
- `SupportBundle`
- `SystemBackup`
- `SystemRestore`
- `VolumeAttachment`
- `Volume`
## m4e_krestomat_io
apiVersion `m4e.krestomat.io/v1alpha1`:
- `Moodle`
- `Nginx`
- `Phpfpm`
- `Routine`
## machine_openshift_io
apiVersion `machine.openshift.io/v1`:
- `ControlPlaneMachineSet`
apiVersion `machine.openshift.io/v1beta1`:
- `MachineHealthCheck`
- `Machine`
- `MachineSet`
## machineconfiguration_openshift_io
apiVersion `machineconfiguration.openshift.io/v1`:
- `ContainerRuntimeConfig`
- `ControllerConfig`
- `KubeletConfig`
- `MachineConfigPool`
- `MachineConfig`
apiVersion `machineconfiguration.openshift.io/v1alpha1`:
- `MachineConfigNode`
## maps_k8s_elastic_co
apiVersion `maps.k8s.elastic.co/v1alpha1`:
- `ElasticMapsServer`
## mariadb_mmontes_io
apiVersion `mariadb.mmontes.io/v1alpha1`:
- `Backup`
- `Connection`
- `Database`
- `Grant`
- `MariaDB`
- `Restore`
- `SqlJob`
- `User`
## mattermost_com
apiVersion `mattermost.com/v1alpha1`:
- `ClusterInstallation`
- `MattermostRestoreDB`
## memorydb_services_k8s_aws
apiVersion `memorydb.services.k8s.aws/v1alpha1`:
- `ACL`
- `Cluster`
- `ParameterGroup`
- `Snapshot`
- `SubnetGroup`
- `User`
## metacontroller_k8s_io
apiVersion `metacontroller.k8s.io/v1alpha1`:
- `CompositeController`
- `ControllerRevision`
- `DecoratorController`
## metal3_io
apiVersion `metal3.io/v1alpha1`:
- `BMCEventSubscription`
- `FirmwareSchema`
- `HardwareData`
- `HostFirmwareSettings`
- `PreprovisioningImage`
## microcks_github_io
apiVersion `microcks.github.io/v1alpha1`:
- `MicrocksInstall`
## minio_min_io
apiVersion `minio.min.io/v2`:
- `Tenant`
## mirrors_kts_studio
apiVersion `mirrors.kts.studio/v1alpha1`:
- `SecretMirror`
apiVersion `mirrors.kts.studio/v1alpha2`:
- `SecretMirror`
## model_kubedl_io
apiVersion `model.kubedl.io/v1alpha1`:
- `Model`
- `ModelVersion`
## monitoring_coreos_com
apiVersion `monitoring.coreos.com/v1`:
- `Alertmanager`
- `PodMonitor`
- `Probe`
- `Prometheus`
- `PrometheusRule`
- `ServiceMonitor`
- `ThanosRuler`
apiVersion `monitoring.coreos.com/v1alpha1`:
- `AlertmanagerConfig`
- `PrometheusAgent`
- `ScrapeConfig`
apiVersion `monitoring.coreos.com/v1beta1`:
- `AlertmanagerConfig`
## monitoring_openshift_io
apiVersion `monitoring.openshift.io/v1`:
- `AlertingRule`
- `AlertRelabelConfig`
## monocle_monocle_change_metrics_io
apiVersion `monocle.monocle.change-metrics.io/v1alpha1`:
- `Monocle`
## mq_services_k8s_aws
apiVersion `mq.services.k8s.aws/v1alpha1`:
- `Broker`
## multicluster_crd_antrea_io
apiVersion `multicluster.crd.antrea.io/v1alpha1`:
- `ClusterInfoImport`
- `ClusterSet`
- `Gateway`
- `LabelIdentity`
- `MemberClusterAnnounce`
- `MultiClusterConfig`
- `ResourceExport`
- `ResourceImport`
apiVersion `multicluster.crd.antrea.io/v1alpha2`:
- `ClusterClaim`
- `ClusterSet`
## multicluster_x_k8s_io
apiVersion `multicluster.x-k8s.io/v1alpha1`:
- `ServiceExport`
- `ServiceImport`
- `AppliedWork`
## mutations_gatekeeper_sh
apiVersion `mutations.gatekeeper.sh/v1`:
- `Assign`
- `AssignMetadata`
- `ModifySet`
apiVersion `mutations.gatekeeper.sh/v1alpha1`:
- `Assign`
- `AssignImage`
- `AssignMetadata`
- `ModifySet`
apiVersion `mutations.gatekeeper.sh/v1beta1`:
- `Assign`
- `AssignMetadata`
- `ModifySet`
## nativestor_alauda_io
apiVersion `nativestor.alauda.io/v1`:
- `RawDevice`
## netchecks_io
apiVersion `netchecks.io/v1`:
- `NetworkAssertion`
## network_openshift_io
apiVersion `network.openshift.io/v1`:
- `ClusterNetwork`
- `EgressNetworkPolicy`
- `HostSubnet`
- `NetNamespace`
## network_operator_openshift_io
apiVersion `network.operator.openshift.io/v1`:
- `EgressRouter`
## networkfirewall_services_k8s_aws
apiVersion `networkfirewall.services.k8s.aws/v1alpha1`:
- `FirewallPolicy`
- `Firewall`
- `RuleGroup`
## networking_gke_io
apiVersion `networking.gke.io/v1`:
- `ManagedCertificate`
## networking_istio_io
apiVersion `networking.istio.io/v1`:
- `DestinationRule`
- `Gateway`
- `ServiceEntry`
- `Sidecar`
- `VirtualService`
- `WorkloadEntry`
- `WorkloadGroup`
apiVersion `networking.istio.io/v1alpha3`:
- `DestinationRule`
- `EnvoyFilter`
- `Gateway`
- `ServiceEntry`
- `Sidecar`
- `VirtualService`
- `WorkloadEntry`
- `WorkloadGroup`
apiVersion `networking.istio.io/v1beta1`:
- `DestinationRule`
- `Gateway`
- `ProxyConfig`
- `ServiceEntry`
- `Sidecar`
- `VirtualService`
- `WorkloadEntry`
- `WorkloadGroup`
## networking_k8s_aws
apiVersion `networking.k8s.aws/v1alpha1`:
- `PolicyEndpoint`
## networking_karmada_io
apiVersion `networking.karmada.io/v1alpha1`:
- `MultiClusterIngress`
- `MultiClusterService`
## nfd_k8s_sigs_io
apiVersion `nfd.k8s-sigs.io/v1alpha1`:
- `NodeFeatureRule`
## nfd_kubernetes_io
apiVersion `nfd.kubernetes.io/v1`:
- `NodeFeatureDiscovery`
apiVersion `nfd.kubernetes.io/v1alpha1`:
- `NodeFeatureRule`
## nodeinfo_volcano_sh
apiVersion `nodeinfo.volcano.sh/v1alpha1`:
- `Numatopology`
## notebook_kubedl_io
apiVersion `notebook.kubedl.io/v1alpha1`:
- `Notebook`
## notification_toolkit_fluxcd_io
apiVersion `notification.toolkit.fluxcd.io/v1`:
- `Receiver`
apiVersion `notification.toolkit.fluxcd.io/v1beta1`:
- `Alert`
- `Provider`
- `Receiver`
apiVersion `notification.toolkit.fluxcd.io/v1beta2`:
- `Alert`
- `Provider`
- `Receiver`
apiVersion `notification.toolkit.fluxcd.io/v1beta3`:
- `Alert`
- `Provider`
## objectbucket_io
apiVersion `objectbucket.io/v1alpha1`:
- `ObjectBucketClaim`
- `ObjectBucket`
## onepassword_com
apiVersion `onepassword.com/v1`:
- `OnePasswordItem`
## opensearchservice_services_k8s_aws
apiVersion `opensearchservice.services.k8s.aws/v1alpha1`:
- `Domain`
## opentelemetry_io
apiVersion `opentelemetry.io/v1alpha1`:
- `Instrumentation`
- `OpAMPBridge`
- `OpenTelemetryCollector`
apiVersion `opentelemetry.io/v1beta1`:
- `OpenTelemetryCollector`
## operations_kubeedge_io
apiVersion `operations.kubeedge.io/v1alpha1`:
- `NodeUpgradeJob`
## operator_aquasec_com
apiVersion `operator.aquasec.com/v1alpha1`:
- `AquaCsp`
- `AquaDatabase`
- `AquaEnforcer`
- `AquaGateway`
- `AquaKubeEnforcer`
- `AquaScanner`
- `AquaServer`
## operator_authorino_kuadrant_io
apiVersion `operator.authorino.kuadrant.io/v1beta1`:
- `Authorino`
## operator_cluster_x_k8s_io
apiVersion `operator.cluster.x-k8s.io/v1alpha1`:
- `BootstrapProvider`
- `ControlPlaneProvider`
- `CoreProvider`
- `InfrastructureProvider`
apiVersion `operator.cluster.x-k8s.io/v1alpha2`:
- `AddonProvider`
- `BootstrapProvider`
- `ControlPlaneProvider`
- `CoreProvider`
- `InfrastructureProvider`
## operator_cryostat_io
apiVersion `operator.cryostat.io/v1beta1`:
- `Cryostat`
## operator_open_cluster_management_io
apiVersion `operator.open-cluster-management.io/v1`:
- `ClusterManager`
- `Klusterlet`
## operator_openshift_io
apiVersion `operator.openshift.io/v1`:
- `Authentication`
- `CloudCredential`
- `ClusterCSIDriver`
- `Config`
- `Console`
- `CSISnapshotController`
- `DNS`
- `Etcd`
- `IngressController`
- `InsightsOperator`
- `KubeAPIServer`
- `KubeControllerManager`
- `KubeScheduler`
- `KubeStorageVersionMigrator`
- `MachineConfiguration`
- `Network`
- `OpenShiftAPIServer`
- `OpenShiftControllerManager`
- `ServiceCA`
- `Storage`
## operator_shipwright_io
apiVersion `operator.shipwright.io/v1alpha1`:
- `ShipwrightBuild`
## operator_tekton_dev
apiVersion `operator.tekton.dev/v1alpha1`:
- `TektonChain`
- `TektonConfig`
- `TektonHub`
- `TektonInstallerSet`
- `TektonPipeline`
- `TektonTrigger`
## operator_tigera_io
apiVersion `operator.tigera.io/v1`:
- `AmazonCloudIntegration`
- `APIServer`
- `ApplicationLayer`
- `Authentication`
- `Compliance`
- `EgressGateway`
- `ImageSet`
- `Installation`
- `IntrusionDetection`
- `LogCollector`
- `LogStorage`
- `ManagementClusterConnection`
- `ManagementCluster`
- `Manager`
- `Monitor`
- `PolicyRecommendation`
- `Tenant`
- `TigeraStatus`
apiVersion `operator.tigera.io/v1beta1`:
- `AmazonCloudIntegration`
## operator_victoriametrics_com
apiVersion `operator.victoriametrics.com/v1beta1`:
- `VMAlertmanagerConfig`
- `VMNodeScrape`
- `VMPodScrape`
- `VMProbe`
- `VMRule`
- `VMServiceScrape`
- `VMStaticScrape`
- `VMUser`
## oracle_db_anthosapis_com
apiVersion `oracle.db.anthosapis.com/v1alpha1`:
- `Backup`
- `BackupSchedule`
- `Config`
- `CronAnything`
- `Database`
- `Export`
- `Import`
- `PITR`
- `Release`
## org_eclipse_che
apiVersion `org.eclipse.che/v1`:
- `CheCluster`
apiVersion `org.eclipse.che/v2`:
- `CheCluster`
## organizations_services_k8s_aws
apiVersion `organizations.services.k8s.aws/v1alpha1`:
- `OrganizationalUnit`
## pgv2_percona_com
apiVersion `pgv2.percona.com/v2`:
- `PerconaPGBackup`
- `PerconaPGCluster`
- `PerconaPGRestore`
## pipes_services_k8s_aws
apiVersion `pipes.services.k8s.aws/v1alpha1`:
- `Pipe`
## pkg_crossplane_io
apiVersion `pkg.crossplane.io/v1`:
- `ConfigurationRevision`
- `Configuration`
- `ProviderRevision`
- `Provider`
apiVersion `pkg.crossplane.io/v1alpha1`:
- `ControllerConfig`
apiVersion `pkg.crossplane.io/v1beta1`:
- `Lock`
## platform_openshift_io
apiVersion `platform.openshift.io/v1alpha1`:
- `PlatformOperator`
## policy_clusterpedia_io
apiVersion `policy.clusterpedia.io/v1alpha1`:
- `ClusterImportPolicy`
- `PediaClusterLifecycle`
## policy_karmada_io
apiVersion `policy.karmada.io/v1alpha1`:
- `ClusterOverridePolicy`
- `ClusterPropagationPolicy`
- `FederatedResourceQuota`
- `OverridePolicy`
- `PropagationPolicy`
## postgres_operator_crunchydata_com
apiVersion `postgres-operator.crunchydata.com/v1beta1`:
- `PGAdmin`
- `PGUpgrade`
- `PostgresCluster`
## postgresql_cnpg_io
apiVersion `postgresql.cnpg.io/v1`:
- `Backup`
- `Pooler`
- `ScheduledBackup`
## projectcontour_io
apiVersion `projectcontour.io/v1`:
- `HTTPProxy`
- `TLSCertificateDelegation`
apiVersion `projectcontour.io/v1alpha1`:
- `ContourConfiguration`
- `ContourDeployment`
- `ExtensionService`
## prometheusservice_services_k8s_aws
apiVersion `prometheusservice.services.k8s.aws/v1alpha1`:
- `AlertManagerDefinition`
- `LoggingConfiguration`
- `RuleGroupsNamespace`
- `Workspace`
## ps_percona_com
apiVersion `ps.percona.com/v1alpha1`:
- `PerconaServerMySQLBackup`
- `PerconaServerMySQLRestore`
- `PerconaServerMySQL`
## psmdb_percona_com
apiVersion `psmdb.percona.com/v1`:
- `PerconaServerMongoDBBackup`
- `PerconaServerMongoDBRestore`
## pxc_percona_com
apiVersion `pxc.percona.com/v1`:
- `PerconaXtraDBClusterBackup`
- `PerconaXtraDBClusterRestore`
- `PerconaXtraDBCluster`
## quay_redhat_com
apiVersion `quay.redhat.com/v1`:
- `QuayRegistry`
## quota_codeflare_dev
apiVersion `quota.codeflare.dev/v1alpha1`:
- `QuotaSubtree`
## quota_openshift_io
apiVersion `quota.openshift.io/v1`:
- `ClusterResourceQuota`
## ray_io
apiVersion `ray.io/v1`:
- `RayCluster`
- `RayJob`
- `RayService`
apiVersion `ray.io/v1alpha1`:
- `RayCluster`
- `RayJob`
- `RayService`
## rbacmanager_reactiveops_io
apiVersion `rbacmanager.reactiveops.io/v1beta1`:
- `RBACDefinition`
## rc_app_stacks
apiVersion `rc.app.stacks/v1`:
- `RuntimeComponent`
- `RuntimeOperation`
apiVersion `rc.app.stacks/v1beta2`:
- `RuntimeComponent`
- `RuntimeOperation`
## rds_services_k8s_aws
apiVersion `rds.services.k8s.aws/v1alpha1`:
- `DBClusterParameterGroup`
- `DBCluster`
- `DBInstance`
- `DBParameterGroup`
- `DBProxy`
- `DBSubnetGroup`
- `GlobalCluster`
## redhatcop_redhat_io
apiVersion `redhatcop.redhat.io/v1alpha1`:
- `KeepalivedGroup`
## registry_apicur_io
apiVersion `registry.apicur.io/v1`:
- `ApicurioRegistry`
## registry_devfile_io
apiVersion `registry.devfile.io/v1alpha1`:
- `ClusterDevfileRegistriesList`
- `DevfileRegistry`
- `DevfileRegistriesList`
## reliablesyncs_kubeedge_io
apiVersion `reliablesyncs.kubeedge.io/v1alpha1`:
- `ClusterObjectSync`
- `ObjectSync`
## repo_manager_pulpproject_org
apiVersion `repo-manager.pulpproject.org/v1beta2`:
- `PulpBackup`
- `PulpRestore`
- `Pulp`
## resources_teleport_dev
apiVersion `resources.teleport.dev/v1`:
- `TeleportLoginRule`
- `TeleportOktaImportRule`
apiVersion `resources.teleport.dev/v2`:
- `TeleportSAMLConnector`
- `TeleportUser`
apiVersion `resources.teleport.dev/v3`:
- `TeleportGithubConnector`
- `TeleportOIDCConnector`
## rocketmq_apache_org
apiVersion `rocketmq.apache.org/v1alpha1`:
- `Broker`
- `Console`
- `NameService`
- `TopicTransfer`
## route_openshift_io
apiVersion `route.openshift.io/v1`:
- `Route`
## route53_services_k8s_aws
apiVersion `route53.services.k8s.aws/v1alpha1`:
- `HostedZone`
- `RecordSet`
## route53resolver_services_k8s_aws
apiVersion `route53resolver.services.k8s.aws/v1alpha1`:
- `ResolverEndpoint`
- `ResolverRule`
## rules_kubeedge_io
apiVersion `rules.kubeedge.io/v1`:
- `RuleEndpoint`
- `Rule`
## runtime_cluster_x_k8s_io
apiVersion `runtime.cluster.x-k8s.io/v1alpha1`:
- `ExtensionConfig`
## s3_services_k8s_aws
apiVersion `s3.services.k8s.aws/v1alpha1`:
- `Bucket`
## sagemaker_services_k8s_aws
apiVersion `sagemaker.services.k8s.aws/v1alpha1`:
- `App`
- `DataQualityJobDefinition`
- `Domain`
- `EndpointConfig`
- `Endpoint`
- `FeatureGroup`
- `HyperParameterTuningJob`
- `ModelBiasJobDefinition`
- `ModelExplainabilityJobDefinition`
- `ModelPackageGroup`
- `ModelPackage`
- `ModelQualityJobDefinition`
- `Model`
- `MonitoringSchedule`
- `NotebookInstanceLifecycleConfig`
- `NotebookInstance`
- `ProcessingJob`
- `TrainingJob`
- `TransformJob`
- `UserProfile`
## samples_operator_openshift_io
apiVersion `samples.operator.openshift.io/v1`:
- `Config`
## scheduling_koordinator_sh
apiVersion `scheduling.koordinator.sh/v1alpha1`:
- `Device`
- `PodMigrationJob`
- `Reservation`
## scheduling_sigs_k8s_io
apiVersion `scheduling.sigs.k8s.io/v1alpha1`:
- `ElasticQuota`
- `PodGroup`
## scheduling_volcano_sh
apiVersion `scheduling.volcano.sh/v1beta1`:
- `PodGroup`
- `Queue`
## schemas_schemahero_io
apiVersion `schemas.schemahero.io/v1alpha4`:
- `DataType`
- `Migration`
- `Table`
## scylla_scylladb_com
apiVersion `scylla.scylladb.com/v1`:
- `ScyllaCluster`
apiVersion `scylla.scylladb.com/v1alpha1`:
- `NodeConfig`
- `ScyllaOperatorConfig`
## secretgenerator_mittwald_de
apiVersion `secretgenerator.mittwald.de/v1alpha1`:
- `BasicAuth`
- `SSHKeyPair`
- `StringSecret`
## secrets_store_csi_x_k8s_io
apiVersion `secrets-store.csi.x-k8s.io/v1`:
- `SecretProviderClass`
- `SecretProviderClassPodStatus`
apiVersion `secrets-store.csi.x-k8s.io/v1alpha1`:
- `SecretProviderClass`
- `SecretProviderClassPodStatus`
## secrets_crossplane_io
apiVersion `secrets.crossplane.io/v1alpha1`:
- `StoreConfig`
## secrets_doppler_com
apiVersion `secrets.doppler.com/v1alpha1`:
- `DopplerSecret`
## secrets_hashicorp_com
apiVersion `secrets.hashicorp.com/v1beta1`:
- `HCPAuth`
- `HCPVaultSecretsApp`
- `VaultAuth`
- `VaultConnection`
- `VaultDynamicSecret`
- `VaultPKISecret`
- `VaultStaticSecret`
## secretsmanager_services_k8s_aws
apiVersion `secretsmanager.services.k8s.aws/v1alpha1`:
- `Secret`
## secscan_quay_redhat_com
apiVersion `secscan.quay.redhat.com/v1alpha1`:
- `ImageManifestVuln`
## security_profiles_operator_x_k8s_io
apiVersion `security-profiles-operator.x-k8s.io/v1alpha1`:
- `AppArmorProfile`
- `ProfileBinding`
- `ProfileRecording`
- `SecurityProfileNodeStatus`
- `SecurityProfilesOperatorDaemon`
apiVersion `security-profiles-operator.x-k8s.io/v1alpha2`:
- `RawSelinuxProfile`
apiVersion `security-profiles-operator.x-k8s.io/v1beta1`:
- `SeccompProfile`
## security_internal_openshift_io
apiVersion `security.internal.openshift.io/v1`:
- `RangeAllocation`
## security_istio_io
apiVersion `security.istio.io/v1`:
- `AuthorizationPolicy`
- `PeerAuthentication`
- `RequestAuthentication`
apiVersion `security.istio.io/v1beta1`:
- `AuthorizationPolicy`
- `PeerAuthentication`
- `RequestAuthentication`
## security_openshift_io
apiVersion `security.openshift.io/v1`:
- `SecurityContextConstraints`
## sematext_com
apiVersion `sematext.com/v1`:
- `SematextAgent`
## servicebinding_io
apiVersion `servicebinding.io/v1alpha3`:
- `ClusterWorkloadResourceMapping`
- `ServiceBinding`
apiVersion `servicebinding.io/v1beta1`:
- `ClusterWorkloadResourceMapping`
- `ServiceBinding`
## services_k8s_aws
apiVersion `services.k8s.aws/v1alpha1`:
- `AdoptedResource`
- `FieldExport`
## serving_kubedl_io
apiVersion `serving.kubedl.io/v1alpha1`:
- `Inference`
## sfn_services_k8s_aws
apiVersion `sfn.services.k8s.aws/v1alpha1`:
- `Activity`
- `StateMachine`
## sharedresource_openshift_io
apiVersion `sharedresource.openshift.io/v1alpha1`:
- `SharedConfigMap`
- `SharedSecret`
## site_superedge_io
apiVersion `site.superedge.io/v1alpha1`:
- `NodeGroup`
- `NodeUnit`
## slo_koordinator_sh
apiVersion `slo.koordinator.sh/v1alpha1`:
- `NodeMetric`
- `NodeSLO`
## sloth_slok_dev
apiVersion `sloth.slok.dev/v1`:
- `PrometheusServiceLevel`
## snapscheduler_backube
apiVersion `snapscheduler.backube/v1`:
- `SnapshotSchedule`
## snapshot_storage_k8s_io
apiVersion `snapshot.storage.k8s.io/v1`:
- `VolumeSnapshotClass`
- `VolumeSnapshotContent`
- `VolumeSnapshot`
apiVersion `snapshot.storage.k8s.io/v1beta1`:
- `VolumeSnapshotClass`
- `VolumeSnapshotContent`
- `VolumeSnapshot`
## sns_services_k8s_aws
apiVersion `sns.services.k8s.aws/v1alpha1`:
- `PlatformApplication`
- `PlatformEndpoint`
- `Subscription`
- `Topic`
## sonataflow_org
apiVersion `sonataflow.org/v1alpha08`:
- `SonataFlowBuild`
- `SonataFlowPlatform`
## source_toolkit_fluxcd_io
apiVersion `source.toolkit.fluxcd.io/v1`:
- `GitRepository`
apiVersion `source.toolkit.fluxcd.io/v1beta1`:
- `Bucket`
- `GitRepository`
- `HelmChart`
- `HelmRepository`
apiVersion `source.toolkit.fluxcd.io/v1beta2`:
- `Bucket`
- `GitRepository`
- `HelmChart`
- `HelmRepository`
- `OCIRepository`
## sparkoperator_k8s_io
apiVersion `sparkoperator.k8s.io/v1beta2`:
- `ScheduledSparkApplication`
- `SparkApplication`
## spv_no
apiVersion `spv.no/v1`:
- `AzureKeyVaultSecret`
apiVersion `spv.no/v1alpha1`:
- `AzureKeyVaultIdentity`
- `AzureKeyVaultSecret`
- `AzureManagedIdentity`
apiVersion `spv.no/v2alpha1`:
- `AzureKeyVaultSecret`
apiVersion `spv.no/v2beta1`:
- `AzureKeyVaultSecret`
## sqs_services_k8s_aws
apiVersion `sqs.services.k8s.aws/v1alpha1`:
- `Queue`
## status_gatekeeper_sh
apiVersion `status.gatekeeper.sh/v1beta1`:
- `ConstraintPodStatus`
- `ConstraintTemplatePodStatus`
- `ExpansionTemplatePodStatus`
- `MutatorPodStatus`
## storage_kubeblocks_io
apiVersion `storage.kubeblocks.io/v1alpha1`:
- `StorageProvider`
## sts_min_io
apiVersion `sts.min.io/v1alpha1`:
- `PolicyBinding`
## stunner_l7mp_io
apiVersion `stunner.l7mp.io/v1`:
- `Dataplane`
- `GatewayConfig`
- `StaticService`
- `UDPRoute`
apiVersion `stunner.l7mp.io/v1alpha1`:
- `Dataplane`
- `GatewayConfig`
- `StaticService`
## submariner_io
apiVersion `submariner.io/v1alpha1`:
- `Broker`
- `ServiceDiscovery`
- `Submariner`
## telemetry_istio_io
apiVersion `telemetry.istio.io/v1alpha1`:
- `Telemetry`
## templates_gatekeeper_sh
apiVersion `templates.gatekeeper.sh/v1`:
- `ConstraintTemplate`
apiVersion `templates.gatekeeper.sh/v1alpha1`:
- `ConstraintTemplate`
apiVersion `templates.gatekeeper.sh/v1beta1`:
- `ConstraintTemplate`
## tempo_grafana_com
apiVersion `tempo.grafana.com/v1alpha1`:
- `TempoMonolithic`
- `TempoStack`
## temporal_io
apiVersion `temporal.io/v1beta1`:
- `TemporalClusterClient`
- `TemporalNamespace`
- `TemporalWorkerProcess`
## tests_testkube_io
apiVersion `tests.testkube.io/v1`:
- `Script`
- `TestExecution`
- `Test`
- `TestSource`
- `TestSuiteExecution`
- `TestSuite`
- `TestTrigger`
apiVersion `tests.testkube.io/v2`:
- `Script`
- `Test`
- `TestSuite`
apiVersion `tests.testkube.io/v3`:
- `Test`
- `TestSuite`
## theketch_io
apiVersion `theketch.io/v1beta1`:
- `App`
- `Job`
## tinkerbell_org
apiVersion `tinkerbell.org/v1alpha1`:
- `Stack`
- `Hardware`
- `OSIE`
- `Template`
- `Workflow`
apiVersion `tinkerbell.org/v1alpha2`:
- `Hardware`
- `OSIE`
- `Template`
- `Workflow`
## topology_node_k8s_io
apiVersion `topology.node.k8s.io/v1alpha1`:
- `NodeResourceTopology`
## topolvm_cybozu_com
apiVersion `topolvm.cybozu.com/v1`:
- `LogicalVolume`
apiVersion `topolvm.cybozu.com/v2`:
- `TopolvmCluster`
## traefik_io
apiVersion `traefik.io/v1alpha1`:
- `IngressRoute`
- `IngressRouteTCP`
- `IngressRouteUDP`
- `MiddlewareTCP`
- `ServersTransport`
- `ServersTransportTCP`
- `TLSOption`
- `TLSStore`
- `TraefikService`
## training_kubedl_io
apiVersion `training.kubedl.io/v1alpha1`:
- `ElasticDLJob`
- `MarsJob`
- `MPIJob`
- `PyTorchJob`
- `TFJob`
- `XDLJob`
- `XGBoostJob`
## trident_netapp_io
apiVersion `trident.netapp.io/v1`:
- `TridentOrchestrator`
## trust_cert_manager_io
apiVersion `trust.cert-manager.io/v1alpha1`:
- `Bundle`
## upgrade_cattle_io
apiVersion `upgrade.cattle.io/v1`:
- `Plan`
## upgrade_managed_openshift_io
apiVersion `upgrade.managed.openshift.io/v1alpha1`:
- `UpgradeConfig`
## velero_io
apiVersion `velero.io/v1`:
- `BackupRepository`
- `Backup`
- `BackupStorageLocation`
- `DeleteBackupRequest`
- `DownloadRequest`
- `PodVolumeBackup`
- `PodVolumeRestore`
- `Schedule`
- `ServerStatusRequest`
- `VolumeSnapshotLocation`
apiVersion `velero.io/v2alpha1`:
- `DataDownload`
- `DataUpload`
## virt_virtink_smartx_com
apiVersion `virt.virtink.smartx.com/v1alpha1`:
- `VirtualMachineMigration`
- `VirtualMachine`
## volsync_backube
apiVersion `volsync.backube/v1alpha1`:
- `ReplicationDestination`
- `ReplicationSource`
## vpcresources_k8s_aws
apiVersion `vpcresources.k8s.aws/v1alpha1`:
- `CNINode`
apiVersion `vpcresources.k8s.aws/v1beta1`:
- `SecurityGroupPolicy`
## wgpolicyk8s_io
apiVersion `wgpolicyk8s.io/v1alpha1`:
- `ClusterPolicyReport`
- `PolicyReport`
apiVersion `wgpolicyk8s.io/v1alpha2`:
- `ClusterPolicyReport`
- `PolicyReport`
apiVersion `wgpolicyk8s.io/v1beta1`:
- `ClusterPolicyReport`
- `PolicyReport`
## wildfly_org
apiVersion `wildfly.org/v1alpha1`:
- `WildFlyServer`
## work_karmada_io
apiVersion `work.karmada.io/v1alpha1`:
- `ClusterResourceBinding`
- `ResourceBinding`
apiVersion `work.karmada.io/v1alpha2`:
- `ClusterResourceBinding`
- `ResourceBinding`
## workload_codeflare_dev
apiVersion `workload.codeflare.dev/v1beta1`:
- `AppWrapper`
- `SchedulingSpec`
## workloads_kubeblocks_io
apiVersion `workloads.kubeblocks.io/v1alpha1`:
- `ReplicatedStateMachine`
## zonecontrol_k8s_aws
apiVersion `zonecontrol.k8s.aws/v1`:
- `ZoneAwareUpdate`
- `ZoneDisruptionBudget`
## zookeeper_pravega_io
apiVersion `zookeeper.pravega.io/v1beta1`:
- `ZookeeperCluster`
*/
#[cfg(feature = "about_k8s_io")]
pub mod about_k8s_io;
#[cfg(feature = "acid_zalan_do")]
pub mod acid_zalan_do;
#[cfg(feature = "acme_cert_manager_io")]
pub mod acme_cert_manager_io;
#[cfg(feature = "acmpca_services_k8s_aws")]
pub mod acmpca_services_k8s_aws;
#[cfg(feature = "actions_github_com")]
pub mod actions_github_com;
#[cfg(feature = "actions_summerwind_dev")]
pub mod actions_summerwind_dev;
#[cfg(feature = "addons_cluster_x_k8s_io")]
pub mod addons_cluster_x_k8s_io;
#[cfg(feature = "agent_k8s_elastic_co")]
pub mod agent_k8s_elastic_co;
#[cfg(feature = "anywhere_eks_amazonaws_com")]
pub mod anywhere_eks_amazonaws_com;
#[cfg(feature = "api_clever_cloud_com")]
pub mod api_clever_cloud_com;
#[cfg(feature = "api_kubemod_io")]
pub mod api_kubemod_io;
#[cfg(feature = "apicodegen_apimatic_io")]
pub mod apicodegen_apimatic_io;
#[cfg(feature = "apiextensions_crossplane_io")]
pub mod apiextensions_crossplane_io;
#[cfg(feature = "apigatewayv2_services_k8s_aws")]
pub mod apigatewayv2_services_k8s_aws;
#[cfg(feature = "apisix_apache_org")]
pub mod apisix_apache_org;
#[cfg(feature = "apm_k8s_elastic_co")]
pub mod apm_k8s_elastic_co;
#[cfg(feature = "app_kiegroup_org")]
pub mod app_kiegroup_org;
#[cfg(feature = "app_lightbend_com")]
pub mod app_lightbend_com;
#[cfg(feature = "app_redislabs_com")]
pub mod app_redislabs_com;
#[cfg(feature = "app_terraform_io")]
pub mod app_terraform_io;
#[cfg(feature = "application_networking_k8s_aws")]
pub mod application_networking_k8s_aws;
#[cfg(feature = "applicationautoscaling_services_k8s_aws")]
pub mod applicationautoscaling_services_k8s_aws;
#[cfg(feature = "appmesh_k8s_aws")]
pub mod appmesh_k8s_aws;
#[cfg(feature = "appprotect_f5_com")]
pub mod appprotect_f5_com;
#[cfg(feature = "appprotectdos_f5_com")]
pub mod appprotectdos_f5_com;
#[cfg(feature = "apps_3scale_net")]
pub mod apps_3scale_net;
#[cfg(feature = "apps_clusternet_io")]
pub mod apps_clusternet_io;
#[cfg(feature = "apps_emqx_io")]
pub mod apps_emqx_io;
#[cfg(feature = "apps_gitlab_com")]
pub mod apps_gitlab_com;
#[cfg(feature = "apps_kubeblocks_io")]
pub mod apps_kubeblocks_io;
#[cfg(feature = "apps_kubedl_io")]
pub mod apps_kubedl_io;
#[cfg(feature = "apps_kubeedge_io")]
pub mod apps_kubeedge_io;
#[cfg(feature = "apps_m88i_io")]
pub mod apps_m88i_io;
#[cfg(feature = "apps_redhat_com")]
pub mod apps_redhat_com;
#[cfg(feature = "aquasecurity_github_io")]
pub mod aquasecurity_github_io;
#[cfg(feature = "argoproj_io")]
pub mod argoproj_io;
#[cfg(feature = "asdb_aerospike_com")]
pub mod asdb_aerospike_com;
#[cfg(feature = "atlasmap_io")]
pub mod atlasmap_io;
#[cfg(feature = "auth_ops42_org")]
pub mod auth_ops42_org;
#[cfg(feature = "authorization_openshift_io")]
pub mod authorization_openshift_io;
#[cfg(feature = "authzed_com")]
pub mod authzed_com;
#[cfg(feature = "autoscaling_k8s_io")]
pub mod autoscaling_k8s_io;
#[cfg(feature = "autoscaling_karmada_io")]
pub mod autoscaling_karmada_io;
#[cfg(feature = "awx_ansible_com")]
pub mod awx_ansible_com;
#[cfg(feature = "azure_microsoft_com")]
pub mod azure_microsoft_com;
#[cfg(feature = "b3scale_infra_run")]
pub mod b3scale_infra_run;
#[cfg(feature = "batch_volcano_sh")]
pub mod batch_volcano_sh;
#[cfg(feature = "beat_k8s_elastic_co")]
pub mod beat_k8s_elastic_co;
#[cfg(feature = "beegfs_csi_netapp_com")]
pub mod beegfs_csi_netapp_com;
#[cfg(feature = "binding_operators_coreos_com")]
pub mod binding_operators_coreos_com;
#[cfg(feature = "bitnami_com")]
pub mod bitnami_com;
#[cfg(feature = "bmc_tinkerbell_org")]
pub mod bmc_tinkerbell_org;
#[cfg(feature = "boskos_k8s_io")]
pub mod boskos_k8s_io;
#[cfg(feature = "bpfd_dev")]
pub mod bpfd_dev;
#[cfg(feature = "bus_volcano_sh")]
pub mod bus_volcano_sh;
#[cfg(feature = "cache_kubedl_io")]
pub mod cache_kubedl_io;
#[cfg(feature = "caching_ibm_com")]
pub mod caching_ibm_com;
#[cfg(feature = "camel_apache_org")]
pub mod camel_apache_org;
#[cfg(feature = "canaries_flanksource_com")]
pub mod canaries_flanksource_com;
#[cfg(feature = "capabilities_3scale_net")]
pub mod capabilities_3scale_net;
#[cfg(feature = "capsule_clastix_io")]
pub mod capsule_clastix_io;
#[cfg(feature = "ceph_rook_io")]
pub mod ceph_rook_io;
#[cfg(feature = "cert_manager_io")]
pub mod cert_manager_io;
#[cfg(feature = "chaos_mesh_org")]
pub mod chaos_mesh_org;
#[cfg(feature = "chaosblade_io")]
pub mod chaosblade_io;
#[cfg(feature = "charts_amd_com")]
pub mod charts_amd_com;
#[cfg(feature = "charts_flagsmith_com")]
pub mod charts_flagsmith_com;
#[cfg(feature = "charts_helm_k8s_io")]
pub mod charts_helm_k8s_io;
#[cfg(feature = "charts_opdev_io")]
pub mod charts_opdev_io;
#[cfg(feature = "charts_operatorhub_io")]
pub mod charts_operatorhub_io;
#[cfg(feature = "che_eclipse_org")]
pub mod che_eclipse_org;
#[cfg(feature = "chisel_operator_io")]
pub mod chisel_operator_io;
#[cfg(feature = "cilium_io")]
pub mod cilium_io;
#[cfg(feature = "claudie_io")]
pub mod claudie_io;
#[cfg(feature = "cloud_network_openshift_io")]
pub mod cloud_network_openshift_io;
#[cfg(feature = "cloudformation_linki_space")]
pub mod cloudformation_linki_space;
#[cfg(feature = "cloudfront_services_k8s_aws")]
pub mod cloudfront_services_k8s_aws;
#[cfg(feature = "cloudtrail_services_k8s_aws")]
pub mod cloudtrail_services_k8s_aws;
#[cfg(feature = "cloudwatch_aws_amazon_com")]
pub mod cloudwatch_aws_amazon_com;
#[cfg(feature = "cloudwatch_services_k8s_aws")]
pub mod cloudwatch_services_k8s_aws;
#[cfg(feature = "cloudwatchlogs_services_k8s_aws")]
pub mod cloudwatchlogs_services_k8s_aws;
#[cfg(feature = "cluster_clusterpedia_io")]
pub mod cluster_clusterpedia_io;
#[cfg(feature = "cluster_ipfs_io")]
pub mod cluster_ipfs_io;
#[cfg(feature = "cluster_x_k8s_io")]
pub mod cluster_x_k8s_io;
#[cfg(feature = "clusters_clusternet_io")]
pub mod clusters_clusternet_io;
#[cfg(feature = "clustertemplate_openshift_io")]
pub mod clustertemplate_openshift_io;
#[cfg(feature = "config_gatekeeper_sh")]
pub mod config_gatekeeper_sh;
#[cfg(feature = "config_grafana_com")]
pub mod config_grafana_com;
#[cfg(feature = "config_karmada_io")]
pub mod config_karmada_io;
#[cfg(feature = "config_koordinator_sh")]
pub mod config_koordinator_sh;
#[cfg(feature = "config_openshift_io")]
pub mod config_openshift_io;
#[cfg(feature = "console_openshift_io")]
pub mod console_openshift_io;
#[cfg(feature = "controlplane_operator_openshift_io")]
pub mod controlplane_operator_openshift_io;
#[cfg(feature = "core_kubeadmiral_io")]
pub mod core_kubeadmiral_io;
#[cfg(feature = "core_linuxsuren_github_com")]
pub mod core_linuxsuren_github_com;
#[cfg(feature = "core_openfeature_dev")]
pub mod core_openfeature_dev;
#[cfg(feature = "couchbase_com")]
pub mod couchbase_com;
#[cfg(feature = "craftypath_github_io")]
pub mod craftypath_github_io;
#[cfg(feature = "crane_konveyor_io")]
pub mod crane_konveyor_io;
#[cfg(feature = "crd_projectcalico_org")]
pub mod crd_projectcalico_org;
#[cfg(feature = "data_fluid_io")]
pub mod data_fluid_io;
#[cfg(feature = "databases_schemahero_io")]
pub mod databases_schemahero_io;
#[cfg(feature = "databases_spotahome_com")]
pub mod databases_spotahome_com;
#[cfg(feature = "datadoghq_com")]
pub mod datadoghq_com;
#[cfg(feature = "dataprotection_kubeblocks_io")]
pub mod dataprotection_kubeblocks_io;
#[cfg(feature = "designer_kaoto_io")]
pub mod designer_kaoto_io;
#[cfg(feature = "devices_kubeedge_io")]
pub mod devices_kubeedge_io;
#[cfg(feature = "dex_coreos_com")]
pub mod dex_coreos_com;
#[cfg(feature = "dex_gpu_ninja_com")]
pub mod dex_gpu_ninja_com;
#[cfg(feature = "digitalis_io")]
pub mod digitalis_io;
#[cfg(feature = "documentdb_services_k8s_aws")]
pub mod documentdb_services_k8s_aws;
#[cfg(feature = "druid_apache_org")]
pub mod druid_apache_org;
#[cfg(feature = "dynamodb_services_k8s_aws")]
pub mod dynamodb_services_k8s_aws;
#[cfg(feature = "ec2_services_k8s_aws")]
pub mod ec2_services_k8s_aws;
#[cfg(feature = "ecr_services_k8s_aws")]
pub mod ecr_services_k8s_aws;
#[cfg(feature = "efs_services_k8s_aws")]
pub mod efs_services_k8s_aws;
#[cfg(feature = "eks_services_k8s_aws")]
pub mod eks_services_k8s_aws;
#[cfg(feature = "elasticache_services_k8s_aws")]
pub mod elasticache_services_k8s_aws;
#[cfg(feature = "elasticsearch_k8s_elastic_co")]
pub mod elasticsearch_k8s_elastic_co;
#[cfg(feature = "elbv2_k8s_aws")]
pub mod elbv2_k8s_aws;
#[cfg(feature = "emrcontainers_services_k8s_aws")]
pub mod emrcontainers_services_k8s_aws;
#[cfg(feature = "ensembleoss_io")]
pub mod ensembleoss_io;
#[cfg(feature = "enterprisesearch_k8s_elastic_co")]
pub mod enterprisesearch_k8s_elastic_co;
#[cfg(feature = "everest_percona_com")]
pub mod everest_percona_com;
#[cfg(feature = "example_openshift_io")]
pub mod example_openshift_io;
#[cfg(feature = "execution_furiko_io")]
pub mod execution_furiko_io;
#[cfg(feature = "executor_testkube_io")]
pub mod executor_testkube_io;
#[cfg(feature = "expansion_gatekeeper_sh")]
pub mod expansion_gatekeeper_sh;
#[cfg(feature = "extensions_istio_io")]
pub mod extensions_istio_io;
#[cfg(feature = "extensions_kubeblocks_io")]
pub mod extensions_kubeblocks_io;
#[cfg(feature = "external_secrets_io")]
pub mod external_secrets_io;
#[cfg(feature = "externaldata_gatekeeper_sh")]
pub mod externaldata_gatekeeper_sh;
#[cfg(feature = "externaldns_k8s_io")]
pub mod externaldns_k8s_io;
#[cfg(feature = "externaldns_nginx_org")]
pub mod externaldns_nginx_org;
#[cfg(feature = "flagger_app")]
pub mod flagger_app;
#[cfg(feature = "flink_apache_org")]
pub mod flink_apache_org;
#[cfg(feature = "flow_volcano_sh")]
pub mod flow_volcano_sh;
#[cfg(feature = "flows_netobserv_io")]
pub mod flows_netobserv_io;
#[cfg(feature = "fluentbit_fluent_io")]
pub mod fluentbit_fluent_io;
#[cfg(feature = "fluentd_fluent_io")]
pub mod fluentd_fluent_io;
#[cfg(feature = "flux_framework_org")]
pub mod flux_framework_org;
#[cfg(feature = "forklift_konveyor_io")]
pub mod forklift_konveyor_io;
#[cfg(feature = "fossul_io")]
pub mod fossul_io;
#[cfg(feature = "gateway_networking_k8s_io")]
pub mod gateway_networking_k8s_io;
#[cfg(feature = "gateway_nginx_org")]
pub mod gateway_nginx_org;
#[cfg(feature = "getambassador_io")]
pub mod getambassador_io;
#[cfg(feature = "gitops_hybrid_cloud_patterns_io")]
pub mod gitops_hybrid_cloud_patterns_io;
#[cfg(feature = "grafana_integreatly_org")]
pub mod grafana_integreatly_org;
#[cfg(feature = "groupsnapshot_storage_k8s_io")]
pub mod groupsnapshot_storage_k8s_io;
#[cfg(feature = "hazelcast_com")]
pub mod hazelcast_com;
#[cfg(feature = "helm_openshift_io")]
pub mod helm_openshift_io;
#[cfg(feature = "helm_sigstore_dev")]
pub mod helm_sigstore_dev;
#[cfg(feature = "helm_toolkit_fluxcd_io")]
pub mod helm_toolkit_fluxcd_io;
#[cfg(feature = "hive_openshift_io")]
pub mod hive_openshift_io;
#[cfg(feature = "hiveinternal_openshift_io")]
pub mod hiveinternal_openshift_io;
#[cfg(feature = "hnc_x_k8s_io")]
pub mod hnc_x_k8s_io;
#[cfg(feature = "hyperfoil_io")]
pub mod hyperfoil_io;
#[cfg(feature = "iam_services_k8s_aws")]
pub mod iam_services_k8s_aws;
#[cfg(feature = "ibmcloud_ibm_com")]
pub mod ibmcloud_ibm_com;
#[cfg(feature = "image_toolkit_fluxcd_io")]
pub mod image_toolkit_fluxcd_io;
#[cfg(feature = "imageregistry_operator_openshift_io")]
pub mod imageregistry_operator_openshift_io;
#[cfg(feature = "imaging_ingestion_alvearie_org")]
pub mod imaging_ingestion_alvearie_org;
#[cfg(feature = "inference_kubedl_io")]
pub mod inference_kubedl_io;
#[cfg(feature = "infinispan_org")]
pub mod infinispan_org;
#[cfg(feature = "infra_contrib_fluxcd_io")]
pub mod infra_contrib_fluxcd_io;
#[cfg(feature = "infrastructure_cluster_x_k8s_io")]
pub mod infrastructure_cluster_x_k8s_io;
#[cfg(feature = "ingress_operator_openshift_io")]
pub mod ingress_operator_openshift_io;
#[cfg(feature = "insights_openshift_io")]
pub mod insights_openshift_io;
#[cfg(feature = "install_istio_io")]
pub mod install_istio_io;
#[cfg(feature = "installation_mattermost_com")]
pub mod installation_mattermost_com;
#[cfg(feature = "integration_rock8s_com")]
pub mod integration_rock8s_com;
#[cfg(feature = "iot_eclipse_org")]
pub mod iot_eclipse_org;
#[cfg(feature = "ipam_cluster_x_k8s_io")]
pub mod ipam_cluster_x_k8s_io;
#[cfg(feature = "isindir_github_com")]
pub mod isindir_github_com;
#[cfg(feature = "jaegertracing_io")]
pub mod jaegertracing_io;
#[cfg(feature = "jobset_x_k8s_io")]
pub mod jobset_x_k8s_io;
#[cfg(feature = "jobsmanager_raczylo_com")]
pub mod jobsmanager_raczylo_com;
#[cfg(feature = "k6_io")]
pub mod k6_io;
#[cfg(feature = "k8gb_absa_oss")]
pub mod k8gb_absa_oss;
#[cfg(feature = "k8s_keycloak_org")]
pub mod k8s_keycloak_org;
#[cfg(feature = "k8s_nginx_org")]
pub mod k8s_nginx_org;
#[cfg(feature = "k8s_otterize_com")]
pub mod k8s_otterize_com;
#[cfg(feature = "k8up_io")]
pub mod k8up_io;
#[cfg(feature = "kafka_services_k8s_aws")]
pub mod kafka_services_k8s_aws;
#[cfg(feature = "kafka_strimzi_io")]
pub mod kafka_strimzi_io;
#[cfg(feature = "kamaji_clastix_io")]
pub mod kamaji_clastix_io;
#[cfg(feature = "karpenter_k8s_aws")]
pub mod karpenter_k8s_aws;
#[cfg(feature = "karpenter_sh")]
pub mod karpenter_sh;
#[cfg(feature = "keda_sh")]
pub mod keda_sh;
#[cfg(feature = "keycloak_k8s_reddec_net")]
pub mod keycloak_k8s_reddec_net;
#[cfg(feature = "keycloak_org")]
pub mod keycloak_org;
#[cfg(feature = "keyspaces_services_k8s_aws")]
pub mod keyspaces_services_k8s_aws;
#[cfg(feature = "kibana_k8s_elastic_co")]
pub mod kibana_k8s_elastic_co;
#[cfg(feature = "kinesis_services_k8s_aws")]
pub mod kinesis_services_k8s_aws;
#[cfg(feature = "kms_services_k8s_aws")]
pub mod kms_services_k8s_aws;
#[cfg(feature = "kuadrant_io")]
pub mod kuadrant_io;
#[cfg(feature = "kube_green_com")]
pub mod kube_green_com;
#[cfg(feature = "kubean_io")]
pub mod kubean_io;
#[cfg(feature = "kubecost_com")]
pub mod kubecost_com;
#[cfg(feature = "kubevious_io")]
pub mod kubevious_io;
#[cfg(feature = "kueue_x_k8s_io")]
pub mod kueue_x_k8s_io;
#[cfg(feature = "kuma_io")]
pub mod kuma_io;
#[cfg(feature = "kustomize_toolkit_fluxcd_io")]
pub mod kustomize_toolkit_fluxcd_io;
#[cfg(feature = "kyverno_io")]
pub mod kyverno_io;
#[cfg(feature = "lambda_services_k8s_aws")]
pub mod lambda_services_k8s_aws;
#[cfg(feature = "lerentis_uploadfilter24_eu")]
pub mod lerentis_uploadfilter24_eu;
#[cfg(feature = "limitador_kuadrant_io")]
pub mod limitador_kuadrant_io;
#[cfg(feature = "litmuschaos_io")]
pub mod litmuschaos_io;
#[cfg(feature = "logging_extensions_banzaicloud_io")]
pub mod logging_extensions_banzaicloud_io;
#[cfg(feature = "logging_banzaicloud_io")]
pub mod logging_banzaicloud_io;
#[cfg(feature = "loki_grafana_com")]
pub mod loki_grafana_com;
#[cfg(feature = "longhorn_io")]
pub mod longhorn_io;
#[cfg(feature = "m4e_krestomat_io")]
pub mod m4e_krestomat_io;
#[cfg(feature = "machine_openshift_io")]
pub mod machine_openshift_io;
#[cfg(feature = "machineconfiguration_openshift_io")]
pub mod machineconfiguration_openshift_io;
#[cfg(feature = "maps_k8s_elastic_co")]
pub mod maps_k8s_elastic_co;
#[cfg(feature = "mariadb_mmontes_io")]
pub mod mariadb_mmontes_io;
#[cfg(feature = "mattermost_com")]
pub mod mattermost_com;
#[cfg(feature = "memorydb_services_k8s_aws")]
pub mod memorydb_services_k8s_aws;
#[cfg(feature = "metacontroller_k8s_io")]
pub mod metacontroller_k8s_io;
#[cfg(feature = "metal3_io")]
pub mod metal3_io;
#[cfg(feature = "microcks_github_io")]
pub mod microcks_github_io;
#[cfg(feature = "minio_min_io")]
pub mod minio_min_io;
#[cfg(feature = "mirrors_kts_studio")]
pub mod mirrors_kts_studio;
#[cfg(feature = "model_kubedl_io")]
pub mod model_kubedl_io;
#[cfg(feature = "monitoring_coreos_com")]
pub mod monitoring_coreos_com;
#[cfg(feature = "monitoring_openshift_io")]
pub mod monitoring_openshift_io;
#[cfg(feature = "monocle_monocle_change_metrics_io")]
pub mod monocle_monocle_change_metrics_io;
#[cfg(feature = "mq_services_k8s_aws")]
pub mod mq_services_k8s_aws;
#[cfg(feature = "multicluster_crd_antrea_io")]
pub mod multicluster_crd_antrea_io;
#[cfg(feature = "multicluster_x_k8s_io")]
pub mod multicluster_x_k8s_io;
#[cfg(feature = "mutations_gatekeeper_sh")]
pub mod mutations_gatekeeper_sh;
#[cfg(feature = "nativestor_alauda_io")]
pub mod nativestor_alauda_io;
#[cfg(feature = "netchecks_io")]
pub mod netchecks_io;
#[cfg(feature = "network_openshift_io")]
pub mod network_openshift_io;
#[cfg(feature = "network_operator_openshift_io")]
pub mod network_operator_openshift_io;
#[cfg(feature = "networkfirewall_services_k8s_aws")]
pub mod networkfirewall_services_k8s_aws;
#[cfg(feature = "networking_gke_io")]
pub mod networking_gke_io;
#[cfg(feature = "networking_istio_io")]
pub mod networking_istio_io;
#[cfg(feature = "networking_k8s_aws")]
pub mod networking_k8s_aws;
#[cfg(feature = "networking_karmada_io")]
pub mod networking_karmada_io;
#[cfg(feature = "nfd_k8s_sigs_io")]
pub mod nfd_k8s_sigs_io;
#[cfg(feature = "nfd_kubernetes_io")]
pub mod nfd_kubernetes_io;
#[cfg(feature = "nodeinfo_volcano_sh")]
pub mod nodeinfo_volcano_sh;
#[cfg(feature = "notebook_kubedl_io")]
pub mod notebook_kubedl_io;
#[cfg(feature = "notification_toolkit_fluxcd_io")]
pub mod notification_toolkit_fluxcd_io;
#[cfg(feature = "objectbucket_io")]
pub mod objectbucket_io;
#[cfg(feature = "onepassword_com")]
pub mod onepassword_com;
#[cfg(feature = "opensearchservice_services_k8s_aws")]
pub mod opensearchservice_services_k8s_aws;
#[cfg(feature = "opentelemetry_io")]
pub mod opentelemetry_io;
#[cfg(feature = "operations_kubeedge_io")]
pub mod operations_kubeedge_io;
#[cfg(feature = "operator_aquasec_com")]
pub mod operator_aquasec_com;
#[cfg(feature = "operator_authorino_kuadrant_io")]
pub mod operator_authorino_kuadrant_io;
#[cfg(feature = "operator_cluster_x_k8s_io")]
pub mod operator_cluster_x_k8s_io;
#[cfg(feature = "operator_cryostat_io")]
pub mod operator_cryostat_io;
#[cfg(feature = "operator_open_cluster_management_io")]
pub mod operator_open_cluster_management_io;
#[cfg(feature = "operator_openshift_io")]
pub mod operator_openshift_io;
#[cfg(feature = "operator_shipwright_io")]
pub mod operator_shipwright_io;
#[cfg(feature = "operator_tekton_dev")]
pub mod operator_tekton_dev;
#[cfg(feature = "operator_tigera_io")]
pub mod operator_tigera_io;
#[cfg(feature = "operator_victoriametrics_com")]
pub mod operator_victoriametrics_com;
#[cfg(feature = "oracle_db_anthosapis_com")]
pub mod oracle_db_anthosapis_com;
#[cfg(feature = "org_eclipse_che")]
pub mod org_eclipse_che;
#[cfg(feature = "organizations_services_k8s_aws")]
pub mod organizations_services_k8s_aws;
#[cfg(feature = "pgv2_percona_com")]
pub mod pgv2_percona_com;
#[cfg(feature = "pipes_services_k8s_aws")]
pub mod pipes_services_k8s_aws;
#[cfg(feature = "pkg_crossplane_io")]
pub mod pkg_crossplane_io;
#[cfg(feature = "platform_openshift_io")]
pub mod platform_openshift_io;
#[cfg(feature = "policy_clusterpedia_io")]
pub mod policy_clusterpedia_io;
#[cfg(feature = "policy_karmada_io")]
pub mod policy_karmada_io;
#[cfg(feature = "postgres_operator_crunchydata_com")]
pub mod postgres_operator_crunchydata_com;
#[cfg(feature = "postgresql_cnpg_io")]
pub mod postgresql_cnpg_io;
#[cfg(feature = "projectcontour_io")]
pub mod projectcontour_io;
#[cfg(feature = "prometheusservice_services_k8s_aws")]
pub mod prometheusservice_services_k8s_aws;
#[cfg(feature = "ps_percona_com")]
pub mod ps_percona_com;
#[cfg(feature = "psmdb_percona_com")]
pub mod psmdb_percona_com;
#[cfg(feature = "pxc_percona_com")]
pub mod pxc_percona_com;
#[cfg(feature = "quay_redhat_com")]
pub mod quay_redhat_com;
#[cfg(feature = "quota_codeflare_dev")]
pub mod quota_codeflare_dev;
#[cfg(feature = "quota_openshift_io")]
pub mod quota_openshift_io;
#[cfg(feature = "ray_io")]
pub mod ray_io;
#[cfg(feature = "rbacmanager_reactiveops_io")]
pub mod rbacmanager_reactiveops_io;
#[cfg(feature = "rc_app_stacks")]
pub mod rc_app_stacks;
#[cfg(feature = "rds_services_k8s_aws")]
pub mod rds_services_k8s_aws;
#[cfg(feature = "redhatcop_redhat_io")]
pub mod redhatcop_redhat_io;
#[cfg(feature = "registry_apicur_io")]
pub mod registry_apicur_io;
#[cfg(feature = "registry_devfile_io")]
pub mod registry_devfile_io;
#[cfg(feature = "reliablesyncs_kubeedge_io")]
pub mod reliablesyncs_kubeedge_io;
#[cfg(feature = "repo_manager_pulpproject_org")]
pub mod repo_manager_pulpproject_org;
#[cfg(feature = "resources_teleport_dev")]
pub mod resources_teleport_dev;
#[cfg(feature = "rocketmq_apache_org")]
pub mod rocketmq_apache_org;
#[cfg(feature = "route_openshift_io")]
pub mod route_openshift_io;
#[cfg(feature = "route53_services_k8s_aws")]
pub mod route53_services_k8s_aws;
#[cfg(feature = "route53resolver_services_k8s_aws")]
pub mod route53resolver_services_k8s_aws;
#[cfg(feature = "rules_kubeedge_io")]
pub mod rules_kubeedge_io;
#[cfg(feature = "runtime_cluster_x_k8s_io")]
pub mod runtime_cluster_x_k8s_io;
#[cfg(feature = "s3_services_k8s_aws")]
pub mod s3_services_k8s_aws;
#[cfg(feature = "sagemaker_services_k8s_aws")]
pub mod sagemaker_services_k8s_aws;
#[cfg(feature = "samples_operator_openshift_io")]
pub mod samples_operator_openshift_io;
#[cfg(feature = "scheduling_koordinator_sh")]
pub mod scheduling_koordinator_sh;
#[cfg(feature = "scheduling_sigs_k8s_io")]
pub mod scheduling_sigs_k8s_io;
#[cfg(feature = "scheduling_volcano_sh")]
pub mod scheduling_volcano_sh;
#[cfg(feature = "schemas_schemahero_io")]
pub mod schemas_schemahero_io;
#[cfg(feature = "scylla_scylladb_com")]
pub mod scylla_scylladb_com;
#[cfg(feature = "secretgenerator_mittwald_de")]
pub mod secretgenerator_mittwald_de;
#[cfg(feature = "secrets_store_csi_x_k8s_io")]
pub mod secrets_store_csi_x_k8s_io;
#[cfg(feature = "secrets_crossplane_io")]
pub mod secrets_crossplane_io;
#[cfg(feature = "secrets_doppler_com")]
pub mod secrets_doppler_com;
#[cfg(feature = "secrets_hashicorp_com")]
pub mod secrets_hashicorp_com;
#[cfg(feature = "secretsmanager_services_k8s_aws")]
pub mod secretsmanager_services_k8s_aws;
#[cfg(feature = "secscan_quay_redhat_com")]
pub mod secscan_quay_redhat_com;
#[cfg(feature = "security_profiles_operator_x_k8s_io")]
pub mod security_profiles_operator_x_k8s_io;
#[cfg(feature = "security_internal_openshift_io")]
pub mod security_internal_openshift_io;
#[cfg(feature = "security_istio_io")]
pub mod security_istio_io;
#[cfg(feature = "security_openshift_io")]
pub mod security_openshift_io;
#[cfg(feature = "sematext_com")]
pub mod sematext_com;
#[cfg(feature = "servicebinding_io")]
pub mod servicebinding_io;
#[cfg(feature = "services_k8s_aws")]
pub mod services_k8s_aws;
#[cfg(feature = "serving_kubedl_io")]
pub mod serving_kubedl_io;
#[cfg(feature = "sfn_services_k8s_aws")]
pub mod sfn_services_k8s_aws;
#[cfg(feature = "sharedresource_openshift_io")]
pub mod sharedresource_openshift_io;
#[cfg(feature = "site_superedge_io")]
pub mod site_superedge_io;
#[cfg(feature = "slo_koordinator_sh")]
pub mod slo_koordinator_sh;
#[cfg(feature = "sloth_slok_dev")]
pub mod sloth_slok_dev;
#[cfg(feature = "snapscheduler_backube")]
pub mod snapscheduler_backube;
#[cfg(feature = "snapshot_storage_k8s_io")]
pub mod snapshot_storage_k8s_io;
#[cfg(feature = "sns_services_k8s_aws")]
pub mod sns_services_k8s_aws;
#[cfg(feature = "sonataflow_org")]
pub mod sonataflow_org;
#[cfg(feature = "source_toolkit_fluxcd_io")]
pub mod source_toolkit_fluxcd_io;
#[cfg(feature = "sparkoperator_k8s_io")]
pub mod sparkoperator_k8s_io;
#[cfg(feature = "spv_no")]
pub mod spv_no;
#[cfg(feature = "sqs_services_k8s_aws")]
pub mod sqs_services_k8s_aws;
#[cfg(feature = "status_gatekeeper_sh")]
pub mod status_gatekeeper_sh;
#[cfg(feature = "storage_kubeblocks_io")]
pub mod storage_kubeblocks_io;
#[cfg(feature = "sts_min_io")]
pub mod sts_min_io;
#[cfg(feature = "stunner_l7mp_io")]
pub mod stunner_l7mp_io;
#[cfg(feature = "submariner_io")]
pub mod submariner_io;
#[cfg(feature = "telemetry_istio_io")]
pub mod telemetry_istio_io;
#[cfg(feature = "templates_gatekeeper_sh")]
pub mod templates_gatekeeper_sh;
#[cfg(feature = "tempo_grafana_com")]
pub mod tempo_grafana_com;
#[cfg(feature = "temporal_io")]
pub mod temporal_io;
#[cfg(feature = "tests_testkube_io")]
pub mod tests_testkube_io;
#[cfg(feature = "theketch_io")]
pub mod theketch_io;
#[cfg(feature = "tinkerbell_org")]
pub mod tinkerbell_org;
#[cfg(feature = "topology_node_k8s_io")]
pub mod topology_node_k8s_io;
#[cfg(feature = "topolvm_cybozu_com")]
pub mod topolvm_cybozu_com;
#[cfg(feature = "traefik_io")]
pub mod traefik_io;
#[cfg(feature = "training_kubedl_io")]
pub mod training_kubedl_io;
#[cfg(feature = "trident_netapp_io")]
pub mod trident_netapp_io;
#[cfg(feature = "trust_cert_manager_io")]
pub mod trust_cert_manager_io;
#[cfg(feature = "upgrade_cattle_io")]
pub mod upgrade_cattle_io;
#[cfg(feature = "upgrade_managed_openshift_io")]
pub mod upgrade_managed_openshift_io;
#[cfg(feature = "velero_io")]
pub mod velero_io;
#[cfg(feature = "virt_virtink_smartx_com")]
pub mod virt_virtink_smartx_com;
#[cfg(feature = "volsync_backube")]
pub mod volsync_backube;
#[cfg(feature = "vpcresources_k8s_aws")]
pub mod vpcresources_k8s_aws;
#[cfg(feature = "wgpolicyk8s_io")]
pub mod wgpolicyk8s_io;
#[cfg(feature = "wildfly_org")]
pub mod wildfly_org;
#[cfg(feature = "work_karmada_io")]
pub mod work_karmada_io;
#[cfg(feature = "workload_codeflare_dev")]
pub mod workload_codeflare_dev;
#[cfg(feature = "workloads_kubeblocks_io")]
pub mod workloads_kubeblocks_io;
#[cfg(feature = "zonecontrol_k8s_aws")]
pub mod zonecontrol_k8s_aws;
#[cfg(feature = "zookeeper_pravega_io")]
pub mod zookeeper_pravega_io;