diff --git a/Utilities/auto-update-index.py b/Utilities/auto-update-index.py index 32f3461e..7fc017df 100755 --- a/Utilities/auto-update-index.py +++ b/Utilities/auto-update-index.py @@ -62,15 +62,19 @@ def load_index_file(self, file: str): )) - def prune_removed_files(self, source_dir: str): + def prune_removed_files(self, crds_root_dir: str): nRemoved = 0 groupKeys = list(self.data.keys()) for key in groupKeys: group = self.data[key] - filePaths = [os.path.join(source_dir, entry.filename) for entry in group] + filePaths = [os.path.join(crds_root_dir, entry.filename) for entry in group] doKeep = [os.path.isfile(filePath) for filePath in filePaths] self.data[key] = [entry for entry, keep in zip(group, doKeep) if keep] nRemoved += len([1 for keep in doKeep if not keep]) + + if len(self.data[key]) == 0: + del self.data[key] + return nRemoved class SubResult_CrdCollection: @@ -79,22 +83,24 @@ def __init__(self, list: List[Crd], nSkipped: int): self.nSkipped = nSkipped self.nUpdated = len(list) -def strip_dot_slash(str: str) -> str: - return str.lstrip("./") +def strip_path_prefix(str: str, prefix: str) -> str: + if str.startswith(prefix): + str = str[len(prefix):] + return str def list_dirs_in_src_dir(src: str) -> List[str]: - entries = [strip_dot_slash(os.path.join(src, name)) for name in os.listdir(src)] + entries = [os.path.join(src, name) for name in os.listdir(src)] return [dir for dir in entries if os.path.isdir(dir)] -def CreateCrds(dir: str, org_data: YamlDataStructure) -> SubResult_CrdCollection: +def CreateCrds(dir: str, org_data: YamlDataStructure, crds_root_dir: str) -> SubResult_CrdCollection: print(f"Processing directory {dir}") - groupName = os.path.basename(dir) + groupName = strip_path_prefix(dir, crds_root_dir) listing = [os.path.join(dir, file) for file in os.listdir(dir)] org_data_group = org_data.data.get(groupName, []) - skip = [any(crd.filename == file for crd in org_data_group) for file in listing] + skip = [any(os.path.join(crds_root_dir, crd.filename) == file for crd in org_data_group) for file in listing] nSkipped = len([1 for s in skip if s]) listing = [file for file, skip in zip(listing, skip) if not skip] - crds = [CreateCrdEntry(groupName, file) for file in listing if os.path.isfile(file) and file.endswith(".json")] + crds = [CreateCrdEntry(groupName, file, crds_root_dir) for file in listing if os.path.isfile(file) and file.endswith(".json")] crds = [crd for crd in crds if crd != None] return SubResult_CrdCollection(crds, nSkipped) @@ -110,7 +116,7 @@ def SearchForKindInDescription(lowercaseKind: str, description: str) -> str: return lowercaseKind return description[offset:offset + len(lowercaseKind)] -def CreateCrdEntry(group: str, filepath: str): +def CreateCrdEntry(group: str, filepath: str, crds_root_dir: str): file_basename = os.path.basename(filepath) # file ends with .json. Strip this away @@ -130,28 +136,28 @@ def CreateCrdEntry(group: str, filepath: str): name=f"{name}_{version}", kind=kind, api_version=f"{group}/{version}", - filename=filepath + filename=strip_path_prefix(filepath, crds_root_dir) ) if __name__ == "__main__": parser = argparse.ArgumentParser(description="Generate an index.yaml file from CRDs in a source directory.") - parser.add_argument("source_directory", type=str, help="Path to the source directory containing CRDs.") - parser.add_argument("index_file", type=str, help="Path to index.yaml to edit.") + parser.add_argument("index_file", type=str, help="Path to index.yaml to edit. The script will use the base dir of index.yaml as root dir for CRDs.") args = parser.parse_args() - source = args.source_directory index_file = args.index_file + crds_root_dir = os.path.dirname(index_file) + os.sep + data = YamlDataStructure() if os.path.exists(index_file): data.load_index_file(index_file) - nRemoved = data.prune_removed_files(source) + nRemoved = data.prune_removed_files(crds_root_dir) - directories = list_dirs_in_src_dir(source) + directories = list_dirs_in_src_dir(crds_root_dir) crd_entries: List[Crd] = [] nSkipped = 0 with ProcessPoolExecutor() as executor: - future_dir_crds = {executor.submit(CreateCrds, dir, data): dir for dir in directories} + future_dir_crds = {executor.submit(CreateCrds, dir, data, crds_root_dir): dir for dir in directories} for future in future_dir_crds: try: partial_result = future.result() diff --git a/aadpodidentity.k8s.io/azureassignedidentity_v1.json b/crds/aadpodidentity.k8s.io/azureassignedidentity_v1.json similarity index 100% rename from aadpodidentity.k8s.io/azureassignedidentity_v1.json rename to crds/aadpodidentity.k8s.io/azureassignedidentity_v1.json diff --git a/aadpodidentity.k8s.io/azureidentity_v1.json b/crds/aadpodidentity.k8s.io/azureidentity_v1.json similarity index 100% rename from aadpodidentity.k8s.io/azureidentity_v1.json rename to crds/aadpodidentity.k8s.io/azureidentity_v1.json diff --git a/aadpodidentity.k8s.io/azureidentitybinding_v1.json b/crds/aadpodidentity.k8s.io/azureidentitybinding_v1.json similarity index 100% rename from aadpodidentity.k8s.io/azureidentitybinding_v1.json rename to crds/aadpodidentity.k8s.io/azureidentitybinding_v1.json diff --git a/aadpodidentity.k8s.io/azurepodidentityexception_v1.json b/crds/aadpodidentity.k8s.io/azurepodidentityexception_v1.json similarity index 100% rename from aadpodidentity.k8s.io/azurepodidentityexception_v1.json rename to crds/aadpodidentity.k8s.io/azurepodidentityexception_v1.json diff --git a/accesscontextmanager.cnrm.cloud.google.com/accesscontextmanageraccesslevel_v1beta1.json b/crds/accesscontextmanager.cnrm.cloud.google.com/accesscontextmanageraccesslevel_v1beta1.json similarity index 100% rename from accesscontextmanager.cnrm.cloud.google.com/accesscontextmanageraccesslevel_v1beta1.json rename to crds/accesscontextmanager.cnrm.cloud.google.com/accesscontextmanageraccesslevel_v1beta1.json diff --git a/accesscontextmanager.cnrm.cloud.google.com/accesscontextmanageraccesslevelcondition_v1alpha1.json b/crds/accesscontextmanager.cnrm.cloud.google.com/accesscontextmanageraccesslevelcondition_v1alpha1.json similarity index 100% rename from accesscontextmanager.cnrm.cloud.google.com/accesscontextmanageraccesslevelcondition_v1alpha1.json rename to crds/accesscontextmanager.cnrm.cloud.google.com/accesscontextmanageraccesslevelcondition_v1alpha1.json diff --git a/accesscontextmanager.cnrm.cloud.google.com/accesscontextmanageraccesspolicy_v1beta1.json b/crds/accesscontextmanager.cnrm.cloud.google.com/accesscontextmanageraccesspolicy_v1beta1.json similarity index 100% rename from accesscontextmanager.cnrm.cloud.google.com/accesscontextmanageraccesspolicy_v1beta1.json rename to crds/accesscontextmanager.cnrm.cloud.google.com/accesscontextmanageraccesspolicy_v1beta1.json diff --git a/accesscontextmanager.cnrm.cloud.google.com/accesscontextmanagergcpuseraccessbinding_v1alpha1.json b/crds/accesscontextmanager.cnrm.cloud.google.com/accesscontextmanagergcpuseraccessbinding_v1alpha1.json similarity index 100% rename from accesscontextmanager.cnrm.cloud.google.com/accesscontextmanagergcpuseraccessbinding_v1alpha1.json rename to crds/accesscontextmanager.cnrm.cloud.google.com/accesscontextmanagergcpuseraccessbinding_v1alpha1.json diff --git a/accesscontextmanager.cnrm.cloud.google.com/accesscontextmanagerserviceperimeter_v1beta1.json b/crds/accesscontextmanager.cnrm.cloud.google.com/accesscontextmanagerserviceperimeter_v1beta1.json similarity index 100% rename from accesscontextmanager.cnrm.cloud.google.com/accesscontextmanagerserviceperimeter_v1beta1.json rename to crds/accesscontextmanager.cnrm.cloud.google.com/accesscontextmanagerserviceperimeter_v1beta1.json diff --git a/accesscontextmanager.cnrm.cloud.google.com/accesscontextmanagerserviceperimeterresource_v1alpha1.json b/crds/accesscontextmanager.cnrm.cloud.google.com/accesscontextmanagerserviceperimeterresource_v1alpha1.json similarity index 100% rename from accesscontextmanager.cnrm.cloud.google.com/accesscontextmanagerserviceperimeterresource_v1alpha1.json rename to crds/accesscontextmanager.cnrm.cloud.google.com/accesscontextmanagerserviceperimeterresource_v1alpha1.json diff --git a/accesscontextmanager.cnrm.cloud.google.com/accesscontextmanagerserviceperimeterresource_v1beta1.json b/crds/accesscontextmanager.cnrm.cloud.google.com/accesscontextmanagerserviceperimeterresource_v1beta1.json similarity index 100% rename from accesscontextmanager.cnrm.cloud.google.com/accesscontextmanagerserviceperimeterresource_v1beta1.json rename to crds/accesscontextmanager.cnrm.cloud.google.com/accesscontextmanagerserviceperimeterresource_v1beta1.json diff --git a/acid.zalan.do/operatorconfiguration_v1.json b/crds/acid.zalan.do/operatorconfiguration_v1.json similarity index 100% rename from acid.zalan.do/operatorconfiguration_v1.json rename to crds/acid.zalan.do/operatorconfiguration_v1.json diff --git a/acid.zalan.do/postgresql_v1.json b/crds/acid.zalan.do/postgresql_v1.json similarity index 100% rename from acid.zalan.do/postgresql_v1.json rename to crds/acid.zalan.do/postgresql_v1.json diff --git a/acid.zalan.do/postgresteam_v1.json b/crds/acid.zalan.do/postgresteam_v1.json similarity index 100% rename from acid.zalan.do/postgresteam_v1.json rename to crds/acid.zalan.do/postgresteam_v1.json diff --git a/acm.services.k8s.aws/certificate_v1alpha1.json b/crds/acm.services.k8s.aws/certificate_v1alpha1.json similarity index 100% rename from acm.services.k8s.aws/certificate_v1alpha1.json rename to crds/acm.services.k8s.aws/certificate_v1alpha1.json diff --git a/acme.cert-manager.io/challenge_v1.json b/crds/acme.cert-manager.io/challenge_v1.json similarity index 100% rename from acme.cert-manager.io/challenge_v1.json rename to crds/acme.cert-manager.io/challenge_v1.json diff --git a/acme.cert-manager.io/order_v1.json b/crds/acme.cert-manager.io/order_v1.json similarity index 100% rename from acme.cert-manager.io/order_v1.json rename to crds/acme.cert-manager.io/order_v1.json diff --git a/actions.github.com/autoscalinglistener_v1alpha1.json b/crds/actions.github.com/autoscalinglistener_v1alpha1.json similarity index 100% rename from actions.github.com/autoscalinglistener_v1alpha1.json rename to crds/actions.github.com/autoscalinglistener_v1alpha1.json diff --git a/actions.github.com/autoscalingrunnerset_v1alpha1.json b/crds/actions.github.com/autoscalingrunnerset_v1alpha1.json similarity index 100% rename from actions.github.com/autoscalingrunnerset_v1alpha1.json rename to crds/actions.github.com/autoscalingrunnerset_v1alpha1.json diff --git a/actions.github.com/ephemeralrunner_v1alpha1.json b/crds/actions.github.com/ephemeralrunner_v1alpha1.json similarity index 100% rename from actions.github.com/ephemeralrunner_v1alpha1.json rename to crds/actions.github.com/ephemeralrunner_v1alpha1.json diff --git a/actions.github.com/ephemeralrunnerset_v1alpha1.json b/crds/actions.github.com/ephemeralrunnerset_v1alpha1.json similarity index 100% rename from actions.github.com/ephemeralrunnerset_v1alpha1.json rename to crds/actions.github.com/ephemeralrunnerset_v1alpha1.json diff --git a/actions.summerwind.dev/horizontalrunnerautoscaler_v1alpha1.json b/crds/actions.summerwind.dev/horizontalrunnerautoscaler_v1alpha1.json similarity index 100% rename from actions.summerwind.dev/horizontalrunnerautoscaler_v1alpha1.json rename to crds/actions.summerwind.dev/horizontalrunnerautoscaler_v1alpha1.json diff --git a/actions.summerwind.dev/runner_v1alpha1.json b/crds/actions.summerwind.dev/runner_v1alpha1.json similarity index 100% rename from actions.summerwind.dev/runner_v1alpha1.json rename to crds/actions.summerwind.dev/runner_v1alpha1.json diff --git a/actions.summerwind.dev/runnerdeployment_v1alpha1.json b/crds/actions.summerwind.dev/runnerdeployment_v1alpha1.json similarity index 100% rename from actions.summerwind.dev/runnerdeployment_v1alpha1.json rename to crds/actions.summerwind.dev/runnerdeployment_v1alpha1.json diff --git a/actions.summerwind.dev/runnerreplicaset_v1alpha1.json b/crds/actions.summerwind.dev/runnerreplicaset_v1alpha1.json similarity index 100% rename from actions.summerwind.dev/runnerreplicaset_v1alpha1.json rename to crds/actions.summerwind.dev/runnerreplicaset_v1alpha1.json diff --git a/actions.summerwind.dev/runnerset_v1alpha1.json b/crds/actions.summerwind.dev/runnerset_v1alpha1.json similarity index 100% rename from actions.summerwind.dev/runnerset_v1alpha1.json rename to crds/actions.summerwind.dev/runnerset_v1alpha1.json diff --git a/addons.cluster.x-k8s.io/clusterresourceset_v1alpha3.json b/crds/addons.cluster.x-k8s.io/clusterresourceset_v1alpha3.json similarity index 100% rename from addons.cluster.x-k8s.io/clusterresourceset_v1alpha3.json rename to crds/addons.cluster.x-k8s.io/clusterresourceset_v1alpha3.json diff --git a/addons.cluster.x-k8s.io/clusterresourceset_v1alpha4.json b/crds/addons.cluster.x-k8s.io/clusterresourceset_v1alpha4.json similarity index 100% rename from addons.cluster.x-k8s.io/clusterresourceset_v1alpha4.json rename to crds/addons.cluster.x-k8s.io/clusterresourceset_v1alpha4.json diff --git a/addons.cluster.x-k8s.io/clusterresourceset_v1beta1.json b/crds/addons.cluster.x-k8s.io/clusterresourceset_v1beta1.json similarity index 100% rename from addons.cluster.x-k8s.io/clusterresourceset_v1beta1.json rename to crds/addons.cluster.x-k8s.io/clusterresourceset_v1beta1.json diff --git a/addons.cluster.x-k8s.io/clusterresourcesetbinding_v1alpha3.json b/crds/addons.cluster.x-k8s.io/clusterresourcesetbinding_v1alpha3.json similarity index 100% rename from addons.cluster.x-k8s.io/clusterresourcesetbinding_v1alpha3.json rename to crds/addons.cluster.x-k8s.io/clusterresourcesetbinding_v1alpha3.json diff --git a/addons.cluster.x-k8s.io/clusterresourcesetbinding_v1alpha4.json b/crds/addons.cluster.x-k8s.io/clusterresourcesetbinding_v1alpha4.json similarity index 100% rename from addons.cluster.x-k8s.io/clusterresourcesetbinding_v1alpha4.json rename to crds/addons.cluster.x-k8s.io/clusterresourcesetbinding_v1alpha4.json diff --git a/addons.cluster.x-k8s.io/clusterresourcesetbinding_v1beta1.json b/crds/addons.cluster.x-k8s.io/clusterresourcesetbinding_v1beta1.json similarity index 100% rename from addons.cluster.x-k8s.io/clusterresourcesetbinding_v1beta1.json rename to crds/addons.cluster.x-k8s.io/clusterresourcesetbinding_v1beta1.json diff --git a/agent.k8s.elastic.co/agent_v1alpha1.json b/crds/agent.k8s.elastic.co/agent_v1alpha1.json similarity index 100% rename from agent.k8s.elastic.co/agent_v1alpha1.json rename to crds/agent.k8s.elastic.co/agent_v1alpha1.json diff --git a/aiven.io/cassandra_v1alpha1.json b/crds/aiven.io/cassandra_v1alpha1.json similarity index 100% rename from aiven.io/cassandra_v1alpha1.json rename to crds/aiven.io/cassandra_v1alpha1.json diff --git a/aiven.io/clickhouse_v1alpha1.json b/crds/aiven.io/clickhouse_v1alpha1.json similarity index 100% rename from aiven.io/clickhouse_v1alpha1.json rename to crds/aiven.io/clickhouse_v1alpha1.json diff --git a/aiven.io/clickhousedatabase_v1alpha1.json b/crds/aiven.io/clickhousedatabase_v1alpha1.json similarity index 100% rename from aiven.io/clickhousedatabase_v1alpha1.json rename to crds/aiven.io/clickhousedatabase_v1alpha1.json diff --git a/aiven.io/clickhousegrant_v1alpha1.json b/crds/aiven.io/clickhousegrant_v1alpha1.json similarity index 100% rename from aiven.io/clickhousegrant_v1alpha1.json rename to crds/aiven.io/clickhousegrant_v1alpha1.json diff --git a/aiven.io/clickhouserole_v1alpha1.json b/crds/aiven.io/clickhouserole_v1alpha1.json similarity index 100% rename from aiven.io/clickhouserole_v1alpha1.json rename to crds/aiven.io/clickhouserole_v1alpha1.json diff --git a/aiven.io/clickhouseuser_v1alpha1.json b/crds/aiven.io/clickhouseuser_v1alpha1.json similarity index 100% rename from aiven.io/clickhouseuser_v1alpha1.json rename to crds/aiven.io/clickhouseuser_v1alpha1.json diff --git a/aiven.io/connectionpool_v1alpha1.json b/crds/aiven.io/connectionpool_v1alpha1.json similarity index 100% rename from aiven.io/connectionpool_v1alpha1.json rename to crds/aiven.io/connectionpool_v1alpha1.json diff --git a/aiven.io/database_v1alpha1.json b/crds/aiven.io/database_v1alpha1.json similarity index 100% rename from aiven.io/database_v1alpha1.json rename to crds/aiven.io/database_v1alpha1.json diff --git a/aiven.io/kafka_v1alpha1.json b/crds/aiven.io/kafka_v1alpha1.json similarity index 100% rename from aiven.io/kafka_v1alpha1.json rename to crds/aiven.io/kafka_v1alpha1.json diff --git a/aiven.io/kafkaacl_v1alpha1.json b/crds/aiven.io/kafkaacl_v1alpha1.json similarity index 100% rename from aiven.io/kafkaacl_v1alpha1.json rename to crds/aiven.io/kafkaacl_v1alpha1.json diff --git a/aiven.io/kafkaconnect_v1alpha1.json b/crds/aiven.io/kafkaconnect_v1alpha1.json similarity index 100% rename from aiven.io/kafkaconnect_v1alpha1.json rename to crds/aiven.io/kafkaconnect_v1alpha1.json diff --git a/aiven.io/kafkaconnector_v1alpha1.json b/crds/aiven.io/kafkaconnector_v1alpha1.json similarity index 100% rename from aiven.io/kafkaconnector_v1alpha1.json rename to crds/aiven.io/kafkaconnector_v1alpha1.json diff --git a/aiven.io/kafkaschema_v1alpha1.json b/crds/aiven.io/kafkaschema_v1alpha1.json similarity index 100% rename from aiven.io/kafkaschema_v1alpha1.json rename to crds/aiven.io/kafkaschema_v1alpha1.json diff --git a/aiven.io/kafkaschemaregistryacl_v1alpha1.json b/crds/aiven.io/kafkaschemaregistryacl_v1alpha1.json similarity index 100% rename from aiven.io/kafkaschemaregistryacl_v1alpha1.json rename to crds/aiven.io/kafkaschemaregistryacl_v1alpha1.json diff --git a/aiven.io/kafkatopic_v1alpha1.json b/crds/aiven.io/kafkatopic_v1alpha1.json similarity index 100% rename from aiven.io/kafkatopic_v1alpha1.json rename to crds/aiven.io/kafkatopic_v1alpha1.json diff --git a/aiven.io/mysql_v1alpha1.json b/crds/aiven.io/mysql_v1alpha1.json similarity index 100% rename from aiven.io/mysql_v1alpha1.json rename to crds/aiven.io/mysql_v1alpha1.json diff --git a/aiven.io/opensearch_v1alpha1.json b/crds/aiven.io/opensearch_v1alpha1.json similarity index 100% rename from aiven.io/opensearch_v1alpha1.json rename to crds/aiven.io/opensearch_v1alpha1.json diff --git a/aiven.io/postgresql_v1alpha1.json b/crds/aiven.io/postgresql_v1alpha1.json similarity index 100% rename from aiven.io/postgresql_v1alpha1.json rename to crds/aiven.io/postgresql_v1alpha1.json diff --git a/aiven.io/project_v1alpha1.json b/crds/aiven.io/project_v1alpha1.json similarity index 100% rename from aiven.io/project_v1alpha1.json rename to crds/aiven.io/project_v1alpha1.json diff --git a/aiven.io/projectvpc_v1alpha1.json b/crds/aiven.io/projectvpc_v1alpha1.json similarity index 100% rename from aiven.io/projectvpc_v1alpha1.json rename to crds/aiven.io/projectvpc_v1alpha1.json diff --git a/aiven.io/redis_v1alpha1.json b/crds/aiven.io/redis_v1alpha1.json similarity index 100% rename from aiven.io/redis_v1alpha1.json rename to crds/aiven.io/redis_v1alpha1.json diff --git a/aiven.io/serviceintegration_v1alpha1.json b/crds/aiven.io/serviceintegration_v1alpha1.json similarity index 100% rename from aiven.io/serviceintegration_v1alpha1.json rename to crds/aiven.io/serviceintegration_v1alpha1.json diff --git a/aiven.io/serviceintegrationendpoint_v1alpha1.json b/crds/aiven.io/serviceintegrationendpoint_v1alpha1.json similarity index 100% rename from aiven.io/serviceintegrationendpoint_v1alpha1.json rename to crds/aiven.io/serviceintegrationendpoint_v1alpha1.json diff --git a/aiven.io/serviceuser_v1alpha1.json b/crds/aiven.io/serviceuser_v1alpha1.json similarity index 100% rename from aiven.io/serviceuser_v1alpha1.json rename to crds/aiven.io/serviceuser_v1alpha1.json diff --git a/alloydb.cnrm.cloud.google.com/alloydbbackup_v1alpha1.json b/crds/alloydb.cnrm.cloud.google.com/alloydbbackup_v1alpha1.json similarity index 100% rename from alloydb.cnrm.cloud.google.com/alloydbbackup_v1alpha1.json rename to crds/alloydb.cnrm.cloud.google.com/alloydbbackup_v1alpha1.json diff --git a/alloydb.cnrm.cloud.google.com/alloydbbackup_v1beta1.json b/crds/alloydb.cnrm.cloud.google.com/alloydbbackup_v1beta1.json similarity index 100% rename from alloydb.cnrm.cloud.google.com/alloydbbackup_v1beta1.json rename to crds/alloydb.cnrm.cloud.google.com/alloydbbackup_v1beta1.json diff --git a/alloydb.cnrm.cloud.google.com/alloydbcluster_v1alpha1.json b/crds/alloydb.cnrm.cloud.google.com/alloydbcluster_v1alpha1.json similarity index 100% rename from alloydb.cnrm.cloud.google.com/alloydbcluster_v1alpha1.json rename to crds/alloydb.cnrm.cloud.google.com/alloydbcluster_v1alpha1.json diff --git a/alloydb.cnrm.cloud.google.com/alloydbcluster_v1beta1.json b/crds/alloydb.cnrm.cloud.google.com/alloydbcluster_v1beta1.json similarity index 100% rename from alloydb.cnrm.cloud.google.com/alloydbcluster_v1beta1.json rename to crds/alloydb.cnrm.cloud.google.com/alloydbcluster_v1beta1.json diff --git a/alloydb.cnrm.cloud.google.com/alloydbinstance_v1alpha1.json b/crds/alloydb.cnrm.cloud.google.com/alloydbinstance_v1alpha1.json similarity index 100% rename from alloydb.cnrm.cloud.google.com/alloydbinstance_v1alpha1.json rename to crds/alloydb.cnrm.cloud.google.com/alloydbinstance_v1alpha1.json diff --git a/alloydb.cnrm.cloud.google.com/alloydbinstance_v1beta1.json b/crds/alloydb.cnrm.cloud.google.com/alloydbinstance_v1beta1.json similarity index 100% rename from alloydb.cnrm.cloud.google.com/alloydbinstance_v1beta1.json rename to crds/alloydb.cnrm.cloud.google.com/alloydbinstance_v1beta1.json diff --git a/alloydb.cnrm.cloud.google.com/alloydbuser_v1beta1.json b/crds/alloydb.cnrm.cloud.google.com/alloydbuser_v1beta1.json similarity index 100% rename from alloydb.cnrm.cloud.google.com/alloydbuser_v1beta1.json rename to crds/alloydb.cnrm.cloud.google.com/alloydbuser_v1beta1.json diff --git a/anywhere.eks.amazonaws.com/awsdatacenterconfig_v1alpha1.json b/crds/anywhere.eks.amazonaws.com/awsdatacenterconfig_v1alpha1.json similarity index 100% rename from anywhere.eks.amazonaws.com/awsdatacenterconfig_v1alpha1.json rename to crds/anywhere.eks.amazonaws.com/awsdatacenterconfig_v1alpha1.json diff --git a/anywhere.eks.amazonaws.com/awsiamconfig_v1alpha1.json b/crds/anywhere.eks.amazonaws.com/awsiamconfig_v1alpha1.json similarity index 100% rename from anywhere.eks.amazonaws.com/awsiamconfig_v1alpha1.json rename to crds/anywhere.eks.amazonaws.com/awsiamconfig_v1alpha1.json diff --git a/anywhere.eks.amazonaws.com/bundles_v1alpha1.json b/crds/anywhere.eks.amazonaws.com/bundles_v1alpha1.json similarity index 100% rename from anywhere.eks.amazonaws.com/bundles_v1alpha1.json rename to crds/anywhere.eks.amazonaws.com/bundles_v1alpha1.json diff --git a/anywhere.eks.amazonaws.com/cloudstackdatacenterconfig_v1alpha1.json b/crds/anywhere.eks.amazonaws.com/cloudstackdatacenterconfig_v1alpha1.json similarity index 100% rename from anywhere.eks.amazonaws.com/cloudstackdatacenterconfig_v1alpha1.json rename to crds/anywhere.eks.amazonaws.com/cloudstackdatacenterconfig_v1alpha1.json diff --git a/anywhere.eks.amazonaws.com/cloudstackmachineconfig_v1alpha1.json b/crds/anywhere.eks.amazonaws.com/cloudstackmachineconfig_v1alpha1.json similarity index 100% rename from anywhere.eks.amazonaws.com/cloudstackmachineconfig_v1alpha1.json rename to crds/anywhere.eks.amazonaws.com/cloudstackmachineconfig_v1alpha1.json diff --git a/anywhere.eks.amazonaws.com/cluster_v1alpha1.json b/crds/anywhere.eks.amazonaws.com/cluster_v1alpha1.json similarity index 100% rename from anywhere.eks.amazonaws.com/cluster_v1alpha1.json rename to crds/anywhere.eks.amazonaws.com/cluster_v1alpha1.json diff --git a/anywhere.eks.amazonaws.com/cluster_v1alpha3.json b/crds/anywhere.eks.amazonaws.com/cluster_v1alpha3.json similarity index 100% rename from anywhere.eks.amazonaws.com/cluster_v1alpha3.json rename to crds/anywhere.eks.amazonaws.com/cluster_v1alpha3.json diff --git a/anywhere.eks.amazonaws.com/cluster_v1alpha4.json b/crds/anywhere.eks.amazonaws.com/cluster_v1alpha4.json similarity index 100% rename from anywhere.eks.amazonaws.com/cluster_v1alpha4.json rename to crds/anywhere.eks.amazonaws.com/cluster_v1alpha4.json diff --git a/anywhere.eks.amazonaws.com/cluster_v1beta1.json b/crds/anywhere.eks.amazonaws.com/cluster_v1beta1.json similarity index 100% rename from anywhere.eks.amazonaws.com/cluster_v1beta1.json rename to crds/anywhere.eks.amazonaws.com/cluster_v1beta1.json diff --git a/anywhere.eks.amazonaws.com/clusterclass_v1alpha4.json b/crds/anywhere.eks.amazonaws.com/clusterclass_v1alpha4.json similarity index 100% rename from anywhere.eks.amazonaws.com/clusterclass_v1alpha4.json rename to crds/anywhere.eks.amazonaws.com/clusterclass_v1alpha4.json diff --git a/anywhere.eks.amazonaws.com/clusterclass_v1beta1.json b/crds/anywhere.eks.amazonaws.com/clusterclass_v1beta1.json similarity index 100% rename from anywhere.eks.amazonaws.com/clusterclass_v1beta1.json rename to crds/anywhere.eks.amazonaws.com/clusterclass_v1beta1.json diff --git a/anywhere.eks.amazonaws.com/clusterissuer_v1.json b/crds/anywhere.eks.amazonaws.com/clusterissuer_v1.json similarity index 100% rename from anywhere.eks.amazonaws.com/clusterissuer_v1.json rename to crds/anywhere.eks.amazonaws.com/clusterissuer_v1.json diff --git a/anywhere.eks.amazonaws.com/clusterresourceset_v1alpha3.json b/crds/anywhere.eks.amazonaws.com/clusterresourceset_v1alpha3.json similarity index 100% rename from anywhere.eks.amazonaws.com/clusterresourceset_v1alpha3.json rename to crds/anywhere.eks.amazonaws.com/clusterresourceset_v1alpha3.json diff --git a/anywhere.eks.amazonaws.com/clusterresourceset_v1alpha4.json b/crds/anywhere.eks.amazonaws.com/clusterresourceset_v1alpha4.json similarity index 100% rename from anywhere.eks.amazonaws.com/clusterresourceset_v1alpha4.json rename to crds/anywhere.eks.amazonaws.com/clusterresourceset_v1alpha4.json diff --git a/anywhere.eks.amazonaws.com/clusterresourceset_v1beta1.json b/crds/anywhere.eks.amazonaws.com/clusterresourceset_v1beta1.json similarity index 100% rename from anywhere.eks.amazonaws.com/clusterresourceset_v1beta1.json rename to crds/anywhere.eks.amazonaws.com/clusterresourceset_v1beta1.json diff --git a/anywhere.eks.amazonaws.com/clusterresourcesetbinding_v1alpha3.json b/crds/anywhere.eks.amazonaws.com/clusterresourcesetbinding_v1alpha3.json similarity index 100% rename from anywhere.eks.amazonaws.com/clusterresourcesetbinding_v1alpha3.json rename to crds/anywhere.eks.amazonaws.com/clusterresourcesetbinding_v1alpha3.json diff --git a/anywhere.eks.amazonaws.com/clusterresourcesetbinding_v1alpha4.json b/crds/anywhere.eks.amazonaws.com/clusterresourcesetbinding_v1alpha4.json similarity index 100% rename from anywhere.eks.amazonaws.com/clusterresourcesetbinding_v1alpha4.json rename to crds/anywhere.eks.amazonaws.com/clusterresourcesetbinding_v1alpha4.json diff --git a/anywhere.eks.amazonaws.com/clusterresourcesetbinding_v1beta1.json b/crds/anywhere.eks.amazonaws.com/clusterresourcesetbinding_v1beta1.json similarity index 100% rename from anywhere.eks.amazonaws.com/clusterresourcesetbinding_v1beta1.json rename to crds/anywhere.eks.amazonaws.com/clusterresourcesetbinding_v1beta1.json diff --git a/anywhere.eks.amazonaws.com/dockercluster_v1alpha3.json b/crds/anywhere.eks.amazonaws.com/dockercluster_v1alpha3.json similarity index 100% rename from anywhere.eks.amazonaws.com/dockercluster_v1alpha3.json rename to crds/anywhere.eks.amazonaws.com/dockercluster_v1alpha3.json diff --git a/anywhere.eks.amazonaws.com/dockercluster_v1alpha4.json b/crds/anywhere.eks.amazonaws.com/dockercluster_v1alpha4.json similarity index 100% rename from anywhere.eks.amazonaws.com/dockercluster_v1alpha4.json rename to crds/anywhere.eks.amazonaws.com/dockercluster_v1alpha4.json diff --git a/anywhere.eks.amazonaws.com/dockercluster_v1beta1.json b/crds/anywhere.eks.amazonaws.com/dockercluster_v1beta1.json similarity index 100% rename from anywhere.eks.amazonaws.com/dockercluster_v1beta1.json rename to crds/anywhere.eks.amazonaws.com/dockercluster_v1beta1.json diff --git a/anywhere.eks.amazonaws.com/dockerclustertemplate_v1alpha4.json b/crds/anywhere.eks.amazonaws.com/dockerclustertemplate_v1alpha4.json similarity index 100% rename from anywhere.eks.amazonaws.com/dockerclustertemplate_v1alpha4.json rename to crds/anywhere.eks.amazonaws.com/dockerclustertemplate_v1alpha4.json diff --git a/anywhere.eks.amazonaws.com/dockerclustertemplate_v1beta1.json b/crds/anywhere.eks.amazonaws.com/dockerclustertemplate_v1beta1.json similarity index 100% rename from anywhere.eks.amazonaws.com/dockerclustertemplate_v1beta1.json rename to crds/anywhere.eks.amazonaws.com/dockerclustertemplate_v1beta1.json diff --git a/anywhere.eks.amazonaws.com/dockerdatacenterconfig_v1alpha1.json b/crds/anywhere.eks.amazonaws.com/dockerdatacenterconfig_v1alpha1.json similarity index 100% rename from anywhere.eks.amazonaws.com/dockerdatacenterconfig_v1alpha1.json rename to crds/anywhere.eks.amazonaws.com/dockerdatacenterconfig_v1alpha1.json diff --git a/anywhere.eks.amazonaws.com/dockermachine_v1alpha3.json b/crds/anywhere.eks.amazonaws.com/dockermachine_v1alpha3.json similarity index 100% rename from anywhere.eks.amazonaws.com/dockermachine_v1alpha3.json rename to crds/anywhere.eks.amazonaws.com/dockermachine_v1alpha3.json diff --git a/anywhere.eks.amazonaws.com/dockermachine_v1alpha4.json b/crds/anywhere.eks.amazonaws.com/dockermachine_v1alpha4.json similarity index 100% rename from anywhere.eks.amazonaws.com/dockermachine_v1alpha4.json rename to crds/anywhere.eks.amazonaws.com/dockermachine_v1alpha4.json diff --git a/anywhere.eks.amazonaws.com/dockermachine_v1beta1.json b/crds/anywhere.eks.amazonaws.com/dockermachine_v1beta1.json similarity index 100% rename from anywhere.eks.amazonaws.com/dockermachine_v1beta1.json rename to crds/anywhere.eks.amazonaws.com/dockermachine_v1beta1.json diff --git a/anywhere.eks.amazonaws.com/dockermachinepool_v1alpha3.json b/crds/anywhere.eks.amazonaws.com/dockermachinepool_v1alpha3.json similarity index 100% rename from anywhere.eks.amazonaws.com/dockermachinepool_v1alpha3.json rename to crds/anywhere.eks.amazonaws.com/dockermachinepool_v1alpha3.json diff --git a/anywhere.eks.amazonaws.com/dockermachinepool_v1alpha4.json b/crds/anywhere.eks.amazonaws.com/dockermachinepool_v1alpha4.json similarity index 100% rename from anywhere.eks.amazonaws.com/dockermachinepool_v1alpha4.json rename to crds/anywhere.eks.amazonaws.com/dockermachinepool_v1alpha4.json diff --git a/anywhere.eks.amazonaws.com/dockermachinepool_v1beta1.json b/crds/anywhere.eks.amazonaws.com/dockermachinepool_v1beta1.json similarity index 100% rename from anywhere.eks.amazonaws.com/dockermachinepool_v1beta1.json rename to crds/anywhere.eks.amazonaws.com/dockermachinepool_v1beta1.json diff --git a/anywhere.eks.amazonaws.com/dockermachinetemplate_v1alpha3.json b/crds/anywhere.eks.amazonaws.com/dockermachinetemplate_v1alpha3.json similarity index 100% rename from anywhere.eks.amazonaws.com/dockermachinetemplate_v1alpha3.json rename to crds/anywhere.eks.amazonaws.com/dockermachinetemplate_v1alpha3.json diff --git a/anywhere.eks.amazonaws.com/dockermachinetemplate_v1alpha4.json b/crds/anywhere.eks.amazonaws.com/dockermachinetemplate_v1alpha4.json similarity index 100% rename from anywhere.eks.amazonaws.com/dockermachinetemplate_v1alpha4.json rename to crds/anywhere.eks.amazonaws.com/dockermachinetemplate_v1alpha4.json diff --git a/anywhere.eks.amazonaws.com/dockermachinetemplate_v1beta1.json b/crds/anywhere.eks.amazonaws.com/dockermachinetemplate_v1beta1.json similarity index 100% rename from anywhere.eks.amazonaws.com/dockermachinetemplate_v1beta1.json rename to crds/anywhere.eks.amazonaws.com/dockermachinetemplate_v1beta1.json diff --git a/anywhere.eks.amazonaws.com/fluxconfig_v1alpha1.json b/crds/anywhere.eks.amazonaws.com/fluxconfig_v1alpha1.json similarity index 100% rename from anywhere.eks.amazonaws.com/fluxconfig_v1alpha1.json rename to crds/anywhere.eks.amazonaws.com/fluxconfig_v1alpha1.json diff --git a/anywhere.eks.amazonaws.com/gitopsconfig_v1alpha1.json b/crds/anywhere.eks.amazonaws.com/gitopsconfig_v1alpha1.json similarity index 100% rename from anywhere.eks.amazonaws.com/gitopsconfig_v1alpha1.json rename to crds/anywhere.eks.amazonaws.com/gitopsconfig_v1alpha1.json diff --git a/anywhere.eks.amazonaws.com/nutanixdatacenterconfig_v1alpha1.json b/crds/anywhere.eks.amazonaws.com/nutanixdatacenterconfig_v1alpha1.json similarity index 100% rename from anywhere.eks.amazonaws.com/nutanixdatacenterconfig_v1alpha1.json rename to crds/anywhere.eks.amazonaws.com/nutanixdatacenterconfig_v1alpha1.json diff --git a/anywhere.eks.amazonaws.com/nutanixmachineconfig_v1alpha1.json b/crds/anywhere.eks.amazonaws.com/nutanixmachineconfig_v1alpha1.json similarity index 100% rename from anywhere.eks.amazonaws.com/nutanixmachineconfig_v1alpha1.json rename to crds/anywhere.eks.amazonaws.com/nutanixmachineconfig_v1alpha1.json diff --git a/anywhere.eks.amazonaws.com/oidcconfig_v1alpha1.json b/crds/anywhere.eks.amazonaws.com/oidcconfig_v1alpha1.json similarity index 100% rename from anywhere.eks.amazonaws.com/oidcconfig_v1alpha1.json rename to crds/anywhere.eks.amazonaws.com/oidcconfig_v1alpha1.json diff --git a/anywhere.eks.amazonaws.com/snowdatacenterconfig_v1alpha1.json b/crds/anywhere.eks.amazonaws.com/snowdatacenterconfig_v1alpha1.json similarity index 100% rename from anywhere.eks.amazonaws.com/snowdatacenterconfig_v1alpha1.json rename to crds/anywhere.eks.amazonaws.com/snowdatacenterconfig_v1alpha1.json diff --git a/anywhere.eks.amazonaws.com/snowippool_v1alpha1.json b/crds/anywhere.eks.amazonaws.com/snowippool_v1alpha1.json similarity index 100% rename from anywhere.eks.amazonaws.com/snowippool_v1alpha1.json rename to crds/anywhere.eks.amazonaws.com/snowippool_v1alpha1.json diff --git a/anywhere.eks.amazonaws.com/snowmachineconfig_v1alpha1.json b/crds/anywhere.eks.amazonaws.com/snowmachineconfig_v1alpha1.json similarity index 100% rename from anywhere.eks.amazonaws.com/snowmachineconfig_v1alpha1.json rename to crds/anywhere.eks.amazonaws.com/snowmachineconfig_v1alpha1.json diff --git a/anywhere.eks.amazonaws.com/tinkerbelldatacenterconfig_v1alpha1.json b/crds/anywhere.eks.amazonaws.com/tinkerbelldatacenterconfig_v1alpha1.json similarity index 100% rename from anywhere.eks.amazonaws.com/tinkerbelldatacenterconfig_v1alpha1.json rename to crds/anywhere.eks.amazonaws.com/tinkerbelldatacenterconfig_v1alpha1.json diff --git a/anywhere.eks.amazonaws.com/tinkerbellmachineconfig_v1alpha1.json b/crds/anywhere.eks.amazonaws.com/tinkerbellmachineconfig_v1alpha1.json similarity index 100% rename from anywhere.eks.amazonaws.com/tinkerbellmachineconfig_v1alpha1.json rename to crds/anywhere.eks.amazonaws.com/tinkerbellmachineconfig_v1alpha1.json diff --git a/anywhere.eks.amazonaws.com/tinkerbelltemplateconfig_v1alpha1.json b/crds/anywhere.eks.amazonaws.com/tinkerbelltemplateconfig_v1alpha1.json similarity index 100% rename from anywhere.eks.amazonaws.com/tinkerbelltemplateconfig_v1alpha1.json rename to crds/anywhere.eks.amazonaws.com/tinkerbelltemplateconfig_v1alpha1.json diff --git a/anywhere.eks.amazonaws.com/vspheredatacenterconfig_v1alpha1.json b/crds/anywhere.eks.amazonaws.com/vspheredatacenterconfig_v1alpha1.json similarity index 100% rename from anywhere.eks.amazonaws.com/vspheredatacenterconfig_v1alpha1.json rename to crds/anywhere.eks.amazonaws.com/vspheredatacenterconfig_v1alpha1.json diff --git a/anywhere.eks.amazonaws.com/vspheremachineconfig_v1alpha1.json b/crds/anywhere.eks.amazonaws.com/vspheremachineconfig_v1alpha1.json similarity index 100% rename from anywhere.eks.amazonaws.com/vspheremachineconfig_v1alpha1.json rename to crds/anywhere.eks.amazonaws.com/vspheremachineconfig_v1alpha1.json diff --git a/apiextensions.crossplane.io/compositeresourcedefinition_v1.json b/crds/apiextensions.crossplane.io/compositeresourcedefinition_v1.json similarity index 100% rename from apiextensions.crossplane.io/compositeresourcedefinition_v1.json rename to crds/apiextensions.crossplane.io/compositeresourcedefinition_v1.json diff --git a/apiextensions.crossplane.io/composition_v1.json b/crds/apiextensions.crossplane.io/composition_v1.json similarity index 100% rename from apiextensions.crossplane.io/composition_v1.json rename to crds/apiextensions.crossplane.io/composition_v1.json diff --git a/apiextensions.crossplane.io/compositionrevision_v1.json b/crds/apiextensions.crossplane.io/compositionrevision_v1.json similarity index 100% rename from apiextensions.crossplane.io/compositionrevision_v1.json rename to crds/apiextensions.crossplane.io/compositionrevision_v1.json diff --git a/apiextensions.crossplane.io/compositionrevision_v1alpha1.json b/crds/apiextensions.crossplane.io/compositionrevision_v1alpha1.json similarity index 100% rename from apiextensions.crossplane.io/compositionrevision_v1alpha1.json rename to crds/apiextensions.crossplane.io/compositionrevision_v1alpha1.json diff --git a/apiextensions.crossplane.io/compositionrevision_v1beta1.json b/crds/apiextensions.crossplane.io/compositionrevision_v1beta1.json similarity index 100% rename from apiextensions.crossplane.io/compositionrevision_v1beta1.json rename to crds/apiextensions.crossplane.io/compositionrevision_v1beta1.json diff --git a/apiextensions.crossplane.io/environmentconfig_v1alpha1.json b/crds/apiextensions.crossplane.io/environmentconfig_v1alpha1.json similarity index 100% rename from apiextensions.crossplane.io/environmentconfig_v1alpha1.json rename to crds/apiextensions.crossplane.io/environmentconfig_v1alpha1.json diff --git a/apiextensions.crossplane.io/environmentconfig_v1beta1.json b/crds/apiextensions.crossplane.io/environmentconfig_v1beta1.json similarity index 100% rename from apiextensions.crossplane.io/environmentconfig_v1beta1.json rename to crds/apiextensions.crossplane.io/environmentconfig_v1beta1.json diff --git a/apiextensions.crossplane.io/usage_v1alpha1.json b/crds/apiextensions.crossplane.io/usage_v1alpha1.json similarity index 100% rename from apiextensions.crossplane.io/usage_v1alpha1.json rename to crds/apiextensions.crossplane.io/usage_v1alpha1.json diff --git a/apiextensions.crossplane.io/usage_v1beta1.json b/crds/apiextensions.crossplane.io/usage_v1beta1.json similarity index 100% rename from apiextensions.crossplane.io/usage_v1beta1.json rename to crds/apiextensions.crossplane.io/usage_v1beta1.json diff --git a/apigateway.cnrm.cloud.google.com/apigatewayapi_v1alpha1.json b/crds/apigateway.cnrm.cloud.google.com/apigatewayapi_v1alpha1.json similarity index 100% rename from apigateway.cnrm.cloud.google.com/apigatewayapi_v1alpha1.json rename to crds/apigateway.cnrm.cloud.google.com/apigatewayapi_v1alpha1.json diff --git a/apigateway.cnrm.cloud.google.com/apigatewayapiconfig_v1alpha1.json b/crds/apigateway.cnrm.cloud.google.com/apigatewayapiconfig_v1alpha1.json similarity index 100% rename from apigateway.cnrm.cloud.google.com/apigatewayapiconfig_v1alpha1.json rename to crds/apigateway.cnrm.cloud.google.com/apigatewayapiconfig_v1alpha1.json diff --git a/apigateway.cnrm.cloud.google.com/apigatewaygateway_v1alpha1.json b/crds/apigateway.cnrm.cloud.google.com/apigatewaygateway_v1alpha1.json similarity index 100% rename from apigateway.cnrm.cloud.google.com/apigatewaygateway_v1alpha1.json rename to crds/apigateway.cnrm.cloud.google.com/apigatewaygateway_v1alpha1.json diff --git a/apigatewayv2.services.k8s.aws/api_v1alpha1.json b/crds/apigatewayv2.services.k8s.aws/api_v1alpha1.json similarity index 100% rename from apigatewayv2.services.k8s.aws/api_v1alpha1.json rename to crds/apigatewayv2.services.k8s.aws/api_v1alpha1.json diff --git a/apigatewayv2.services.k8s.aws/authorizer_v1alpha1.json b/crds/apigatewayv2.services.k8s.aws/authorizer_v1alpha1.json similarity index 100% rename from apigatewayv2.services.k8s.aws/authorizer_v1alpha1.json rename to crds/apigatewayv2.services.k8s.aws/authorizer_v1alpha1.json diff --git a/apigatewayv2.services.k8s.aws/deployment_v1alpha1.json b/crds/apigatewayv2.services.k8s.aws/deployment_v1alpha1.json similarity index 100% rename from apigatewayv2.services.k8s.aws/deployment_v1alpha1.json rename to crds/apigatewayv2.services.k8s.aws/deployment_v1alpha1.json diff --git a/apigatewayv2.services.k8s.aws/integration_v1alpha1.json b/crds/apigatewayv2.services.k8s.aws/integration_v1alpha1.json similarity index 100% rename from apigatewayv2.services.k8s.aws/integration_v1alpha1.json rename to crds/apigatewayv2.services.k8s.aws/integration_v1alpha1.json diff --git a/apigatewayv2.services.k8s.aws/route_v1alpha1.json b/crds/apigatewayv2.services.k8s.aws/route_v1alpha1.json similarity index 100% rename from apigatewayv2.services.k8s.aws/route_v1alpha1.json rename to crds/apigatewayv2.services.k8s.aws/route_v1alpha1.json diff --git a/apigatewayv2.services.k8s.aws/stage_v1alpha1.json b/crds/apigatewayv2.services.k8s.aws/stage_v1alpha1.json similarity index 100% rename from apigatewayv2.services.k8s.aws/stage_v1alpha1.json rename to crds/apigatewayv2.services.k8s.aws/stage_v1alpha1.json diff --git a/apigatewayv2.services.k8s.aws/vpclink_v1alpha1.json b/crds/apigatewayv2.services.k8s.aws/vpclink_v1alpha1.json similarity index 100% rename from apigatewayv2.services.k8s.aws/vpclink_v1alpha1.json rename to crds/apigatewayv2.services.k8s.aws/vpclink_v1alpha1.json diff --git a/apigee.cnrm.cloud.google.com/apigeeaddonsconfig_v1alpha1.json b/crds/apigee.cnrm.cloud.google.com/apigeeaddonsconfig_v1alpha1.json similarity index 100% rename from apigee.cnrm.cloud.google.com/apigeeaddonsconfig_v1alpha1.json rename to crds/apigee.cnrm.cloud.google.com/apigeeaddonsconfig_v1alpha1.json diff --git a/apigee.cnrm.cloud.google.com/apigeeendpointattachment_v1alpha1.json b/crds/apigee.cnrm.cloud.google.com/apigeeendpointattachment_v1alpha1.json similarity index 100% rename from apigee.cnrm.cloud.google.com/apigeeendpointattachment_v1alpha1.json rename to crds/apigee.cnrm.cloud.google.com/apigeeendpointattachment_v1alpha1.json diff --git a/apigee.cnrm.cloud.google.com/apigeeenvgroup_v1alpha1.json b/crds/apigee.cnrm.cloud.google.com/apigeeenvgroup_v1alpha1.json similarity index 100% rename from apigee.cnrm.cloud.google.com/apigeeenvgroup_v1alpha1.json rename to crds/apigee.cnrm.cloud.google.com/apigeeenvgroup_v1alpha1.json diff --git a/apigee.cnrm.cloud.google.com/apigeeenvgroupattachment_v1alpha1.json b/crds/apigee.cnrm.cloud.google.com/apigeeenvgroupattachment_v1alpha1.json similarity index 100% rename from apigee.cnrm.cloud.google.com/apigeeenvgroupattachment_v1alpha1.json rename to crds/apigee.cnrm.cloud.google.com/apigeeenvgroupattachment_v1alpha1.json diff --git a/apigee.cnrm.cloud.google.com/apigeeenvironment_v1beta1.json b/crds/apigee.cnrm.cloud.google.com/apigeeenvironment_v1beta1.json similarity index 100% rename from apigee.cnrm.cloud.google.com/apigeeenvironment_v1beta1.json rename to crds/apigee.cnrm.cloud.google.com/apigeeenvironment_v1beta1.json diff --git a/apigee.cnrm.cloud.google.com/apigeeinstance_v1alpha1.json b/crds/apigee.cnrm.cloud.google.com/apigeeinstance_v1alpha1.json similarity index 100% rename from apigee.cnrm.cloud.google.com/apigeeinstance_v1alpha1.json rename to crds/apigee.cnrm.cloud.google.com/apigeeinstance_v1alpha1.json diff --git a/apigee.cnrm.cloud.google.com/apigeeinstanceattachment_v1alpha1.json b/crds/apigee.cnrm.cloud.google.com/apigeeinstanceattachment_v1alpha1.json similarity index 100% rename from apigee.cnrm.cloud.google.com/apigeeinstanceattachment_v1alpha1.json rename to crds/apigee.cnrm.cloud.google.com/apigeeinstanceattachment_v1alpha1.json diff --git a/apigee.cnrm.cloud.google.com/apigeenataddress_v1alpha1.json b/crds/apigee.cnrm.cloud.google.com/apigeenataddress_v1alpha1.json similarity index 100% rename from apigee.cnrm.cloud.google.com/apigeenataddress_v1alpha1.json rename to crds/apigee.cnrm.cloud.google.com/apigeenataddress_v1alpha1.json diff --git a/apigee.cnrm.cloud.google.com/apigeeorganization_v1beta1.json b/crds/apigee.cnrm.cloud.google.com/apigeeorganization_v1beta1.json similarity index 100% rename from apigee.cnrm.cloud.google.com/apigeeorganization_v1beta1.json rename to crds/apigee.cnrm.cloud.google.com/apigeeorganization_v1beta1.json diff --git a/apigee.cnrm.cloud.google.com/apigeesyncauthorization_v1alpha1.json b/crds/apigee.cnrm.cloud.google.com/apigeesyncauthorization_v1alpha1.json similarity index 100% rename from apigee.cnrm.cloud.google.com/apigeesyncauthorization_v1alpha1.json rename to crds/apigee.cnrm.cloud.google.com/apigeesyncauthorization_v1alpha1.json diff --git a/apikeys.cnrm.cloud.google.com/apikeyskey_v1alpha1.json b/crds/apikeys.cnrm.cloud.google.com/apikeyskey_v1alpha1.json similarity index 100% rename from apikeys.cnrm.cloud.google.com/apikeyskey_v1alpha1.json rename to crds/apikeys.cnrm.cloud.google.com/apikeyskey_v1alpha1.json diff --git a/apisix.apache.org/apisixclusterconfig_v2.json b/crds/apisix.apache.org/apisixclusterconfig_v2.json similarity index 100% rename from apisix.apache.org/apisixclusterconfig_v2.json rename to crds/apisix.apache.org/apisixclusterconfig_v2.json diff --git a/apisix.apache.org/apisixclusterconfig_v2beta3.json b/crds/apisix.apache.org/apisixclusterconfig_v2beta3.json similarity index 100% rename from apisix.apache.org/apisixclusterconfig_v2beta3.json rename to crds/apisix.apache.org/apisixclusterconfig_v2beta3.json diff --git a/apisix.apache.org/apisixconsumer_v2.json b/crds/apisix.apache.org/apisixconsumer_v2.json similarity index 100% rename from apisix.apache.org/apisixconsumer_v2.json rename to crds/apisix.apache.org/apisixconsumer_v2.json diff --git a/apisix.apache.org/apisixconsumer_v2beta3.json b/crds/apisix.apache.org/apisixconsumer_v2beta3.json similarity index 100% rename from apisix.apache.org/apisixconsumer_v2beta3.json rename to crds/apisix.apache.org/apisixconsumer_v2beta3.json diff --git a/apisix.apache.org/apisixglobalrule_v2.json b/crds/apisix.apache.org/apisixglobalrule_v2.json similarity index 100% rename from apisix.apache.org/apisixglobalrule_v2.json rename to crds/apisix.apache.org/apisixglobalrule_v2.json diff --git a/apisix.apache.org/apisixpluginconfig_v2.json b/crds/apisix.apache.org/apisixpluginconfig_v2.json similarity index 100% rename from apisix.apache.org/apisixpluginconfig_v2.json rename to crds/apisix.apache.org/apisixpluginconfig_v2.json diff --git a/apisix.apache.org/apisixpluginconfig_v2beta3.json b/crds/apisix.apache.org/apisixpluginconfig_v2beta3.json similarity index 100% rename from apisix.apache.org/apisixpluginconfig_v2beta3.json rename to crds/apisix.apache.org/apisixpluginconfig_v2beta3.json diff --git a/apisix.apache.org/apisixroute_v2.json b/crds/apisix.apache.org/apisixroute_v2.json similarity index 100% rename from apisix.apache.org/apisixroute_v2.json rename to crds/apisix.apache.org/apisixroute_v2.json diff --git a/apisix.apache.org/apisixroute_v2beta3.json b/crds/apisix.apache.org/apisixroute_v2beta3.json similarity index 100% rename from apisix.apache.org/apisixroute_v2beta3.json rename to crds/apisix.apache.org/apisixroute_v2beta3.json diff --git a/apisix.apache.org/apisixtls_v2.json b/crds/apisix.apache.org/apisixtls_v2.json similarity index 100% rename from apisix.apache.org/apisixtls_v2.json rename to crds/apisix.apache.org/apisixtls_v2.json diff --git a/apisix.apache.org/apisixtls_v2beta3.json b/crds/apisix.apache.org/apisixtls_v2beta3.json similarity index 100% rename from apisix.apache.org/apisixtls_v2beta3.json rename to crds/apisix.apache.org/apisixtls_v2beta3.json diff --git a/apisix.apache.org/apisixupstream_v2.json b/crds/apisix.apache.org/apisixupstream_v2.json similarity index 100% rename from apisix.apache.org/apisixupstream_v2.json rename to crds/apisix.apache.org/apisixupstream_v2.json diff --git a/apisix.apache.org/apisixupstream_v2beta3.json b/crds/apisix.apache.org/apisixupstream_v2beta3.json similarity index 100% rename from apisix.apache.org/apisixupstream_v2beta3.json rename to crds/apisix.apache.org/apisixupstream_v2beta3.json diff --git a/apm.k8s.elastic.co/apmserver_v1.json b/crds/apm.k8s.elastic.co/apmserver_v1.json similarity index 100% rename from apm.k8s.elastic.co/apmserver_v1.json rename to crds/apm.k8s.elastic.co/apmserver_v1.json diff --git a/apm.k8s.elastic.co/apmserver_v1alpha1.json b/crds/apm.k8s.elastic.co/apmserver_v1alpha1.json similarity index 100% rename from apm.k8s.elastic.co/apmserver_v1alpha1.json rename to crds/apm.k8s.elastic.co/apmserver_v1alpha1.json diff --git a/apm.k8s.elastic.co/apmserver_v1beta1.json b/crds/apm.k8s.elastic.co/apmserver_v1beta1.json similarity index 100% rename from apm.k8s.elastic.co/apmserver_v1beta1.json rename to crds/apm.k8s.elastic.co/apmserver_v1beta1.json diff --git a/app.redislabs.com/redisenterpriseactiveactivedatabase_v1alpha1.json b/crds/app.redislabs.com/redisenterpriseactiveactivedatabase_v1alpha1.json similarity index 100% rename from app.redislabs.com/redisenterpriseactiveactivedatabase_v1alpha1.json rename to crds/app.redislabs.com/redisenterpriseactiveactivedatabase_v1alpha1.json diff --git a/app.redislabs.com/redisenterprisecluster_v1.json b/crds/app.redislabs.com/redisenterprisecluster_v1.json similarity index 100% rename from app.redislabs.com/redisenterprisecluster_v1.json rename to crds/app.redislabs.com/redisenterprisecluster_v1.json diff --git a/app.redislabs.com/redisenterprisecluster_v1alpha1.json b/crds/app.redislabs.com/redisenterprisecluster_v1alpha1.json similarity index 100% rename from app.redislabs.com/redisenterprisecluster_v1alpha1.json rename to crds/app.redislabs.com/redisenterprisecluster_v1alpha1.json diff --git a/app.redislabs.com/redisenterprisedatabase_v1alpha1.json b/crds/app.redislabs.com/redisenterprisedatabase_v1alpha1.json similarity index 100% rename from app.redislabs.com/redisenterprisedatabase_v1alpha1.json rename to crds/app.redislabs.com/redisenterprisedatabase_v1alpha1.json diff --git a/app.redislabs.com/redisenterpriseremotecluster_v1alpha1.json b/crds/app.redislabs.com/redisenterpriseremotecluster_v1alpha1.json similarity index 100% rename from app.redislabs.com/redisenterpriseremotecluster_v1alpha1.json rename to crds/app.redislabs.com/redisenterpriseremotecluster_v1alpha1.json diff --git a/appcat.vshn.io/objectbucket_v1.json b/crds/appcat.vshn.io/objectbucket_v1.json similarity index 100% rename from appcat.vshn.io/objectbucket_v1.json rename to crds/appcat.vshn.io/objectbucket_v1.json diff --git a/appcat.vshn.io/xobjectbucket_v1.json b/crds/appcat.vshn.io/xobjectbucket_v1.json similarity index 100% rename from appcat.vshn.io/xobjectbucket_v1.json rename to crds/appcat.vshn.io/xobjectbucket_v1.json diff --git a/appengine.cnrm.cloud.google.com/appenginedomainmapping_v1alpha1.json b/crds/appengine.cnrm.cloud.google.com/appenginedomainmapping_v1alpha1.json similarity index 100% rename from appengine.cnrm.cloud.google.com/appenginedomainmapping_v1alpha1.json rename to crds/appengine.cnrm.cloud.google.com/appenginedomainmapping_v1alpha1.json diff --git a/appengine.cnrm.cloud.google.com/appenginefirewallrule_v1alpha1.json b/crds/appengine.cnrm.cloud.google.com/appenginefirewallrule_v1alpha1.json similarity index 100% rename from appengine.cnrm.cloud.google.com/appenginefirewallrule_v1alpha1.json rename to crds/appengine.cnrm.cloud.google.com/appenginefirewallrule_v1alpha1.json diff --git a/appengine.cnrm.cloud.google.com/appengineflexibleappversion_v1alpha1.json b/crds/appengine.cnrm.cloud.google.com/appengineflexibleappversion_v1alpha1.json similarity index 100% rename from appengine.cnrm.cloud.google.com/appengineflexibleappversion_v1alpha1.json rename to crds/appengine.cnrm.cloud.google.com/appengineflexibleappversion_v1alpha1.json diff --git a/appengine.cnrm.cloud.google.com/appengineservicesplittraffic_v1alpha1.json b/crds/appengine.cnrm.cloud.google.com/appengineservicesplittraffic_v1alpha1.json similarity index 100% rename from appengine.cnrm.cloud.google.com/appengineservicesplittraffic_v1alpha1.json rename to crds/appengine.cnrm.cloud.google.com/appengineservicesplittraffic_v1alpha1.json diff --git a/appengine.cnrm.cloud.google.com/appenginestandardappversion_v1alpha1.json b/crds/appengine.cnrm.cloud.google.com/appenginestandardappversion_v1alpha1.json similarity index 100% rename from appengine.cnrm.cloud.google.com/appenginestandardappversion_v1alpha1.json rename to crds/appengine.cnrm.cloud.google.com/appenginestandardappversion_v1alpha1.json diff --git a/applicationautoscaling.services.k8s.aws/scalabletarget_v1alpha1.json b/crds/applicationautoscaling.services.k8s.aws/scalabletarget_v1alpha1.json similarity index 100% rename from applicationautoscaling.services.k8s.aws/scalabletarget_v1alpha1.json rename to crds/applicationautoscaling.services.k8s.aws/scalabletarget_v1alpha1.json diff --git a/applicationautoscaling.services.k8s.aws/scalingpolicy_v1alpha1.json b/crds/applicationautoscaling.services.k8s.aws/scalingpolicy_v1alpha1.json similarity index 100% rename from applicationautoscaling.services.k8s.aws/scalingpolicy_v1alpha1.json rename to crds/applicationautoscaling.services.k8s.aws/scalingpolicy_v1alpha1.json diff --git a/appprotect.f5.com/aplogconf_v1beta1.json b/crds/appprotect.f5.com/aplogconf_v1beta1.json similarity index 100% rename from appprotect.f5.com/aplogconf_v1beta1.json rename to crds/appprotect.f5.com/aplogconf_v1beta1.json diff --git a/appprotect.f5.com/appolicy_v1beta1.json b/crds/appprotect.f5.com/appolicy_v1beta1.json similarity index 100% rename from appprotect.f5.com/appolicy_v1beta1.json rename to crds/appprotect.f5.com/appolicy_v1beta1.json diff --git a/appprotect.f5.com/apusersig_v1beta1.json b/crds/appprotect.f5.com/apusersig_v1beta1.json similarity index 100% rename from appprotect.f5.com/apusersig_v1beta1.json rename to crds/appprotect.f5.com/apusersig_v1beta1.json diff --git a/appprotectdos.f5.com/apdoslogconf_v1beta1.json b/crds/appprotectdos.f5.com/apdoslogconf_v1beta1.json similarity index 100% rename from appprotectdos.f5.com/apdoslogconf_v1beta1.json rename to crds/appprotectdos.f5.com/apdoslogconf_v1beta1.json diff --git a/appprotectdos.f5.com/apdospolicy_v1beta1.json b/crds/appprotectdos.f5.com/apdospolicy_v1beta1.json similarity index 100% rename from appprotectdos.f5.com/apdospolicy_v1beta1.json rename to crds/appprotectdos.f5.com/apdospolicy_v1beta1.json diff --git a/appprotectdos.f5.com/dosprotectedresource_v1beta1.json b/crds/appprotectdos.f5.com/dosprotectedresource_v1beta1.json similarity index 100% rename from appprotectdos.f5.com/dosprotectedresource_v1beta1.json rename to crds/appprotectdos.f5.com/dosprotectedresource_v1beta1.json diff --git a/apps.emqx.io/emqx_v2alpha1.json b/crds/apps.emqx.io/emqx_v2alpha1.json similarity index 100% rename from apps.emqx.io/emqx_v2alpha1.json rename to crds/apps.emqx.io/emqx_v2alpha1.json diff --git a/apps.emqx.io/emqx_v2beta1.json b/crds/apps.emqx.io/emqx_v2beta1.json similarity index 100% rename from apps.emqx.io/emqx_v2beta1.json rename to crds/apps.emqx.io/emqx_v2beta1.json diff --git a/apps.emqx.io/emqxbroker_v1beta3.json b/crds/apps.emqx.io/emqxbroker_v1beta3.json similarity index 100% rename from apps.emqx.io/emqxbroker_v1beta3.json rename to crds/apps.emqx.io/emqxbroker_v1beta3.json diff --git a/apps.emqx.io/emqxbroker_v1beta4.json b/crds/apps.emqx.io/emqxbroker_v1beta4.json similarity index 100% rename from apps.emqx.io/emqxbroker_v1beta4.json rename to crds/apps.emqx.io/emqxbroker_v1beta4.json diff --git a/apps.emqx.io/emqxenterprise_v1beta3.json b/crds/apps.emqx.io/emqxenterprise_v1beta3.json similarity index 100% rename from apps.emqx.io/emqxenterprise_v1beta3.json rename to crds/apps.emqx.io/emqxenterprise_v1beta3.json diff --git a/apps.emqx.io/emqxenterprise_v1beta4.json b/crds/apps.emqx.io/emqxenterprise_v1beta4.json similarity index 100% rename from apps.emqx.io/emqxenterprise_v1beta4.json rename to crds/apps.emqx.io/emqxenterprise_v1beta4.json diff --git a/apps.emqx.io/emqxplugin_v1beta3.json b/crds/apps.emqx.io/emqxplugin_v1beta3.json similarity index 100% rename from apps.emqx.io/emqxplugin_v1beta3.json rename to crds/apps.emqx.io/emqxplugin_v1beta3.json diff --git a/apps.emqx.io/emqxplugin_v1beta4.json b/crds/apps.emqx.io/emqxplugin_v1beta4.json similarity index 100% rename from apps.emqx.io/emqxplugin_v1beta4.json rename to crds/apps.emqx.io/emqxplugin_v1beta4.json diff --git a/apps.gitlab.com/gitlab_v1beta1.json b/crds/apps.gitlab.com/gitlab_v1beta1.json similarity index 100% rename from apps.gitlab.com/gitlab_v1beta1.json rename to crds/apps.gitlab.com/gitlab_v1beta1.json diff --git a/aquasecurity.github.io/clustercompliancereport_v1alpha1.json b/crds/aquasecurity.github.io/clustercompliancereport_v1alpha1.json similarity index 100% rename from aquasecurity.github.io/clustercompliancereport_v1alpha1.json rename to crds/aquasecurity.github.io/clustercompliancereport_v1alpha1.json diff --git a/aquasecurity.github.io/clusterconfigauditreport_v1alpha1.json b/crds/aquasecurity.github.io/clusterconfigauditreport_v1alpha1.json similarity index 100% rename from aquasecurity.github.io/clusterconfigauditreport_v1alpha1.json rename to crds/aquasecurity.github.io/clusterconfigauditreport_v1alpha1.json diff --git a/aquasecurity.github.io/clusterinfraassessmentreport_v1alpha1.json b/crds/aquasecurity.github.io/clusterinfraassessmentreport_v1alpha1.json similarity index 100% rename from aquasecurity.github.io/clusterinfraassessmentreport_v1alpha1.json rename to crds/aquasecurity.github.io/clusterinfraassessmentreport_v1alpha1.json diff --git a/aquasecurity.github.io/clusterrbacassessmentreport_v1alpha1.json b/crds/aquasecurity.github.io/clusterrbacassessmentreport_v1alpha1.json similarity index 100% rename from aquasecurity.github.io/clusterrbacassessmentreport_v1alpha1.json rename to crds/aquasecurity.github.io/clusterrbacassessmentreport_v1alpha1.json diff --git a/aquasecurity.github.io/clustersbomreport_v1alpha1.json b/crds/aquasecurity.github.io/clustersbomreport_v1alpha1.json similarity index 100% rename from aquasecurity.github.io/clustersbomreport_v1alpha1.json rename to crds/aquasecurity.github.io/clustersbomreport_v1alpha1.json diff --git a/aquasecurity.github.io/clustervulnerabilityreport_v1alpha1.json b/crds/aquasecurity.github.io/clustervulnerabilityreport_v1alpha1.json similarity index 100% rename from aquasecurity.github.io/clustervulnerabilityreport_v1alpha1.json rename to crds/aquasecurity.github.io/clustervulnerabilityreport_v1alpha1.json diff --git a/aquasecurity.github.io/configauditreport_v1alpha1.json b/crds/aquasecurity.github.io/configauditreport_v1alpha1.json similarity index 100% rename from aquasecurity.github.io/configauditreport_v1alpha1.json rename to crds/aquasecurity.github.io/configauditreport_v1alpha1.json diff --git a/aquasecurity.github.io/exposedsecretreport_v1alpha1.json b/crds/aquasecurity.github.io/exposedsecretreport_v1alpha1.json similarity index 100% rename from aquasecurity.github.io/exposedsecretreport_v1alpha1.json rename to crds/aquasecurity.github.io/exposedsecretreport_v1alpha1.json diff --git a/aquasecurity.github.io/infraassessmentreport_v1alpha1.json b/crds/aquasecurity.github.io/infraassessmentreport_v1alpha1.json similarity index 100% rename from aquasecurity.github.io/infraassessmentreport_v1alpha1.json rename to crds/aquasecurity.github.io/infraassessmentreport_v1alpha1.json diff --git a/aquasecurity.github.io/rbacassessmentreport_v1alpha1.json b/crds/aquasecurity.github.io/rbacassessmentreport_v1alpha1.json similarity index 100% rename from aquasecurity.github.io/rbacassessmentreport_v1alpha1.json rename to crds/aquasecurity.github.io/rbacassessmentreport_v1alpha1.json diff --git a/aquasecurity.github.io/sbomreport_v1alpha1.json b/crds/aquasecurity.github.io/sbomreport_v1alpha1.json similarity index 100% rename from aquasecurity.github.io/sbomreport_v1alpha1.json rename to crds/aquasecurity.github.io/sbomreport_v1alpha1.json diff --git a/aquasecurity.github.io/vulnerabilityreport_v1alpha1.json b/crds/aquasecurity.github.io/vulnerabilityreport_v1alpha1.json similarity index 100% rename from aquasecurity.github.io/vulnerabilityreport_v1alpha1.json rename to crds/aquasecurity.github.io/vulnerabilityreport_v1alpha1.json diff --git a/argoproj.io/analysisrun_v1alpha1.json b/crds/argoproj.io/analysisrun_v1alpha1.json similarity index 100% rename from argoproj.io/analysisrun_v1alpha1.json rename to crds/argoproj.io/analysisrun_v1alpha1.json diff --git a/argoproj.io/analysistemplate_v1alpha1.json b/crds/argoproj.io/analysistemplate_v1alpha1.json similarity index 100% rename from argoproj.io/analysistemplate_v1alpha1.json rename to crds/argoproj.io/analysistemplate_v1alpha1.json diff --git a/argoproj.io/application_v1alpha1.json b/crds/argoproj.io/application_v1alpha1.json similarity index 100% rename from argoproj.io/application_v1alpha1.json rename to crds/argoproj.io/application_v1alpha1.json diff --git a/argoproj.io/applicationset_v1alpha1.json b/crds/argoproj.io/applicationset_v1alpha1.json similarity index 100% rename from argoproj.io/applicationset_v1alpha1.json rename to crds/argoproj.io/applicationset_v1alpha1.json diff --git a/argoproj.io/appproject_v1alpha1.json b/crds/argoproj.io/appproject_v1alpha1.json similarity index 100% rename from argoproj.io/appproject_v1alpha1.json rename to crds/argoproj.io/appproject_v1alpha1.json diff --git a/argoproj.io/clusteranalysistemplate_v1alpha1.json b/crds/argoproj.io/clusteranalysistemplate_v1alpha1.json similarity index 100% rename from argoproj.io/clusteranalysistemplate_v1alpha1.json rename to crds/argoproj.io/clusteranalysistemplate_v1alpha1.json diff --git a/argoproj.io/clusterworkflowtemplate_v1alpha1.json b/crds/argoproj.io/clusterworkflowtemplate_v1alpha1.json similarity index 100% rename from argoproj.io/clusterworkflowtemplate_v1alpha1.json rename to crds/argoproj.io/clusterworkflowtemplate_v1alpha1.json diff --git a/argoproj.io/cronworkflow_v1alpha1.json b/crds/argoproj.io/cronworkflow_v1alpha1.json similarity index 100% rename from argoproj.io/cronworkflow_v1alpha1.json rename to crds/argoproj.io/cronworkflow_v1alpha1.json diff --git a/argoproj.io/eventbus_v1alpha1.json b/crds/argoproj.io/eventbus_v1alpha1.json similarity index 100% rename from argoproj.io/eventbus_v1alpha1.json rename to crds/argoproj.io/eventbus_v1alpha1.json diff --git a/argoproj.io/eventsource_v1alpha1.json b/crds/argoproj.io/eventsource_v1alpha1.json similarity index 100% rename from argoproj.io/eventsource_v1alpha1.json rename to crds/argoproj.io/eventsource_v1alpha1.json diff --git a/argoproj.io/experiment_v1alpha1.json b/crds/argoproj.io/experiment_v1alpha1.json similarity index 100% rename from argoproj.io/experiment_v1alpha1.json rename to crds/argoproj.io/experiment_v1alpha1.json diff --git a/argoproj.io/rollout_v1alpha1.json b/crds/argoproj.io/rollout_v1alpha1.json similarity index 100% rename from argoproj.io/rollout_v1alpha1.json rename to crds/argoproj.io/rollout_v1alpha1.json diff --git a/argoproj.io/sensor_v1alpha1.json b/crds/argoproj.io/sensor_v1alpha1.json similarity index 100% rename from argoproj.io/sensor_v1alpha1.json rename to crds/argoproj.io/sensor_v1alpha1.json diff --git a/argoproj.io/workflow_v1alpha1.json b/crds/argoproj.io/workflow_v1alpha1.json similarity index 100% rename from argoproj.io/workflow_v1alpha1.json rename to crds/argoproj.io/workflow_v1alpha1.json diff --git a/argoproj.io/workflowartifactgctask_v1alpha1.json b/crds/argoproj.io/workflowartifactgctask_v1alpha1.json similarity index 100% rename from argoproj.io/workflowartifactgctask_v1alpha1.json rename to crds/argoproj.io/workflowartifactgctask_v1alpha1.json diff --git a/argoproj.io/workfloweventbinding_v1alpha1.json b/crds/argoproj.io/workfloweventbinding_v1alpha1.json similarity index 100% rename from argoproj.io/workfloweventbinding_v1alpha1.json rename to crds/argoproj.io/workfloweventbinding_v1alpha1.json diff --git a/argoproj.io/workflowtaskresult_v1alpha1.json b/crds/argoproj.io/workflowtaskresult_v1alpha1.json similarity index 100% rename from argoproj.io/workflowtaskresult_v1alpha1.json rename to crds/argoproj.io/workflowtaskresult_v1alpha1.json diff --git a/argoproj.io/workflowtaskset_v1alpha1.json b/crds/argoproj.io/workflowtaskset_v1alpha1.json similarity index 100% rename from argoproj.io/workflowtaskset_v1alpha1.json rename to crds/argoproj.io/workflowtaskset_v1alpha1.json diff --git a/argoproj.io/workflowtemplate_v1alpha1.json b/crds/argoproj.io/workflowtemplate_v1alpha1.json similarity index 100% rename from argoproj.io/workflowtemplate_v1alpha1.json rename to crds/argoproj.io/workflowtemplate_v1alpha1.json diff --git a/artifactregistry.cnrm.cloud.google.com/artifactregistryrepository_v1beta1.json b/crds/artifactregistry.cnrm.cloud.google.com/artifactregistryrepository_v1beta1.json similarity index 100% rename from artifactregistry.cnrm.cloud.google.com/artifactregistryrepository_v1beta1.json rename to crds/artifactregistry.cnrm.cloud.google.com/artifactregistryrepository_v1beta1.json diff --git a/authentication.concierge.pinniped.dev/jwtauthenticator_v1alpha1.json b/crds/authentication.concierge.pinniped.dev/jwtauthenticator_v1alpha1.json similarity index 100% rename from authentication.concierge.pinniped.dev/jwtauthenticator_v1alpha1.json rename to crds/authentication.concierge.pinniped.dev/jwtauthenticator_v1alpha1.json diff --git a/authentication.concierge.pinniped.dev/webhookauthenticator_v1alpha1.json b/crds/authentication.concierge.pinniped.dev/webhookauthenticator_v1alpha1.json similarity index 100% rename from authentication.concierge.pinniped.dev/webhookauthenticator_v1alpha1.json rename to crds/authentication.concierge.pinniped.dev/webhookauthenticator_v1alpha1.json diff --git a/autopilot.k0sproject.io/controlnode_v1beta2.json b/crds/autopilot.k0sproject.io/controlnode_v1beta2.json similarity index 100% rename from autopilot.k0sproject.io/controlnode_v1beta2.json rename to crds/autopilot.k0sproject.io/controlnode_v1beta2.json diff --git a/autopilot.k0sproject.io/plan_v1beta2.json b/crds/autopilot.k0sproject.io/plan_v1beta2.json similarity index 100% rename from autopilot.k0sproject.io/plan_v1beta2.json rename to crds/autopilot.k0sproject.io/plan_v1beta2.json diff --git a/autopilot.k0sproject.io/updateconfig_v1beta2.json b/crds/autopilot.k0sproject.io/updateconfig_v1beta2.json similarity index 100% rename from autopilot.k0sproject.io/updateconfig_v1beta2.json rename to crds/autopilot.k0sproject.io/updateconfig_v1beta2.json diff --git a/autoscaling.k8s.elastic.co/elasticsearchautoscaler_v1alpha1.json b/crds/autoscaling.k8s.elastic.co/elasticsearchautoscaler_v1alpha1.json similarity index 100% rename from autoscaling.k8s.elastic.co/elasticsearchautoscaler_v1alpha1.json rename to crds/autoscaling.k8s.elastic.co/elasticsearchautoscaler_v1alpha1.json diff --git a/autoscaling.k8s.io/verticalpodautoscaler_v1.json b/crds/autoscaling.k8s.io/verticalpodautoscaler_v1.json similarity index 100% rename from autoscaling.k8s.io/verticalpodautoscaler_v1.json rename to crds/autoscaling.k8s.io/verticalpodautoscaler_v1.json diff --git a/autoscaling.k8s.io/verticalpodautoscaler_v1beta2.json b/crds/autoscaling.k8s.io/verticalpodautoscaler_v1beta2.json similarity index 100% rename from autoscaling.k8s.io/verticalpodautoscaler_v1beta2.json rename to crds/autoscaling.k8s.io/verticalpodautoscaler_v1beta2.json diff --git a/autoscaling.k8s.io/verticalpodautoscalercheckpoint_v1.json b/crds/autoscaling.k8s.io/verticalpodautoscalercheckpoint_v1.json similarity index 100% rename from autoscaling.k8s.io/verticalpodautoscalercheckpoint_v1.json rename to crds/autoscaling.k8s.io/verticalpodautoscalercheckpoint_v1.json diff --git a/autoscaling.k8s.io/verticalpodautoscalercheckpoint_v1beta2.json b/crds/autoscaling.k8s.io/verticalpodautoscalercheckpoint_v1beta2.json similarity index 100% rename from autoscaling.k8s.io/verticalpodautoscalercheckpoint_v1beta2.json rename to crds/autoscaling.k8s.io/verticalpodautoscalercheckpoint_v1beta2.json diff --git a/awspca.cert-manager.io/awspcaclusterissuer_v1beta1.json b/crds/awspca.cert-manager.io/awspcaclusterissuer_v1beta1.json similarity index 100% rename from awspca.cert-manager.io/awspcaclusterissuer_v1beta1.json rename to crds/awspca.cert-manager.io/awspcaclusterissuer_v1beta1.json diff --git a/awspca.cert-manager.io/awspcaissuer_v1beta1.json b/crds/awspca.cert-manager.io/awspcaissuer_v1beta1.json similarity index 100% rename from awspca.cert-manager.io/awspcaissuer_v1beta1.json rename to crds/awspca.cert-manager.io/awspcaissuer_v1beta1.json diff --git a/awsprovider.k8s.io/awsclusterproviderspec_v1alpha1.json b/crds/awsprovider.k8s.io/awsclusterproviderspec_v1alpha1.json similarity index 100% rename from awsprovider.k8s.io/awsclusterproviderspec_v1alpha1.json rename to crds/awsprovider.k8s.io/awsclusterproviderspec_v1alpha1.json diff --git a/awsprovider.k8s.io/awsclusterproviderstatus_v1alpha1.json b/crds/awsprovider.k8s.io/awsclusterproviderstatus_v1alpha1.json similarity index 100% rename from awsprovider.k8s.io/awsclusterproviderstatus_v1alpha1.json rename to crds/awsprovider.k8s.io/awsclusterproviderstatus_v1alpha1.json diff --git a/awsprovider.k8s.io/awsmachineproviderspec_v1alpha1.json b/crds/awsprovider.k8s.io/awsmachineproviderspec_v1alpha1.json similarity index 100% rename from awsprovider.k8s.io/awsmachineproviderspec_v1alpha1.json rename to crds/awsprovider.k8s.io/awsmachineproviderspec_v1alpha1.json diff --git a/awsprovider.k8s.io/awsmachineproviderstatus_v1alpha1.json b/crds/awsprovider.k8s.io/awsmachineproviderstatus_v1alpha1.json similarity index 100% rename from awsprovider.k8s.io/awsmachineproviderstatus_v1alpha1.json rename to crds/awsprovider.k8s.io/awsmachineproviderstatus_v1alpha1.json diff --git a/awx.ansible.com/awx_v1beta1.json b/crds/awx.ansible.com/awx_v1beta1.json similarity index 100% rename from awx.ansible.com/awx_v1beta1.json rename to crds/awx.ansible.com/awx_v1beta1.json diff --git a/awx.ansible.com/awxbackup_v1beta1.json b/crds/awx.ansible.com/awxbackup_v1beta1.json similarity index 100% rename from awx.ansible.com/awxbackup_v1beta1.json rename to crds/awx.ansible.com/awxbackup_v1beta1.json diff --git a/awx.ansible.com/awxmeshingress_v1alpha1.json b/crds/awx.ansible.com/awxmeshingress_v1alpha1.json similarity index 100% rename from awx.ansible.com/awxmeshingress_v1alpha1.json rename to crds/awx.ansible.com/awxmeshingress_v1alpha1.json diff --git a/awx.ansible.com/awxrestore_v1beta1.json b/crds/awx.ansible.com/awxrestore_v1beta1.json similarity index 100% rename from awx.ansible.com/awxrestore_v1beta1.json rename to crds/awx.ansible.com/awxrestore_v1beta1.json diff --git a/azureprovider.k8s.io/azureclusterproviderspec_v1alpha1.json b/crds/azureprovider.k8s.io/azureclusterproviderspec_v1alpha1.json similarity index 100% rename from azureprovider.k8s.io/azureclusterproviderspec_v1alpha1.json rename to crds/azureprovider.k8s.io/azureclusterproviderspec_v1alpha1.json diff --git a/azureprovider.k8s.io/azureclusterproviderstatus_v1alpha1.json b/crds/azureprovider.k8s.io/azureclusterproviderstatus_v1alpha1.json similarity index 100% rename from azureprovider.k8s.io/azureclusterproviderstatus_v1alpha1.json rename to crds/azureprovider.k8s.io/azureclusterproviderstatus_v1alpha1.json diff --git a/azureprovider.k8s.io/azuremachineproviderspec_v1alpha1.json b/crds/azureprovider.k8s.io/azuremachineproviderspec_v1alpha1.json similarity index 100% rename from azureprovider.k8s.io/azuremachineproviderspec_v1alpha1.json rename to crds/azureprovider.k8s.io/azuremachineproviderspec_v1alpha1.json diff --git a/azureprovider.k8s.io/azuremachineproviderstatus_v1alpha1.json b/crds/azureprovider.k8s.io/azuremachineproviderstatus_v1alpha1.json similarity index 100% rename from azureprovider.k8s.io/azuremachineproviderstatus_v1alpha1.json rename to crds/azureprovider.k8s.io/azuremachineproviderstatus_v1alpha1.json diff --git a/beat.k8s.elastic.co/beat_v1beta1.json b/crds/beat.k8s.elastic.co/beat_v1beta1.json similarity index 100% rename from beat.k8s.elastic.co/beat_v1beta1.json rename to crds/beat.k8s.elastic.co/beat_v1beta1.json diff --git a/beyondcorp.cnrm.cloud.google.com/beyondcorpappconnection_v1alpha1.json b/crds/beyondcorp.cnrm.cloud.google.com/beyondcorpappconnection_v1alpha1.json similarity index 100% rename from beyondcorp.cnrm.cloud.google.com/beyondcorpappconnection_v1alpha1.json rename to crds/beyondcorp.cnrm.cloud.google.com/beyondcorpappconnection_v1alpha1.json diff --git a/beyondcorp.cnrm.cloud.google.com/beyondcorpappconnector_v1alpha1.json b/crds/beyondcorp.cnrm.cloud.google.com/beyondcorpappconnector_v1alpha1.json similarity index 100% rename from beyondcorp.cnrm.cloud.google.com/beyondcorpappconnector_v1alpha1.json rename to crds/beyondcorp.cnrm.cloud.google.com/beyondcorpappconnector_v1alpha1.json diff --git a/beyondcorp.cnrm.cloud.google.com/beyondcorpappgateway_v1alpha1.json b/crds/beyondcorp.cnrm.cloud.google.com/beyondcorpappgateway_v1alpha1.json similarity index 100% rename from beyondcorp.cnrm.cloud.google.com/beyondcorpappgateway_v1alpha1.json rename to crds/beyondcorp.cnrm.cloud.google.com/beyondcorpappgateway_v1alpha1.json diff --git a/bigquery.cnrm.cloud.google.com/bigquerydataset_v1beta1.json b/crds/bigquery.cnrm.cloud.google.com/bigquerydataset_v1beta1.json similarity index 100% rename from bigquery.cnrm.cloud.google.com/bigquerydataset_v1beta1.json rename to crds/bigquery.cnrm.cloud.google.com/bigquerydataset_v1beta1.json diff --git a/bigquery.cnrm.cloud.google.com/bigquerydatasetaccess_v1alpha1.json b/crds/bigquery.cnrm.cloud.google.com/bigquerydatasetaccess_v1alpha1.json similarity index 100% rename from bigquery.cnrm.cloud.google.com/bigquerydatasetaccess_v1alpha1.json rename to crds/bigquery.cnrm.cloud.google.com/bigquerydatasetaccess_v1alpha1.json diff --git a/bigquery.cnrm.cloud.google.com/bigqueryjob_v1beta1.json b/crds/bigquery.cnrm.cloud.google.com/bigqueryjob_v1beta1.json similarity index 100% rename from bigquery.cnrm.cloud.google.com/bigqueryjob_v1beta1.json rename to crds/bigquery.cnrm.cloud.google.com/bigqueryjob_v1beta1.json diff --git a/bigquery.cnrm.cloud.google.com/bigqueryroutine_v1beta1.json b/crds/bigquery.cnrm.cloud.google.com/bigqueryroutine_v1beta1.json similarity index 100% rename from bigquery.cnrm.cloud.google.com/bigqueryroutine_v1beta1.json rename to crds/bigquery.cnrm.cloud.google.com/bigqueryroutine_v1beta1.json diff --git a/bigquery.cnrm.cloud.google.com/bigquerytable_v1beta1.json b/crds/bigquery.cnrm.cloud.google.com/bigquerytable_v1beta1.json similarity index 100% rename from bigquery.cnrm.cloud.google.com/bigquerytable_v1beta1.json rename to crds/bigquery.cnrm.cloud.google.com/bigquerytable_v1beta1.json diff --git a/bigqueryanalyticshub.cnrm.cloud.google.com/bigqueryanalyticshubdataexchange_v1alpha1.json b/crds/bigqueryanalyticshub.cnrm.cloud.google.com/bigqueryanalyticshubdataexchange_v1alpha1.json similarity index 100% rename from bigqueryanalyticshub.cnrm.cloud.google.com/bigqueryanalyticshubdataexchange_v1alpha1.json rename to crds/bigqueryanalyticshub.cnrm.cloud.google.com/bigqueryanalyticshubdataexchange_v1alpha1.json diff --git a/bigqueryanalyticshub.cnrm.cloud.google.com/bigqueryanalyticshubdataexchange_v1beta1.json b/crds/bigqueryanalyticshub.cnrm.cloud.google.com/bigqueryanalyticshubdataexchange_v1beta1.json similarity index 100% rename from bigqueryanalyticshub.cnrm.cloud.google.com/bigqueryanalyticshubdataexchange_v1beta1.json rename to crds/bigqueryanalyticshub.cnrm.cloud.google.com/bigqueryanalyticshubdataexchange_v1beta1.json diff --git a/bigqueryanalyticshub.cnrm.cloud.google.com/bigqueryanalyticshublisting_v1alpha1.json b/crds/bigqueryanalyticshub.cnrm.cloud.google.com/bigqueryanalyticshublisting_v1alpha1.json similarity index 100% rename from bigqueryanalyticshub.cnrm.cloud.google.com/bigqueryanalyticshublisting_v1alpha1.json rename to crds/bigqueryanalyticshub.cnrm.cloud.google.com/bigqueryanalyticshublisting_v1alpha1.json diff --git a/bigqueryconnection.cnrm.cloud.google.com/bigqueryconnectionconnection_v1alpha1.json b/crds/bigqueryconnection.cnrm.cloud.google.com/bigqueryconnectionconnection_v1alpha1.json similarity index 100% rename from bigqueryconnection.cnrm.cloud.google.com/bigqueryconnectionconnection_v1alpha1.json rename to crds/bigqueryconnection.cnrm.cloud.google.com/bigqueryconnectionconnection_v1alpha1.json diff --git a/bigqueryconnection.cnrm.cloud.google.com/bigqueryconnectionconnection_v1beta1.json b/crds/bigqueryconnection.cnrm.cloud.google.com/bigqueryconnectionconnection_v1beta1.json similarity index 100% rename from bigqueryconnection.cnrm.cloud.google.com/bigqueryconnectionconnection_v1beta1.json rename to crds/bigqueryconnection.cnrm.cloud.google.com/bigqueryconnectionconnection_v1beta1.json diff --git a/bigquerydatapolicy.cnrm.cloud.google.com/bigquerydatapolicydatapolicy_v1alpha1.json b/crds/bigquerydatapolicy.cnrm.cloud.google.com/bigquerydatapolicydatapolicy_v1alpha1.json similarity index 100% rename from bigquerydatapolicy.cnrm.cloud.google.com/bigquerydatapolicydatapolicy_v1alpha1.json rename to crds/bigquerydatapolicy.cnrm.cloud.google.com/bigquerydatapolicydatapolicy_v1alpha1.json diff --git a/bigquerydatatransfer.cnrm.cloud.google.com/bigquerydatatransferconfig_v1alpha1.json b/crds/bigquerydatatransfer.cnrm.cloud.google.com/bigquerydatatransferconfig_v1alpha1.json similarity index 100% rename from bigquerydatatransfer.cnrm.cloud.google.com/bigquerydatatransferconfig_v1alpha1.json rename to crds/bigquerydatatransfer.cnrm.cloud.google.com/bigquerydatatransferconfig_v1alpha1.json diff --git a/bigquerydatatransfer.cnrm.cloud.google.com/bigquerydatatransferconfig_v1beta1.json b/crds/bigquerydatatransfer.cnrm.cloud.google.com/bigquerydatatransferconfig_v1beta1.json similarity index 100% rename from bigquerydatatransfer.cnrm.cloud.google.com/bigquerydatatransferconfig_v1beta1.json rename to crds/bigquerydatatransfer.cnrm.cloud.google.com/bigquerydatatransferconfig_v1beta1.json diff --git a/bigqueryreservation.cnrm.cloud.google.com/bigqueryreservationcapacitycommitment_v1alpha1.json b/crds/bigqueryreservation.cnrm.cloud.google.com/bigqueryreservationcapacitycommitment_v1alpha1.json similarity index 100% rename from bigqueryreservation.cnrm.cloud.google.com/bigqueryreservationcapacitycommitment_v1alpha1.json rename to crds/bigqueryreservation.cnrm.cloud.google.com/bigqueryreservationcapacitycommitment_v1alpha1.json diff --git a/bigqueryreservation.cnrm.cloud.google.com/bigqueryreservationreservation_v1alpha1.json b/crds/bigqueryreservation.cnrm.cloud.google.com/bigqueryreservationreservation_v1alpha1.json similarity index 100% rename from bigqueryreservation.cnrm.cloud.google.com/bigqueryreservationreservation_v1alpha1.json rename to crds/bigqueryreservation.cnrm.cloud.google.com/bigqueryreservationreservation_v1alpha1.json diff --git a/bigtable.cnrm.cloud.google.com/bigtableappprofile_v1beta1.json b/crds/bigtable.cnrm.cloud.google.com/bigtableappprofile_v1beta1.json similarity index 100% rename from bigtable.cnrm.cloud.google.com/bigtableappprofile_v1beta1.json rename to crds/bigtable.cnrm.cloud.google.com/bigtableappprofile_v1beta1.json diff --git a/bigtable.cnrm.cloud.google.com/bigtablegcpolicy_v1beta1.json b/crds/bigtable.cnrm.cloud.google.com/bigtablegcpolicy_v1beta1.json similarity index 100% rename from bigtable.cnrm.cloud.google.com/bigtablegcpolicy_v1beta1.json rename to crds/bigtable.cnrm.cloud.google.com/bigtablegcpolicy_v1beta1.json diff --git a/bigtable.cnrm.cloud.google.com/bigtableinstance_v1beta1.json b/crds/bigtable.cnrm.cloud.google.com/bigtableinstance_v1beta1.json similarity index 100% rename from bigtable.cnrm.cloud.google.com/bigtableinstance_v1beta1.json rename to crds/bigtable.cnrm.cloud.google.com/bigtableinstance_v1beta1.json diff --git a/bigtable.cnrm.cloud.google.com/bigtabletable_v1beta1.json b/crds/bigtable.cnrm.cloud.google.com/bigtabletable_v1beta1.json similarity index 100% rename from bigtable.cnrm.cloud.google.com/bigtabletable_v1beta1.json rename to crds/bigtable.cnrm.cloud.google.com/bigtabletable_v1beta1.json diff --git a/billingbudgets.cnrm.cloud.google.com/billingbudgetsbudget_v1beta1.json b/crds/billingbudgets.cnrm.cloud.google.com/billingbudgetsbudget_v1beta1.json similarity index 100% rename from billingbudgets.cnrm.cloud.google.com/billingbudgetsbudget_v1beta1.json rename to crds/billingbudgets.cnrm.cloud.google.com/billingbudgetsbudget_v1beta1.json diff --git a/binaryauthorization.cnrm.cloud.google.com/binaryauthorizationattestor_v1beta1.json b/crds/binaryauthorization.cnrm.cloud.google.com/binaryauthorizationattestor_v1beta1.json similarity index 100% rename from binaryauthorization.cnrm.cloud.google.com/binaryauthorizationattestor_v1beta1.json rename to crds/binaryauthorization.cnrm.cloud.google.com/binaryauthorizationattestor_v1beta1.json diff --git a/binaryauthorization.cnrm.cloud.google.com/binaryauthorizationpolicy_v1beta1.json b/crds/binaryauthorization.cnrm.cloud.google.com/binaryauthorizationpolicy_v1beta1.json similarity index 100% rename from binaryauthorization.cnrm.cloud.google.com/binaryauthorizationpolicy_v1beta1.json rename to crds/binaryauthorization.cnrm.cloud.google.com/binaryauthorizationpolicy_v1beta1.json diff --git a/bitnami.com/sealedsecret_v1alpha1.json b/crds/bitnami.com/sealedsecret_v1alpha1.json similarity index 100% rename from bitnami.com/sealedsecret_v1alpha1.json rename to crds/bitnami.com/sealedsecret_v1alpha1.json diff --git a/bmc.tinkerbell.org/job_v1alpha1.json b/crds/bmc.tinkerbell.org/job_v1alpha1.json similarity index 100% rename from bmc.tinkerbell.org/job_v1alpha1.json rename to crds/bmc.tinkerbell.org/job_v1alpha1.json diff --git a/bmc.tinkerbell.org/machine_v1alpha1.json b/crds/bmc.tinkerbell.org/machine_v1alpha1.json similarity index 100% rename from bmc.tinkerbell.org/machine_v1alpha1.json rename to crds/bmc.tinkerbell.org/machine_v1alpha1.json diff --git a/bmc.tinkerbell.org/task_v1alpha1.json b/crds/bmc.tinkerbell.org/task_v1alpha1.json similarity index 100% rename from bmc.tinkerbell.org/task_v1alpha1.json rename to crds/bmc.tinkerbell.org/task_v1alpha1.json diff --git a/bootstrap.cluster.x-k8s.io/eksconfig_v1alpha3.json b/crds/bootstrap.cluster.x-k8s.io/eksconfig_v1alpha3.json similarity index 100% rename from bootstrap.cluster.x-k8s.io/eksconfig_v1alpha3.json rename to crds/bootstrap.cluster.x-k8s.io/eksconfig_v1alpha3.json diff --git a/bootstrap.cluster.x-k8s.io/eksconfig_v1alpha4.json b/crds/bootstrap.cluster.x-k8s.io/eksconfig_v1alpha4.json similarity index 100% rename from bootstrap.cluster.x-k8s.io/eksconfig_v1alpha4.json rename to crds/bootstrap.cluster.x-k8s.io/eksconfig_v1alpha4.json diff --git a/bootstrap.cluster.x-k8s.io/eksconfig_v1beta1.json b/crds/bootstrap.cluster.x-k8s.io/eksconfig_v1beta1.json similarity index 100% rename from bootstrap.cluster.x-k8s.io/eksconfig_v1beta1.json rename to crds/bootstrap.cluster.x-k8s.io/eksconfig_v1beta1.json diff --git a/bootstrap.cluster.x-k8s.io/eksconfig_v1beta2.json b/crds/bootstrap.cluster.x-k8s.io/eksconfig_v1beta2.json similarity index 100% rename from bootstrap.cluster.x-k8s.io/eksconfig_v1beta2.json rename to crds/bootstrap.cluster.x-k8s.io/eksconfig_v1beta2.json diff --git a/bootstrap.cluster.x-k8s.io/eksconfigtemplate_v1alpha3.json b/crds/bootstrap.cluster.x-k8s.io/eksconfigtemplate_v1alpha3.json similarity index 100% rename from bootstrap.cluster.x-k8s.io/eksconfigtemplate_v1alpha3.json rename to crds/bootstrap.cluster.x-k8s.io/eksconfigtemplate_v1alpha3.json diff --git a/bootstrap.cluster.x-k8s.io/eksconfigtemplate_v1alpha4.json b/crds/bootstrap.cluster.x-k8s.io/eksconfigtemplate_v1alpha4.json similarity index 100% rename from bootstrap.cluster.x-k8s.io/eksconfigtemplate_v1alpha4.json rename to crds/bootstrap.cluster.x-k8s.io/eksconfigtemplate_v1alpha4.json diff --git a/bootstrap.cluster.x-k8s.io/eksconfigtemplate_v1beta1.json b/crds/bootstrap.cluster.x-k8s.io/eksconfigtemplate_v1beta1.json similarity index 100% rename from bootstrap.cluster.x-k8s.io/eksconfigtemplate_v1beta1.json rename to crds/bootstrap.cluster.x-k8s.io/eksconfigtemplate_v1beta1.json diff --git a/bootstrap.cluster.x-k8s.io/eksconfigtemplate_v1beta2.json b/crds/bootstrap.cluster.x-k8s.io/eksconfigtemplate_v1beta2.json similarity index 100% rename from bootstrap.cluster.x-k8s.io/eksconfigtemplate_v1beta2.json rename to crds/bootstrap.cluster.x-k8s.io/eksconfigtemplate_v1beta2.json diff --git a/bootstrap.cluster.x-k8s.io/kubeadmconfig_v1alpha3.json b/crds/bootstrap.cluster.x-k8s.io/kubeadmconfig_v1alpha3.json similarity index 100% rename from bootstrap.cluster.x-k8s.io/kubeadmconfig_v1alpha3.json rename to crds/bootstrap.cluster.x-k8s.io/kubeadmconfig_v1alpha3.json diff --git a/bootstrap.cluster.x-k8s.io/kubeadmconfig_v1alpha4.json b/crds/bootstrap.cluster.x-k8s.io/kubeadmconfig_v1alpha4.json similarity index 100% rename from bootstrap.cluster.x-k8s.io/kubeadmconfig_v1alpha4.json rename to crds/bootstrap.cluster.x-k8s.io/kubeadmconfig_v1alpha4.json diff --git a/bootstrap.cluster.x-k8s.io/kubeadmconfig_v1beta1.json b/crds/bootstrap.cluster.x-k8s.io/kubeadmconfig_v1beta1.json similarity index 100% rename from bootstrap.cluster.x-k8s.io/kubeadmconfig_v1beta1.json rename to crds/bootstrap.cluster.x-k8s.io/kubeadmconfig_v1beta1.json diff --git a/bootstrap.cluster.x-k8s.io/kubeadmconfigtemplate_v1alpha3.json b/crds/bootstrap.cluster.x-k8s.io/kubeadmconfigtemplate_v1alpha3.json similarity index 100% rename from bootstrap.cluster.x-k8s.io/kubeadmconfigtemplate_v1alpha3.json rename to crds/bootstrap.cluster.x-k8s.io/kubeadmconfigtemplate_v1alpha3.json diff --git a/bootstrap.cluster.x-k8s.io/kubeadmconfigtemplate_v1alpha4.json b/crds/bootstrap.cluster.x-k8s.io/kubeadmconfigtemplate_v1alpha4.json similarity index 100% rename from bootstrap.cluster.x-k8s.io/kubeadmconfigtemplate_v1alpha4.json rename to crds/bootstrap.cluster.x-k8s.io/kubeadmconfigtemplate_v1alpha4.json diff --git a/bootstrap.cluster.x-k8s.io/kubeadmconfigtemplate_v1beta1.json b/crds/bootstrap.cluster.x-k8s.io/kubeadmconfigtemplate_v1beta1.json similarity index 100% rename from bootstrap.cluster.x-k8s.io/kubeadmconfigtemplate_v1beta1.json rename to crds/bootstrap.cluster.x-k8s.io/kubeadmconfigtemplate_v1beta1.json diff --git a/capsule.clastix.io/capsuleconfiguration_v1beta2.json b/crds/capsule.clastix.io/capsuleconfiguration_v1beta2.json similarity index 100% rename from capsule.clastix.io/capsuleconfiguration_v1beta2.json rename to crds/capsule.clastix.io/capsuleconfiguration_v1beta2.json diff --git a/capsule.clastix.io/globaltenantresource_v1beta2.json b/crds/capsule.clastix.io/globaltenantresource_v1beta2.json similarity index 100% rename from capsule.clastix.io/globaltenantresource_v1beta2.json rename to crds/capsule.clastix.io/globaltenantresource_v1beta2.json diff --git a/capsule.clastix.io/tenant_v1beta1.json b/crds/capsule.clastix.io/tenant_v1beta1.json similarity index 100% rename from capsule.clastix.io/tenant_v1beta1.json rename to crds/capsule.clastix.io/tenant_v1beta1.json diff --git a/capsule.clastix.io/tenant_v1beta2.json b/crds/capsule.clastix.io/tenant_v1beta2.json similarity index 100% rename from capsule.clastix.io/tenant_v1beta2.json rename to crds/capsule.clastix.io/tenant_v1beta2.json diff --git a/capsule.clastix.io/tenantresource_v1beta2.json b/crds/capsule.clastix.io/tenantresource_v1beta2.json similarity index 100% rename from capsule.clastix.io/tenantresource_v1beta2.json rename to crds/capsule.clastix.io/tenantresource_v1beta2.json diff --git a/ceph.rook.io/cephblockpool_v1.json b/crds/ceph.rook.io/cephblockpool_v1.json similarity index 100% rename from ceph.rook.io/cephblockpool_v1.json rename to crds/ceph.rook.io/cephblockpool_v1.json diff --git a/ceph.rook.io/cephblockpoolradosnamespace_v1.json b/crds/ceph.rook.io/cephblockpoolradosnamespace_v1.json similarity index 100% rename from ceph.rook.io/cephblockpoolradosnamespace_v1.json rename to crds/ceph.rook.io/cephblockpoolradosnamespace_v1.json diff --git a/ceph.rook.io/cephbucketnotification_v1.json b/crds/ceph.rook.io/cephbucketnotification_v1.json similarity index 100% rename from ceph.rook.io/cephbucketnotification_v1.json rename to crds/ceph.rook.io/cephbucketnotification_v1.json diff --git a/ceph.rook.io/cephbuckettopic_v1.json b/crds/ceph.rook.io/cephbuckettopic_v1.json similarity index 100% rename from ceph.rook.io/cephbuckettopic_v1.json rename to crds/ceph.rook.io/cephbuckettopic_v1.json diff --git a/ceph.rook.io/cephclient_v1.json b/crds/ceph.rook.io/cephclient_v1.json similarity index 100% rename from ceph.rook.io/cephclient_v1.json rename to crds/ceph.rook.io/cephclient_v1.json diff --git a/ceph.rook.io/cephcluster_v1.json b/crds/ceph.rook.io/cephcluster_v1.json similarity index 100% rename from ceph.rook.io/cephcluster_v1.json rename to crds/ceph.rook.io/cephcluster_v1.json diff --git a/ceph.rook.io/cephcosidriver_v1.json b/crds/ceph.rook.io/cephcosidriver_v1.json similarity index 100% rename from ceph.rook.io/cephcosidriver_v1.json rename to crds/ceph.rook.io/cephcosidriver_v1.json diff --git a/ceph.rook.io/cephfilesystem_v1.json b/crds/ceph.rook.io/cephfilesystem_v1.json similarity index 100% rename from ceph.rook.io/cephfilesystem_v1.json rename to crds/ceph.rook.io/cephfilesystem_v1.json diff --git a/ceph.rook.io/cephfilesystemmirror_v1.json b/crds/ceph.rook.io/cephfilesystemmirror_v1.json similarity index 100% rename from ceph.rook.io/cephfilesystemmirror_v1.json rename to crds/ceph.rook.io/cephfilesystemmirror_v1.json diff --git a/ceph.rook.io/cephfilesystemsubvolumegroup_v1.json b/crds/ceph.rook.io/cephfilesystemsubvolumegroup_v1.json similarity index 100% rename from ceph.rook.io/cephfilesystemsubvolumegroup_v1.json rename to crds/ceph.rook.io/cephfilesystemsubvolumegroup_v1.json diff --git a/ceph.rook.io/cephnfs_v1.json b/crds/ceph.rook.io/cephnfs_v1.json similarity index 100% rename from ceph.rook.io/cephnfs_v1.json rename to crds/ceph.rook.io/cephnfs_v1.json diff --git a/ceph.rook.io/cephobjectrealm_v1.json b/crds/ceph.rook.io/cephobjectrealm_v1.json similarity index 100% rename from ceph.rook.io/cephobjectrealm_v1.json rename to crds/ceph.rook.io/cephobjectrealm_v1.json diff --git a/ceph.rook.io/cephobjectstore_v1.json b/crds/ceph.rook.io/cephobjectstore_v1.json similarity index 100% rename from ceph.rook.io/cephobjectstore_v1.json rename to crds/ceph.rook.io/cephobjectstore_v1.json diff --git a/ceph.rook.io/cephobjectstoreuser_v1.json b/crds/ceph.rook.io/cephobjectstoreuser_v1.json similarity index 100% rename from ceph.rook.io/cephobjectstoreuser_v1.json rename to crds/ceph.rook.io/cephobjectstoreuser_v1.json diff --git a/ceph.rook.io/cephobjectzone_v1.json b/crds/ceph.rook.io/cephobjectzone_v1.json similarity index 100% rename from ceph.rook.io/cephobjectzone_v1.json rename to crds/ceph.rook.io/cephobjectzone_v1.json diff --git a/ceph.rook.io/cephobjectzonegroup_v1.json b/crds/ceph.rook.io/cephobjectzonegroup_v1.json similarity index 100% rename from ceph.rook.io/cephobjectzonegroup_v1.json rename to crds/ceph.rook.io/cephobjectzonegroup_v1.json diff --git a/ceph.rook.io/cephrbdmirror_v1.json b/crds/ceph.rook.io/cephrbdmirror_v1.json similarity index 100% rename from ceph.rook.io/cephrbdmirror_v1.json rename to crds/ceph.rook.io/cephrbdmirror_v1.json diff --git a/cert-manager.io/certificate_v1.json b/crds/cert-manager.io/certificate_v1.json similarity index 100% rename from cert-manager.io/certificate_v1.json rename to crds/cert-manager.io/certificate_v1.json diff --git a/cert-manager.io/certificaterequest_v1.json b/crds/cert-manager.io/certificaterequest_v1.json similarity index 100% rename from cert-manager.io/certificaterequest_v1.json rename to crds/cert-manager.io/certificaterequest_v1.json diff --git a/cert-manager.io/clusterissuer_v1.json b/crds/cert-manager.io/clusterissuer_v1.json similarity index 100% rename from cert-manager.io/clusterissuer_v1.json rename to crds/cert-manager.io/clusterissuer_v1.json diff --git a/cert-manager.io/issuer_v1.json b/crds/cert-manager.io/issuer_v1.json similarity index 100% rename from cert-manager.io/issuer_v1.json rename to crds/cert-manager.io/issuer_v1.json diff --git a/cert-manager.k8s.cloudflare.com/originissuer_v1.json b/crds/cert-manager.k8s.cloudflare.com/originissuer_v1.json similarity index 100% rename from cert-manager.k8s.cloudflare.com/originissuer_v1.json rename to crds/cert-manager.k8s.cloudflare.com/originissuer_v1.json diff --git a/certificatemanager.cnrm.cloud.google.com/certificatemanagercertificate_v1alpha1.json b/crds/certificatemanager.cnrm.cloud.google.com/certificatemanagercertificate_v1alpha1.json similarity index 100% rename from certificatemanager.cnrm.cloud.google.com/certificatemanagercertificate_v1alpha1.json rename to crds/certificatemanager.cnrm.cloud.google.com/certificatemanagercertificate_v1alpha1.json diff --git a/certificatemanager.cnrm.cloud.google.com/certificatemanagercertificate_v1beta1.json b/crds/certificatemanager.cnrm.cloud.google.com/certificatemanagercertificate_v1beta1.json similarity index 100% rename from certificatemanager.cnrm.cloud.google.com/certificatemanagercertificate_v1beta1.json rename to crds/certificatemanager.cnrm.cloud.google.com/certificatemanagercertificate_v1beta1.json diff --git a/certificatemanager.cnrm.cloud.google.com/certificatemanagercertificatemap_v1alpha1.json b/crds/certificatemanager.cnrm.cloud.google.com/certificatemanagercertificatemap_v1alpha1.json similarity index 100% rename from certificatemanager.cnrm.cloud.google.com/certificatemanagercertificatemap_v1alpha1.json rename to crds/certificatemanager.cnrm.cloud.google.com/certificatemanagercertificatemap_v1alpha1.json diff --git a/certificatemanager.cnrm.cloud.google.com/certificatemanagercertificatemap_v1beta1.json b/crds/certificatemanager.cnrm.cloud.google.com/certificatemanagercertificatemap_v1beta1.json similarity index 100% rename from certificatemanager.cnrm.cloud.google.com/certificatemanagercertificatemap_v1beta1.json rename to crds/certificatemanager.cnrm.cloud.google.com/certificatemanagercertificatemap_v1beta1.json diff --git a/certificatemanager.cnrm.cloud.google.com/certificatemanagercertificatemapentry_v1alpha1.json b/crds/certificatemanager.cnrm.cloud.google.com/certificatemanagercertificatemapentry_v1alpha1.json similarity index 100% rename from certificatemanager.cnrm.cloud.google.com/certificatemanagercertificatemapentry_v1alpha1.json rename to crds/certificatemanager.cnrm.cloud.google.com/certificatemanagercertificatemapentry_v1alpha1.json diff --git a/certificatemanager.cnrm.cloud.google.com/certificatemanagercertificatemapentry_v1beta1.json b/crds/certificatemanager.cnrm.cloud.google.com/certificatemanagercertificatemapentry_v1beta1.json similarity index 100% rename from certificatemanager.cnrm.cloud.google.com/certificatemanagercertificatemapentry_v1beta1.json rename to crds/certificatemanager.cnrm.cloud.google.com/certificatemanagercertificatemapentry_v1beta1.json diff --git a/certificatemanager.cnrm.cloud.google.com/certificatemanagerdnsauthorization_v1alpha1.json b/crds/certificatemanager.cnrm.cloud.google.com/certificatemanagerdnsauthorization_v1alpha1.json similarity index 100% rename from certificatemanager.cnrm.cloud.google.com/certificatemanagerdnsauthorization_v1alpha1.json rename to crds/certificatemanager.cnrm.cloud.google.com/certificatemanagerdnsauthorization_v1alpha1.json diff --git a/certificatemanager.cnrm.cloud.google.com/certificatemanagerdnsauthorization_v1beta1.json b/crds/certificatemanager.cnrm.cloud.google.com/certificatemanagerdnsauthorization_v1beta1.json similarity index 100% rename from certificatemanager.cnrm.cloud.google.com/certificatemanagerdnsauthorization_v1beta1.json rename to crds/certificatemanager.cnrm.cloud.google.com/certificatemanagerdnsauthorization_v1beta1.json diff --git a/chisel-operator.io/exitnode_v1.json b/crds/chisel-operator.io/exitnode_v1.json similarity index 100% rename from chisel-operator.io/exitnode_v1.json rename to crds/chisel-operator.io/exitnode_v1.json diff --git a/chisel-operator.io/exitnodeprovisioner_v1.json b/crds/chisel-operator.io/exitnodeprovisioner_v1.json similarity index 100% rename from chisel-operator.io/exitnodeprovisioner_v1.json rename to crds/chisel-operator.io/exitnodeprovisioner_v1.json diff --git a/cilium.io/ciliumbgppeeringpolicy_v2alpha1.json b/crds/cilium.io/ciliumbgppeeringpolicy_v2alpha1.json similarity index 100% rename from cilium.io/ciliumbgppeeringpolicy_v2alpha1.json rename to crds/cilium.io/ciliumbgppeeringpolicy_v2alpha1.json diff --git a/cilium.io/ciliumcidrgroup_v2alpha1.json b/crds/cilium.io/ciliumcidrgroup_v2alpha1.json similarity index 100% rename from cilium.io/ciliumcidrgroup_v2alpha1.json rename to crds/cilium.io/ciliumcidrgroup_v2alpha1.json diff --git a/cilium.io/ciliumclusterwideenvoyconfig_v2.json b/crds/cilium.io/ciliumclusterwideenvoyconfig_v2.json similarity index 100% rename from cilium.io/ciliumclusterwideenvoyconfig_v2.json rename to crds/cilium.io/ciliumclusterwideenvoyconfig_v2.json diff --git a/cilium.io/ciliumclusterwidenetworkpolicy_v2.json b/crds/cilium.io/ciliumclusterwidenetworkpolicy_v2.json similarity index 100% rename from cilium.io/ciliumclusterwidenetworkpolicy_v2.json rename to crds/cilium.io/ciliumclusterwidenetworkpolicy_v2.json diff --git a/cilium.io/ciliumegressgatewaypolicy_v2.json b/crds/cilium.io/ciliumegressgatewaypolicy_v2.json similarity index 100% rename from cilium.io/ciliumegressgatewaypolicy_v2.json rename to crds/cilium.io/ciliumegressgatewaypolicy_v2.json diff --git a/cilium.io/ciliumendpoint_v2.json b/crds/cilium.io/ciliumendpoint_v2.json similarity index 100% rename from cilium.io/ciliumendpoint_v2.json rename to crds/cilium.io/ciliumendpoint_v2.json diff --git a/cilium.io/ciliumendpointslice_v2alpha1.json b/crds/cilium.io/ciliumendpointslice_v2alpha1.json similarity index 100% rename from cilium.io/ciliumendpointslice_v2alpha1.json rename to crds/cilium.io/ciliumendpointslice_v2alpha1.json diff --git a/cilium.io/ciliumenvoyconfig_v2.json b/crds/cilium.io/ciliumenvoyconfig_v2.json similarity index 100% rename from cilium.io/ciliumenvoyconfig_v2.json rename to crds/cilium.io/ciliumenvoyconfig_v2.json diff --git a/cilium.io/ciliumexternalworkload_v2.json b/crds/cilium.io/ciliumexternalworkload_v2.json similarity index 100% rename from cilium.io/ciliumexternalworkload_v2.json rename to crds/cilium.io/ciliumexternalworkload_v2.json diff --git a/cilium.io/ciliumidentity_v2.json b/crds/cilium.io/ciliumidentity_v2.json similarity index 100% rename from cilium.io/ciliumidentity_v2.json rename to crds/cilium.io/ciliumidentity_v2.json diff --git a/cilium.io/ciliuml2announcementpolicy_v2alpha1.json b/crds/cilium.io/ciliuml2announcementpolicy_v2alpha1.json similarity index 100% rename from cilium.io/ciliuml2announcementpolicy_v2alpha1.json rename to crds/cilium.io/ciliuml2announcementpolicy_v2alpha1.json diff --git a/cilium.io/ciliumloadbalancerippool_v2alpha1.json b/crds/cilium.io/ciliumloadbalancerippool_v2alpha1.json similarity index 100% rename from cilium.io/ciliumloadbalancerippool_v2alpha1.json rename to crds/cilium.io/ciliumloadbalancerippool_v2alpha1.json diff --git a/cilium.io/ciliumlocalredirectpolicy_v2.json b/crds/cilium.io/ciliumlocalredirectpolicy_v2.json similarity index 100% rename from cilium.io/ciliumlocalredirectpolicy_v2.json rename to crds/cilium.io/ciliumlocalredirectpolicy_v2.json diff --git a/cilium.io/ciliumnetworkpolicy_v2.json b/crds/cilium.io/ciliumnetworkpolicy_v2.json similarity index 100% rename from cilium.io/ciliumnetworkpolicy_v2.json rename to crds/cilium.io/ciliumnetworkpolicy_v2.json diff --git a/cilium.io/ciliumnode_v2.json b/crds/cilium.io/ciliumnode_v2.json similarity index 100% rename from cilium.io/ciliumnode_v2.json rename to crds/cilium.io/ciliumnode_v2.json diff --git a/cilium.io/ciliumnodeconfig_v2.json b/crds/cilium.io/ciliumnodeconfig_v2.json similarity index 100% rename from cilium.io/ciliumnodeconfig_v2.json rename to crds/cilium.io/ciliumnodeconfig_v2.json diff --git a/cilium.io/ciliumnodeconfig_v2alpha1.json b/crds/cilium.io/ciliumnodeconfig_v2alpha1.json similarity index 100% rename from cilium.io/ciliumnodeconfig_v2alpha1.json rename to crds/cilium.io/ciliumnodeconfig_v2alpha1.json diff --git a/cilium.io/ciliumpodippool_v2alpha1.json b/crds/cilium.io/ciliumpodippool_v2alpha1.json similarity index 100% rename from cilium.io/ciliumpodippool_v2alpha1.json rename to crds/cilium.io/ciliumpodippool_v2alpha1.json diff --git a/cloud.google.com/backendconfig_v1.json b/crds/cloud.google.com/backendconfig_v1.json similarity index 100% rename from cloud.google.com/backendconfig_v1.json rename to crds/cloud.google.com/backendconfig_v1.json diff --git a/cloud.google.com/backendconfig_v1beta1.json b/crds/cloud.google.com/backendconfig_v1beta1.json similarity index 100% rename from cloud.google.com/backendconfig_v1beta1.json rename to crds/cloud.google.com/backendconfig_v1beta1.json diff --git a/cloudasset.cnrm.cloud.google.com/cloudassetfolderfeed_v1alpha1.json b/crds/cloudasset.cnrm.cloud.google.com/cloudassetfolderfeed_v1alpha1.json similarity index 100% rename from cloudasset.cnrm.cloud.google.com/cloudassetfolderfeed_v1alpha1.json rename to crds/cloudasset.cnrm.cloud.google.com/cloudassetfolderfeed_v1alpha1.json diff --git a/cloudasset.cnrm.cloud.google.com/cloudassetorganizationfeed_v1alpha1.json b/crds/cloudasset.cnrm.cloud.google.com/cloudassetorganizationfeed_v1alpha1.json similarity index 100% rename from cloudasset.cnrm.cloud.google.com/cloudassetorganizationfeed_v1alpha1.json rename to crds/cloudasset.cnrm.cloud.google.com/cloudassetorganizationfeed_v1alpha1.json diff --git a/cloudasset.cnrm.cloud.google.com/cloudassetprojectfeed_v1alpha1.json b/crds/cloudasset.cnrm.cloud.google.com/cloudassetprojectfeed_v1alpha1.json similarity index 100% rename from cloudasset.cnrm.cloud.google.com/cloudassetprojectfeed_v1alpha1.json rename to crds/cloudasset.cnrm.cloud.google.com/cloudassetprojectfeed_v1alpha1.json diff --git a/cloudbuild.cnrm.cloud.google.com/cloudbuildtrigger_v1beta1.json b/crds/cloudbuild.cnrm.cloud.google.com/cloudbuildtrigger_v1beta1.json similarity index 100% rename from cloudbuild.cnrm.cloud.google.com/cloudbuildtrigger_v1beta1.json rename to crds/cloudbuild.cnrm.cloud.google.com/cloudbuildtrigger_v1beta1.json diff --git a/cloudbuild.cnrm.cloud.google.com/cloudbuildworkerpool_v1alpha1.json b/crds/cloudbuild.cnrm.cloud.google.com/cloudbuildworkerpool_v1alpha1.json similarity index 100% rename from cloudbuild.cnrm.cloud.google.com/cloudbuildworkerpool_v1alpha1.json rename to crds/cloudbuild.cnrm.cloud.google.com/cloudbuildworkerpool_v1alpha1.json diff --git a/cloudbuild.cnrm.cloud.google.com/cloudbuildworkerpool_v1beta1.json b/crds/cloudbuild.cnrm.cloud.google.com/cloudbuildworkerpool_v1beta1.json similarity index 100% rename from cloudbuild.cnrm.cloud.google.com/cloudbuildworkerpool_v1beta1.json rename to crds/cloudbuild.cnrm.cloud.google.com/cloudbuildworkerpool_v1beta1.json diff --git a/cloudflare-operator.io/account_v1.json b/crds/cloudflare-operator.io/account_v1.json similarity index 100% rename from cloudflare-operator.io/account_v1.json rename to crds/cloudflare-operator.io/account_v1.json diff --git a/cloudflare-operator.io/dnsrecord_v1.json b/crds/cloudflare-operator.io/dnsrecord_v1.json similarity index 100% rename from cloudflare-operator.io/dnsrecord_v1.json rename to crds/cloudflare-operator.io/dnsrecord_v1.json diff --git a/cloudflare-operator.io/ip_v1.json b/crds/cloudflare-operator.io/ip_v1.json similarity index 100% rename from cloudflare-operator.io/ip_v1.json rename to crds/cloudflare-operator.io/ip_v1.json diff --git a/cloudflare-operator.io/zone_v1.json b/crds/cloudflare-operator.io/zone_v1.json similarity index 100% rename from cloudflare-operator.io/zone_v1.json rename to crds/cloudflare-operator.io/zone_v1.json diff --git a/cloudfront.services.k8s.aws/cachepolicy_v1alpha1.json b/crds/cloudfront.services.k8s.aws/cachepolicy_v1alpha1.json similarity index 100% rename from cloudfront.services.k8s.aws/cachepolicy_v1alpha1.json rename to crds/cloudfront.services.k8s.aws/cachepolicy_v1alpha1.json diff --git a/cloudfunctions.cnrm.cloud.google.com/cloudfunctionsfunction_v1beta1.json b/crds/cloudfunctions.cnrm.cloud.google.com/cloudfunctionsfunction_v1beta1.json similarity index 100% rename from cloudfunctions.cnrm.cloud.google.com/cloudfunctionsfunction_v1beta1.json rename to crds/cloudfunctions.cnrm.cloud.google.com/cloudfunctionsfunction_v1beta1.json diff --git a/cloudfunctions2.cnrm.cloud.google.com/cloudfunctions2function_v1alpha1.json b/crds/cloudfunctions2.cnrm.cloud.google.com/cloudfunctions2function_v1alpha1.json similarity index 100% rename from cloudfunctions2.cnrm.cloud.google.com/cloudfunctions2function_v1alpha1.json rename to crds/cloudfunctions2.cnrm.cloud.google.com/cloudfunctions2function_v1alpha1.json diff --git a/cloudidentity.cnrm.cloud.google.com/cloudidentitygroup_v1beta1.json b/crds/cloudidentity.cnrm.cloud.google.com/cloudidentitygroup_v1beta1.json similarity index 100% rename from cloudidentity.cnrm.cloud.google.com/cloudidentitygroup_v1beta1.json rename to crds/cloudidentity.cnrm.cloud.google.com/cloudidentitygroup_v1beta1.json diff --git a/cloudidentity.cnrm.cloud.google.com/cloudidentitymembership_v1beta1.json b/crds/cloudidentity.cnrm.cloud.google.com/cloudidentitymembership_v1beta1.json similarity index 100% rename from cloudidentity.cnrm.cloud.google.com/cloudidentitymembership_v1beta1.json rename to crds/cloudidentity.cnrm.cloud.google.com/cloudidentitymembership_v1beta1.json diff --git a/cloudids.cnrm.cloud.google.com/cloudidsendpoint_v1alpha1.json b/crds/cloudids.cnrm.cloud.google.com/cloudidsendpoint_v1alpha1.json similarity index 100% rename from cloudids.cnrm.cloud.google.com/cloudidsendpoint_v1alpha1.json rename to crds/cloudids.cnrm.cloud.google.com/cloudidsendpoint_v1alpha1.json diff --git a/cloudids.cnrm.cloud.google.com/cloudidsendpoint_v1beta1.json b/crds/cloudids.cnrm.cloud.google.com/cloudidsendpoint_v1beta1.json similarity index 100% rename from cloudids.cnrm.cloud.google.com/cloudidsendpoint_v1beta1.json rename to crds/cloudids.cnrm.cloud.google.com/cloudidsendpoint_v1beta1.json diff --git a/cloudiot.cnrm.cloud.google.com/cloudiotdevice_v1alpha1.json b/crds/cloudiot.cnrm.cloud.google.com/cloudiotdevice_v1alpha1.json similarity index 100% rename from cloudiot.cnrm.cloud.google.com/cloudiotdevice_v1alpha1.json rename to crds/cloudiot.cnrm.cloud.google.com/cloudiotdevice_v1alpha1.json diff --git a/cloudiot.cnrm.cloud.google.com/cloudiotdeviceregistry_v1alpha1.json b/crds/cloudiot.cnrm.cloud.google.com/cloudiotdeviceregistry_v1alpha1.json similarity index 100% rename from cloudiot.cnrm.cloud.google.com/cloudiotdeviceregistry_v1alpha1.json rename to crds/cloudiot.cnrm.cloud.google.com/cloudiotdeviceregistry_v1alpha1.json diff --git a/cloudscheduler.cnrm.cloud.google.com/cloudschedulerjob_v1beta1.json b/crds/cloudscheduler.cnrm.cloud.google.com/cloudschedulerjob_v1beta1.json similarity index 100% rename from cloudscheduler.cnrm.cloud.google.com/cloudschedulerjob_v1beta1.json rename to crds/cloudscheduler.cnrm.cloud.google.com/cloudschedulerjob_v1beta1.json diff --git a/cloudsql.cloud.google.com/authproxyworkload_v1.json b/crds/cloudsql.cloud.google.com/authproxyworkload_v1.json similarity index 100% rename from cloudsql.cloud.google.com/authproxyworkload_v1.json rename to crds/cloudsql.cloud.google.com/authproxyworkload_v1.json diff --git a/cloudtasks.cnrm.cloud.google.com/cloudtasksqueue_v1alpha1.json b/crds/cloudtasks.cnrm.cloud.google.com/cloudtasksqueue_v1alpha1.json similarity index 100% rename from cloudtasks.cnrm.cloud.google.com/cloudtasksqueue_v1alpha1.json rename to crds/cloudtasks.cnrm.cloud.google.com/cloudtasksqueue_v1alpha1.json diff --git a/cloudtrail.services.k8s.aws/eventdatastore_v1alpha1.json b/crds/cloudtrail.services.k8s.aws/eventdatastore_v1alpha1.json similarity index 100% rename from cloudtrail.services.k8s.aws/eventdatastore_v1alpha1.json rename to crds/cloudtrail.services.k8s.aws/eventdatastore_v1alpha1.json diff --git a/cloudtrail.services.k8s.aws/trail_v1alpha1.json b/crds/cloudtrail.services.k8s.aws/trail_v1alpha1.json similarity index 100% rename from cloudtrail.services.k8s.aws/trail_v1alpha1.json rename to crds/cloudtrail.services.k8s.aws/trail_v1alpha1.json diff --git a/cloudwatchlogs.services.k8s.aws/loggroup_v1alpha1.json b/crds/cloudwatchlogs.services.k8s.aws/loggroup_v1alpha1.json similarity index 100% rename from cloudwatchlogs.services.k8s.aws/loggroup_v1alpha1.json rename to crds/cloudwatchlogs.services.k8s.aws/loggroup_v1alpha1.json diff --git a/cluster.x-k8s.io/cluster_v1alpha1.json b/crds/cluster.x-k8s.io/cluster_v1alpha1.json similarity index 100% rename from cluster.x-k8s.io/cluster_v1alpha1.json rename to crds/cluster.x-k8s.io/cluster_v1alpha1.json diff --git a/cluster.x-k8s.io/cluster_v1alpha2.json b/crds/cluster.x-k8s.io/cluster_v1alpha2.json similarity index 100% rename from cluster.x-k8s.io/cluster_v1alpha2.json rename to crds/cluster.x-k8s.io/cluster_v1alpha2.json diff --git a/cluster.x-k8s.io/cluster_v1alpha3.json b/crds/cluster.x-k8s.io/cluster_v1alpha3.json similarity index 100% rename from cluster.x-k8s.io/cluster_v1alpha3.json rename to crds/cluster.x-k8s.io/cluster_v1alpha3.json diff --git a/cluster.x-k8s.io/cluster_v1alpha4.json b/crds/cluster.x-k8s.io/cluster_v1alpha4.json similarity index 100% rename from cluster.x-k8s.io/cluster_v1alpha4.json rename to crds/cluster.x-k8s.io/cluster_v1alpha4.json diff --git a/cluster.x-k8s.io/cluster_v1beta1.json b/crds/cluster.x-k8s.io/cluster_v1beta1.json similarity index 100% rename from cluster.x-k8s.io/cluster_v1beta1.json rename to crds/cluster.x-k8s.io/cluster_v1beta1.json diff --git a/cluster.x-k8s.io/clusterclass_v1alpha4.json b/crds/cluster.x-k8s.io/clusterclass_v1alpha4.json similarity index 100% rename from cluster.x-k8s.io/clusterclass_v1alpha4.json rename to crds/cluster.x-k8s.io/clusterclass_v1alpha4.json diff --git a/cluster.x-k8s.io/clusterclass_v1beta1.json b/crds/cluster.x-k8s.io/clusterclass_v1beta1.json similarity index 100% rename from cluster.x-k8s.io/clusterclass_v1beta1.json rename to crds/cluster.x-k8s.io/clusterclass_v1beta1.json diff --git a/cluster.x-k8s.io/machine_v1alpha1.json b/crds/cluster.x-k8s.io/machine_v1alpha1.json similarity index 100% rename from cluster.x-k8s.io/machine_v1alpha1.json rename to crds/cluster.x-k8s.io/machine_v1alpha1.json diff --git a/cluster.x-k8s.io/machine_v1alpha2.json b/crds/cluster.x-k8s.io/machine_v1alpha2.json similarity index 100% rename from cluster.x-k8s.io/machine_v1alpha2.json rename to crds/cluster.x-k8s.io/machine_v1alpha2.json diff --git a/cluster.x-k8s.io/machine_v1alpha3.json b/crds/cluster.x-k8s.io/machine_v1alpha3.json similarity index 100% rename from cluster.x-k8s.io/machine_v1alpha3.json rename to crds/cluster.x-k8s.io/machine_v1alpha3.json diff --git a/cluster.x-k8s.io/machine_v1alpha4.json b/crds/cluster.x-k8s.io/machine_v1alpha4.json similarity index 100% rename from cluster.x-k8s.io/machine_v1alpha4.json rename to crds/cluster.x-k8s.io/machine_v1alpha4.json diff --git a/cluster.x-k8s.io/machine_v1beta1.json b/crds/cluster.x-k8s.io/machine_v1beta1.json similarity index 100% rename from cluster.x-k8s.io/machine_v1beta1.json rename to crds/cluster.x-k8s.io/machine_v1beta1.json diff --git a/cluster.x-k8s.io/machineclass_v1alpha1.json b/crds/cluster.x-k8s.io/machineclass_v1alpha1.json similarity index 100% rename from cluster.x-k8s.io/machineclass_v1alpha1.json rename to crds/cluster.x-k8s.io/machineclass_v1alpha1.json diff --git a/cluster.x-k8s.io/machinedeployment_v1alpha1.json b/crds/cluster.x-k8s.io/machinedeployment_v1alpha1.json similarity index 100% rename from cluster.x-k8s.io/machinedeployment_v1alpha1.json rename to crds/cluster.x-k8s.io/machinedeployment_v1alpha1.json diff --git a/cluster.x-k8s.io/machinedeployment_v1alpha2.json b/crds/cluster.x-k8s.io/machinedeployment_v1alpha2.json similarity index 100% rename from cluster.x-k8s.io/machinedeployment_v1alpha2.json rename to crds/cluster.x-k8s.io/machinedeployment_v1alpha2.json diff --git a/cluster.x-k8s.io/machinedeployment_v1alpha3.json b/crds/cluster.x-k8s.io/machinedeployment_v1alpha3.json similarity index 100% rename from cluster.x-k8s.io/machinedeployment_v1alpha3.json rename to crds/cluster.x-k8s.io/machinedeployment_v1alpha3.json diff --git a/cluster.x-k8s.io/machinedeployment_v1alpha4.json b/crds/cluster.x-k8s.io/machinedeployment_v1alpha4.json similarity index 100% rename from cluster.x-k8s.io/machinedeployment_v1alpha4.json rename to crds/cluster.x-k8s.io/machinedeployment_v1alpha4.json diff --git a/cluster.x-k8s.io/machinedeployment_v1beta1.json b/crds/cluster.x-k8s.io/machinedeployment_v1beta1.json similarity index 100% rename from cluster.x-k8s.io/machinedeployment_v1beta1.json rename to crds/cluster.x-k8s.io/machinedeployment_v1beta1.json diff --git a/cluster.x-k8s.io/machinehealthcheck_v1alpha3.json b/crds/cluster.x-k8s.io/machinehealthcheck_v1alpha3.json similarity index 100% rename from cluster.x-k8s.io/machinehealthcheck_v1alpha3.json rename to crds/cluster.x-k8s.io/machinehealthcheck_v1alpha3.json diff --git a/cluster.x-k8s.io/machinehealthcheck_v1alpha4.json b/crds/cluster.x-k8s.io/machinehealthcheck_v1alpha4.json similarity index 100% rename from cluster.x-k8s.io/machinehealthcheck_v1alpha4.json rename to crds/cluster.x-k8s.io/machinehealthcheck_v1alpha4.json diff --git a/cluster.x-k8s.io/machinehealthcheck_v1beta1.json b/crds/cluster.x-k8s.io/machinehealthcheck_v1beta1.json similarity index 100% rename from cluster.x-k8s.io/machinehealthcheck_v1beta1.json rename to crds/cluster.x-k8s.io/machinehealthcheck_v1beta1.json diff --git a/cluster.x-k8s.io/machinepool_v1alpha3.json b/crds/cluster.x-k8s.io/machinepool_v1alpha3.json similarity index 100% rename from cluster.x-k8s.io/machinepool_v1alpha3.json rename to crds/cluster.x-k8s.io/machinepool_v1alpha3.json diff --git a/cluster.x-k8s.io/machinepool_v1alpha4.json b/crds/cluster.x-k8s.io/machinepool_v1alpha4.json similarity index 100% rename from cluster.x-k8s.io/machinepool_v1alpha4.json rename to crds/cluster.x-k8s.io/machinepool_v1alpha4.json diff --git a/cluster.x-k8s.io/machinepool_v1beta1.json b/crds/cluster.x-k8s.io/machinepool_v1beta1.json similarity index 100% rename from cluster.x-k8s.io/machinepool_v1beta1.json rename to crds/cluster.x-k8s.io/machinepool_v1beta1.json diff --git a/cluster.x-k8s.io/machineset_v1alpha1.json b/crds/cluster.x-k8s.io/machineset_v1alpha1.json similarity index 100% rename from cluster.x-k8s.io/machineset_v1alpha1.json rename to crds/cluster.x-k8s.io/machineset_v1alpha1.json diff --git a/cluster.x-k8s.io/machineset_v1alpha2.json b/crds/cluster.x-k8s.io/machineset_v1alpha2.json similarity index 100% rename from cluster.x-k8s.io/machineset_v1alpha2.json rename to crds/cluster.x-k8s.io/machineset_v1alpha2.json diff --git a/cluster.x-k8s.io/machineset_v1alpha3.json b/crds/cluster.x-k8s.io/machineset_v1alpha3.json similarity index 100% rename from cluster.x-k8s.io/machineset_v1alpha3.json rename to crds/cluster.x-k8s.io/machineset_v1alpha3.json diff --git a/cluster.x-k8s.io/machineset_v1alpha4.json b/crds/cluster.x-k8s.io/machineset_v1alpha4.json similarity index 100% rename from cluster.x-k8s.io/machineset_v1alpha4.json rename to crds/cluster.x-k8s.io/machineset_v1alpha4.json diff --git a/cluster.x-k8s.io/machineset_v1beta1.json b/crds/cluster.x-k8s.io/machineset_v1beta1.json similarity index 100% rename from cluster.x-k8s.io/machineset_v1beta1.json rename to crds/cluster.x-k8s.io/machineset_v1beta1.json diff --git a/clusterctl.cluster.x-k8s.io/provider_v1alpha3.json b/crds/clusterctl.cluster.x-k8s.io/provider_v1alpha3.json similarity index 100% rename from clusterctl.cluster.x-k8s.io/provider_v1alpha3.json rename to crds/clusterctl.cluster.x-k8s.io/provider_v1alpha3.json diff --git a/clustersecret.io/clustersecret_v1.json b/crds/clustersecret.io/clustersecret_v1.json similarity index 100% rename from clustersecret.io/clustersecret_v1.json rename to crds/clustersecret.io/clustersecret_v1.json diff --git a/compute.cnrm.cloud.google.com/computeaddress_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computeaddress_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeaddress_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computeaddress_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computeautoscaler_v1alpha1.json b/crds/compute.cnrm.cloud.google.com/computeautoscaler_v1alpha1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeautoscaler_v1alpha1.json rename to crds/compute.cnrm.cloud.google.com/computeautoscaler_v1alpha1.json diff --git a/compute.cnrm.cloud.google.com/computebackendbucket_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computebackendbucket_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computebackendbucket_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computebackendbucket_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computebackendbucketsignedurlkey_v1alpha1.json b/crds/compute.cnrm.cloud.google.com/computebackendbucketsignedurlkey_v1alpha1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computebackendbucketsignedurlkey_v1alpha1.json rename to crds/compute.cnrm.cloud.google.com/computebackendbucketsignedurlkey_v1alpha1.json diff --git a/compute.cnrm.cloud.google.com/computebackendservice_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computebackendservice_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computebackendservice_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computebackendservice_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computebackendservicesignedurlkey_v1alpha1.json b/crds/compute.cnrm.cloud.google.com/computebackendservicesignedurlkey_v1alpha1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computebackendservicesignedurlkey_v1alpha1.json rename to crds/compute.cnrm.cloud.google.com/computebackendservicesignedurlkey_v1alpha1.json diff --git a/compute.cnrm.cloud.google.com/computedisk_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computedisk_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computedisk_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computedisk_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computediskresourcepolicyattachment_v1alpha1.json b/crds/compute.cnrm.cloud.google.com/computediskresourcepolicyattachment_v1alpha1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computediskresourcepolicyattachment_v1alpha1.json rename to crds/compute.cnrm.cloud.google.com/computediskresourcepolicyattachment_v1alpha1.json diff --git a/compute.cnrm.cloud.google.com/computeexternalvpngateway_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computeexternalvpngateway_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeexternalvpngateway_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computeexternalvpngateway_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computefirewall_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computefirewall_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computefirewall_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computefirewall_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computefirewallpolicy_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computefirewallpolicy_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computefirewallpolicy_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computefirewallpolicy_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computefirewallpolicyassociation_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computefirewallpolicyassociation_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computefirewallpolicyassociation_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computefirewallpolicyassociation_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computefirewallpolicyrule_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computefirewallpolicyrule_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computefirewallpolicyrule_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computefirewallpolicyrule_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computeforwardingrule_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computeforwardingrule_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeforwardingrule_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computeforwardingrule_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computeglobalnetworkendpoint_v1alpha1.json b/crds/compute.cnrm.cloud.google.com/computeglobalnetworkendpoint_v1alpha1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeglobalnetworkendpoint_v1alpha1.json rename to crds/compute.cnrm.cloud.google.com/computeglobalnetworkendpoint_v1alpha1.json diff --git a/compute.cnrm.cloud.google.com/computeglobalnetworkendpointgroup_v1alpha1.json b/crds/compute.cnrm.cloud.google.com/computeglobalnetworkendpointgroup_v1alpha1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeglobalnetworkendpointgroup_v1alpha1.json rename to crds/compute.cnrm.cloud.google.com/computeglobalnetworkendpointgroup_v1alpha1.json diff --git a/compute.cnrm.cloud.google.com/computehealthcheck_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computehealthcheck_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computehealthcheck_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computehealthcheck_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computehttphealthcheck_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computehttphealthcheck_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computehttphealthcheck_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computehttphealthcheck_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computehttpshealthcheck_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computehttpshealthcheck_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computehttpshealthcheck_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computehttpshealthcheck_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computeimage_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computeimage_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeimage_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computeimage_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computeinstance_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computeinstance_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeinstance_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computeinstance_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computeinstancegroup_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computeinstancegroup_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeinstancegroup_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computeinstancegroup_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computeinstancegroupmanager_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computeinstancegroupmanager_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeinstancegroupmanager_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computeinstancegroupmanager_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computeinstancegroupnamedport_v1alpha1.json b/crds/compute.cnrm.cloud.google.com/computeinstancegroupnamedport_v1alpha1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeinstancegroupnamedport_v1alpha1.json rename to crds/compute.cnrm.cloud.google.com/computeinstancegroupnamedport_v1alpha1.json diff --git a/compute.cnrm.cloud.google.com/computeinstancetemplate_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computeinstancetemplate_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeinstancetemplate_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computeinstancetemplate_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computeinterconnectattachment_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computeinterconnectattachment_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeinterconnectattachment_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computeinterconnectattachment_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computemachineimage_v1alpha1.json b/crds/compute.cnrm.cloud.google.com/computemachineimage_v1alpha1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computemachineimage_v1alpha1.json rename to crds/compute.cnrm.cloud.google.com/computemachineimage_v1alpha1.json diff --git a/compute.cnrm.cloud.google.com/computemanagedsslcertificate_v1alpha1.json b/crds/compute.cnrm.cloud.google.com/computemanagedsslcertificate_v1alpha1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computemanagedsslcertificate_v1alpha1.json rename to crds/compute.cnrm.cloud.google.com/computemanagedsslcertificate_v1alpha1.json diff --git a/compute.cnrm.cloud.google.com/computemanagedsslcertificate_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computemanagedsslcertificate_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computemanagedsslcertificate_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computemanagedsslcertificate_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computenetwork_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computenetwork_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computenetwork_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computenetwork_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computenetworkendpoint_v1alpha1.json b/crds/compute.cnrm.cloud.google.com/computenetworkendpoint_v1alpha1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computenetworkendpoint_v1alpha1.json rename to crds/compute.cnrm.cloud.google.com/computenetworkendpoint_v1alpha1.json diff --git a/compute.cnrm.cloud.google.com/computenetworkendpointgroup_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computenetworkendpointgroup_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computenetworkendpointgroup_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computenetworkendpointgroup_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computenetworkfirewallpolicy_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computenetworkfirewallpolicy_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computenetworkfirewallpolicy_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computenetworkfirewallpolicy_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computenetworkfirewallpolicyassociation_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computenetworkfirewallpolicyassociation_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computenetworkfirewallpolicyassociation_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computenetworkfirewallpolicyassociation_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computenetworkfirewallpolicyrule_v1alpha1.json b/crds/compute.cnrm.cloud.google.com/computenetworkfirewallpolicyrule_v1alpha1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computenetworkfirewallpolicyrule_v1alpha1.json rename to crds/compute.cnrm.cloud.google.com/computenetworkfirewallpolicyrule_v1alpha1.json diff --git a/compute.cnrm.cloud.google.com/computenetworkpeering_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computenetworkpeering_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computenetworkpeering_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computenetworkpeering_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computenetworkpeeringroutesconfig_v1alpha1.json b/crds/compute.cnrm.cloud.google.com/computenetworkpeeringroutesconfig_v1alpha1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computenetworkpeeringroutesconfig_v1alpha1.json rename to crds/compute.cnrm.cloud.google.com/computenetworkpeeringroutesconfig_v1alpha1.json diff --git a/compute.cnrm.cloud.google.com/computenodegroup_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computenodegroup_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computenodegroup_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computenodegroup_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computenodetemplate_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computenodetemplate_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computenodetemplate_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computenodetemplate_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computeorganizationsecuritypolicy_v1alpha1.json b/crds/compute.cnrm.cloud.google.com/computeorganizationsecuritypolicy_v1alpha1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeorganizationsecuritypolicy_v1alpha1.json rename to crds/compute.cnrm.cloud.google.com/computeorganizationsecuritypolicy_v1alpha1.json diff --git a/compute.cnrm.cloud.google.com/computeorganizationsecuritypolicyassociation_v1alpha1.json b/crds/compute.cnrm.cloud.google.com/computeorganizationsecuritypolicyassociation_v1alpha1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeorganizationsecuritypolicyassociation_v1alpha1.json rename to crds/compute.cnrm.cloud.google.com/computeorganizationsecuritypolicyassociation_v1alpha1.json diff --git a/compute.cnrm.cloud.google.com/computeorganizationsecuritypolicyrule_v1alpha1.json b/crds/compute.cnrm.cloud.google.com/computeorganizationsecuritypolicyrule_v1alpha1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeorganizationsecuritypolicyrule_v1alpha1.json rename to crds/compute.cnrm.cloud.google.com/computeorganizationsecuritypolicyrule_v1alpha1.json diff --git a/compute.cnrm.cloud.google.com/computepacketmirroring_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computepacketmirroring_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computepacketmirroring_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computepacketmirroring_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computeperinstanceconfig_v1alpha1.json b/crds/compute.cnrm.cloud.google.com/computeperinstanceconfig_v1alpha1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeperinstanceconfig_v1alpha1.json rename to crds/compute.cnrm.cloud.google.com/computeperinstanceconfig_v1alpha1.json diff --git a/compute.cnrm.cloud.google.com/computeprojectmetadata_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computeprojectmetadata_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeprojectmetadata_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computeprojectmetadata_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computeregionautoscaler_v1alpha1.json b/crds/compute.cnrm.cloud.google.com/computeregionautoscaler_v1alpha1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeregionautoscaler_v1alpha1.json rename to crds/compute.cnrm.cloud.google.com/computeregionautoscaler_v1alpha1.json diff --git a/compute.cnrm.cloud.google.com/computeregiondiskresourcepolicyattachment_v1alpha1.json b/crds/compute.cnrm.cloud.google.com/computeregiondiskresourcepolicyattachment_v1alpha1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeregiondiskresourcepolicyattachment_v1alpha1.json rename to crds/compute.cnrm.cloud.google.com/computeregiondiskresourcepolicyattachment_v1alpha1.json diff --git a/compute.cnrm.cloud.google.com/computeregionnetworkendpointgroup_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computeregionnetworkendpointgroup_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeregionnetworkendpointgroup_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computeregionnetworkendpointgroup_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computeregionperinstanceconfig_v1alpha1.json b/crds/compute.cnrm.cloud.google.com/computeregionperinstanceconfig_v1alpha1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeregionperinstanceconfig_v1alpha1.json rename to crds/compute.cnrm.cloud.google.com/computeregionperinstanceconfig_v1alpha1.json diff --git a/compute.cnrm.cloud.google.com/computeregionsslpolicy_v1alpha1.json b/crds/compute.cnrm.cloud.google.com/computeregionsslpolicy_v1alpha1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeregionsslpolicy_v1alpha1.json rename to crds/compute.cnrm.cloud.google.com/computeregionsslpolicy_v1alpha1.json diff --git a/compute.cnrm.cloud.google.com/computereservation_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computereservation_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computereservation_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computereservation_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computeresourcepolicy_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computeresourcepolicy_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeresourcepolicy_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computeresourcepolicy_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computeroute_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computeroute_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeroute_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computeroute_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computerouter_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computerouter_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computerouter_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computerouter_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computerouterinterface_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computerouterinterface_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computerouterinterface_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computerouterinterface_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computerouternat_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computerouternat_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computerouternat_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computerouternat_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computerouterpeer_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computerouterpeer_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computerouterpeer_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computerouterpeer_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computesecuritypolicy_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computesecuritypolicy_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computesecuritypolicy_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computesecuritypolicy_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computeserviceattachment_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computeserviceattachment_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeserviceattachment_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computeserviceattachment_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computesharedvpchostproject_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computesharedvpchostproject_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computesharedvpchostproject_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computesharedvpchostproject_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computesharedvpcserviceproject_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computesharedvpcserviceproject_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computesharedvpcserviceproject_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computesharedvpcserviceproject_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computesnapshot_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computesnapshot_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computesnapshot_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computesnapshot_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computesslcertificate_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computesslcertificate_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computesslcertificate_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computesslcertificate_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computesslpolicy_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computesslpolicy_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computesslpolicy_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computesslpolicy_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computesubnetwork_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computesubnetwork_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computesubnetwork_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computesubnetwork_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computetargetgrpcproxy_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computetargetgrpcproxy_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computetargetgrpcproxy_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computetargetgrpcproxy_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computetargethttpproxy_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computetargethttpproxy_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computetargethttpproxy_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computetargethttpproxy_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computetargethttpsproxy_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computetargethttpsproxy_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computetargethttpsproxy_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computetargethttpsproxy_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computetargetinstance_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computetargetinstance_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computetargetinstance_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computetargetinstance_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computetargetpool_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computetargetpool_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computetargetpool_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computetargetpool_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computetargetsslproxy_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computetargetsslproxy_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computetargetsslproxy_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computetargetsslproxy_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computetargettcpproxy_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computetargettcpproxy_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computetargettcpproxy_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computetargettcpproxy_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computetargetvpngateway_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computetargetvpngateway_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computetargetvpngateway_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computetargetvpngateway_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computeurlmap_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computeurlmap_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computeurlmap_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computeurlmap_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computevpngateway_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computevpngateway_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computevpngateway_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computevpngateway_v1beta1.json diff --git a/compute.cnrm.cloud.google.com/computevpntunnel_v1beta1.json b/crds/compute.cnrm.cloud.google.com/computevpntunnel_v1beta1.json similarity index 100% rename from compute.cnrm.cloud.google.com/computevpntunnel_v1beta1.json rename to crds/compute.cnrm.cloud.google.com/computevpntunnel_v1beta1.json diff --git a/config.concierge.pinniped.dev/credentialissuer_v1alpha1.json b/crds/config.concierge.pinniped.dev/credentialissuer_v1alpha1.json similarity index 100% rename from config.concierge.pinniped.dev/credentialissuer_v1alpha1.json rename to crds/config.concierge.pinniped.dev/credentialissuer_v1alpha1.json diff --git a/config.gatekeeper.sh/config_v1alpha1.json b/crds/config.gatekeeper.sh/config_v1alpha1.json similarity index 100% rename from config.gatekeeper.sh/config_v1alpha1.json rename to crds/config.gatekeeper.sh/config_v1alpha1.json diff --git a/config.supervisor.pinniped.dev/federationdomain_v1alpha1.json b/crds/config.supervisor.pinniped.dev/federationdomain_v1alpha1.json similarity index 100% rename from config.supervisor.pinniped.dev/federationdomain_v1alpha1.json rename to crds/config.supervisor.pinniped.dev/federationdomain_v1alpha1.json diff --git a/config.supervisor.pinniped.dev/oidcclient_v1alpha1.json b/crds/config.supervisor.pinniped.dev/oidcclient_v1alpha1.json similarity index 100% rename from config.supervisor.pinniped.dev/oidcclient_v1alpha1.json rename to crds/config.supervisor.pinniped.dev/oidcclient_v1alpha1.json diff --git a/configcontroller.cnrm.cloud.google.com/configcontrollerinstance_v1beta1.json b/crds/configcontroller.cnrm.cloud.google.com/configcontrollerinstance_v1beta1.json similarity index 100% rename from configcontroller.cnrm.cloud.google.com/configcontrollerinstance_v1beta1.json rename to crds/configcontroller.cnrm.cloud.google.com/configcontrollerinstance_v1beta1.json diff --git a/configuration.konghq.com/ingressclassparameters_v1alpha1.json b/crds/configuration.konghq.com/ingressclassparameters_v1alpha1.json similarity index 100% rename from configuration.konghq.com/ingressclassparameters_v1alpha1.json rename to crds/configuration.konghq.com/ingressclassparameters_v1alpha1.json diff --git a/configuration.konghq.com/kongclusterplugin_v1.json b/crds/configuration.konghq.com/kongclusterplugin_v1.json similarity index 100% rename from configuration.konghq.com/kongclusterplugin_v1.json rename to crds/configuration.konghq.com/kongclusterplugin_v1.json diff --git a/configuration.konghq.com/kongconsumer_v1.json b/crds/configuration.konghq.com/kongconsumer_v1.json similarity index 100% rename from configuration.konghq.com/kongconsumer_v1.json rename to crds/configuration.konghq.com/kongconsumer_v1.json diff --git a/configuration.konghq.com/kongingress_v1.json b/crds/configuration.konghq.com/kongingress_v1.json similarity index 100% rename from configuration.konghq.com/kongingress_v1.json rename to crds/configuration.konghq.com/kongingress_v1.json diff --git a/configuration.konghq.com/kongplugin_v1.json b/crds/configuration.konghq.com/kongplugin_v1.json similarity index 100% rename from configuration.konghq.com/kongplugin_v1.json rename to crds/configuration.konghq.com/kongplugin_v1.json diff --git a/configuration.konghq.com/tcpingress_v1beta1.json b/crds/configuration.konghq.com/tcpingress_v1beta1.json similarity index 100% rename from configuration.konghq.com/tcpingress_v1beta1.json rename to crds/configuration.konghq.com/tcpingress_v1beta1.json diff --git a/configuration.konghq.com/udpingress_v1beta1.json b/crds/configuration.konghq.com/udpingress_v1beta1.json similarity index 100% rename from configuration.konghq.com/udpingress_v1beta1.json rename to crds/configuration.konghq.com/udpingress_v1beta1.json diff --git a/container.cnrm.cloud.google.com/containercluster_v1beta1.json b/crds/container.cnrm.cloud.google.com/containercluster_v1beta1.json similarity index 100% rename from container.cnrm.cloud.google.com/containercluster_v1beta1.json rename to crds/container.cnrm.cloud.google.com/containercluster_v1beta1.json diff --git a/container.cnrm.cloud.google.com/containernodepool_v1beta1.json b/crds/container.cnrm.cloud.google.com/containernodepool_v1beta1.json similarity index 100% rename from container.cnrm.cloud.google.com/containernodepool_v1beta1.json rename to crds/container.cnrm.cloud.google.com/containernodepool_v1beta1.json diff --git a/containeranalysis.cnrm.cloud.google.com/containeranalysisnote_v1beta1.json b/crds/containeranalysis.cnrm.cloud.google.com/containeranalysisnote_v1beta1.json similarity index 100% rename from containeranalysis.cnrm.cloud.google.com/containeranalysisnote_v1beta1.json rename to crds/containeranalysis.cnrm.cloud.google.com/containeranalysisnote_v1beta1.json diff --git a/containeranalysis.cnrm.cloud.google.com/containeranalysisoccurrence_v1alpha1.json b/crds/containeranalysis.cnrm.cloud.google.com/containeranalysisoccurrence_v1alpha1.json similarity index 100% rename from containeranalysis.cnrm.cloud.google.com/containeranalysisoccurrence_v1alpha1.json rename to crds/containeranalysis.cnrm.cloud.google.com/containeranalysisoccurrence_v1alpha1.json diff --git a/containerattached.cnrm.cloud.google.com/containerattachedcluster_v1beta1.json b/crds/containerattached.cnrm.cloud.google.com/containerattachedcluster_v1beta1.json similarity index 100% rename from containerattached.cnrm.cloud.google.com/containerattachedcluster_v1beta1.json rename to crds/containerattached.cnrm.cloud.google.com/containerattachedcluster_v1beta1.json diff --git a/controlplane.cluster.x-k8s.io/awsmanagedcontrolplane_v1alpha3.json b/crds/controlplane.cluster.x-k8s.io/awsmanagedcontrolplane_v1alpha3.json similarity index 100% rename from controlplane.cluster.x-k8s.io/awsmanagedcontrolplane_v1alpha3.json rename to crds/controlplane.cluster.x-k8s.io/awsmanagedcontrolplane_v1alpha3.json diff --git a/controlplane.cluster.x-k8s.io/awsmanagedcontrolplane_v1alpha4.json b/crds/controlplane.cluster.x-k8s.io/awsmanagedcontrolplane_v1alpha4.json similarity index 100% rename from controlplane.cluster.x-k8s.io/awsmanagedcontrolplane_v1alpha4.json rename to crds/controlplane.cluster.x-k8s.io/awsmanagedcontrolplane_v1alpha4.json diff --git a/controlplane.cluster.x-k8s.io/awsmanagedcontrolplane_v1beta1.json b/crds/controlplane.cluster.x-k8s.io/awsmanagedcontrolplane_v1beta1.json similarity index 100% rename from controlplane.cluster.x-k8s.io/awsmanagedcontrolplane_v1beta1.json rename to crds/controlplane.cluster.x-k8s.io/awsmanagedcontrolplane_v1beta1.json diff --git a/controlplane.cluster.x-k8s.io/awsmanagedcontrolplane_v1beta2.json b/crds/controlplane.cluster.x-k8s.io/awsmanagedcontrolplane_v1beta2.json similarity index 100% rename from controlplane.cluster.x-k8s.io/awsmanagedcontrolplane_v1beta2.json rename to crds/controlplane.cluster.x-k8s.io/awsmanagedcontrolplane_v1beta2.json diff --git a/controlplane.cluster.x-k8s.io/kubeadmcontrolplane_v1alpha3.json b/crds/controlplane.cluster.x-k8s.io/kubeadmcontrolplane_v1alpha3.json similarity index 100% rename from controlplane.cluster.x-k8s.io/kubeadmcontrolplane_v1alpha3.json rename to crds/controlplane.cluster.x-k8s.io/kubeadmcontrolplane_v1alpha3.json diff --git a/controlplane.cluster.x-k8s.io/kubeadmcontrolplane_v1alpha4.json b/crds/controlplane.cluster.x-k8s.io/kubeadmcontrolplane_v1alpha4.json similarity index 100% rename from controlplane.cluster.x-k8s.io/kubeadmcontrolplane_v1alpha4.json rename to crds/controlplane.cluster.x-k8s.io/kubeadmcontrolplane_v1alpha4.json diff --git a/controlplane.cluster.x-k8s.io/kubeadmcontrolplane_v1beta1.json b/crds/controlplane.cluster.x-k8s.io/kubeadmcontrolplane_v1beta1.json similarity index 100% rename from controlplane.cluster.x-k8s.io/kubeadmcontrolplane_v1beta1.json rename to crds/controlplane.cluster.x-k8s.io/kubeadmcontrolplane_v1beta1.json diff --git a/controlplane.cluster.x-k8s.io/kubeadmcontrolplanetemplate_v1alpha4.json b/crds/controlplane.cluster.x-k8s.io/kubeadmcontrolplanetemplate_v1alpha4.json similarity index 100% rename from controlplane.cluster.x-k8s.io/kubeadmcontrolplanetemplate_v1alpha4.json rename to crds/controlplane.cluster.x-k8s.io/kubeadmcontrolplanetemplate_v1alpha4.json diff --git a/controlplane.cluster.x-k8s.io/kubeadmcontrolplanetemplate_v1beta1.json b/crds/controlplane.cluster.x-k8s.io/kubeadmcontrolplanetemplate_v1beta1.json similarity index 100% rename from controlplane.cluster.x-k8s.io/kubeadmcontrolplanetemplate_v1beta1.json rename to crds/controlplane.cluster.x-k8s.io/kubeadmcontrolplanetemplate_v1beta1.json diff --git a/controlplane.cluster.x-k8s.io/rosacontrolplane_v1beta2.json b/crds/controlplane.cluster.x-k8s.io/rosacontrolplane_v1beta2.json similarity index 100% rename from controlplane.cluster.x-k8s.io/rosacontrolplane_v1beta2.json rename to crds/controlplane.cluster.x-k8s.io/rosacontrolplane_v1beta2.json diff --git a/core.cnrm.cloud.google.com/configconnector_v1beta1.json b/crds/core.cnrm.cloud.google.com/configconnector_v1beta1.json similarity index 100% rename from core.cnrm.cloud.google.com/configconnector_v1beta1.json rename to crds/core.cnrm.cloud.google.com/configconnector_v1beta1.json diff --git a/core.cnrm.cloud.google.com/configconnectorcontext_v1beta1.json b/crds/core.cnrm.cloud.google.com/configconnectorcontext_v1beta1.json similarity index 100% rename from core.cnrm.cloud.google.com/configconnectorcontext_v1beta1.json rename to crds/core.cnrm.cloud.google.com/configconnectorcontext_v1beta1.json diff --git a/core.cnrm.cloud.google.com/servicemapping_v1alpha1.json b/crds/core.cnrm.cloud.google.com/servicemapping_v1alpha1.json similarity index 100% rename from core.cnrm.cloud.google.com/servicemapping_v1alpha1.json rename to crds/core.cnrm.cloud.google.com/servicemapping_v1alpha1.json diff --git a/core.strimzi.io/strimzipodset_v1beta2.json b/crds/core.strimzi.io/strimzipodset_v1beta2.json similarity index 100% rename from core.strimzi.io/strimzipodset_v1beta2.json rename to crds/core.strimzi.io/strimzipodset_v1beta2.json diff --git a/crd.k8s.amazonaws.com/eniconfig_v1alpha1.json b/crds/crd.k8s.amazonaws.com/eniconfig_v1alpha1.json similarity index 100% rename from crd.k8s.amazonaws.com/eniconfig_v1alpha1.json rename to crds/crd.k8s.amazonaws.com/eniconfig_v1alpha1.json diff --git a/customize.core.cnrm.cloud.google.com/controllerresource_v1alpha1.json b/crds/customize.core.cnrm.cloud.google.com/controllerresource_v1alpha1.json similarity index 100% rename from customize.core.cnrm.cloud.google.com/controllerresource_v1alpha1.json rename to crds/customize.core.cnrm.cloud.google.com/controllerresource_v1alpha1.json diff --git a/customize.core.cnrm.cloud.google.com/controllerresource_v1beta1.json b/crds/customize.core.cnrm.cloud.google.com/controllerresource_v1beta1.json similarity index 100% rename from customize.core.cnrm.cloud.google.com/controllerresource_v1beta1.json rename to crds/customize.core.cnrm.cloud.google.com/controllerresource_v1beta1.json diff --git a/customize.core.cnrm.cloud.google.com/mutatingwebhookconfigurationcustomization_v1alpha1.json b/crds/customize.core.cnrm.cloud.google.com/mutatingwebhookconfigurationcustomization_v1alpha1.json similarity index 100% rename from customize.core.cnrm.cloud.google.com/mutatingwebhookconfigurationcustomization_v1alpha1.json rename to crds/customize.core.cnrm.cloud.google.com/mutatingwebhookconfigurationcustomization_v1alpha1.json diff --git a/customize.core.cnrm.cloud.google.com/mutatingwebhookconfigurationcustomization_v1beta1.json b/crds/customize.core.cnrm.cloud.google.com/mutatingwebhookconfigurationcustomization_v1beta1.json similarity index 100% rename from customize.core.cnrm.cloud.google.com/mutatingwebhookconfigurationcustomization_v1beta1.json rename to crds/customize.core.cnrm.cloud.google.com/mutatingwebhookconfigurationcustomization_v1beta1.json diff --git a/customize.core.cnrm.cloud.google.com/namespacedcontrollerresource_v1alpha1.json b/crds/customize.core.cnrm.cloud.google.com/namespacedcontrollerresource_v1alpha1.json similarity index 100% rename from customize.core.cnrm.cloud.google.com/namespacedcontrollerresource_v1alpha1.json rename to crds/customize.core.cnrm.cloud.google.com/namespacedcontrollerresource_v1alpha1.json diff --git a/customize.core.cnrm.cloud.google.com/namespacedcontrollerresource_v1beta1.json b/crds/customize.core.cnrm.cloud.google.com/namespacedcontrollerresource_v1beta1.json similarity index 100% rename from customize.core.cnrm.cloud.google.com/namespacedcontrollerresource_v1beta1.json rename to crds/customize.core.cnrm.cloud.google.com/namespacedcontrollerresource_v1beta1.json diff --git a/customize.core.cnrm.cloud.google.com/validatingwebhookconfigurationcustomization_v1alpha1.json b/crds/customize.core.cnrm.cloud.google.com/validatingwebhookconfigurationcustomization_v1alpha1.json similarity index 100% rename from customize.core.cnrm.cloud.google.com/validatingwebhookconfigurationcustomization_v1alpha1.json rename to crds/customize.core.cnrm.cloud.google.com/validatingwebhookconfigurationcustomization_v1alpha1.json diff --git a/customize.core.cnrm.cloud.google.com/validatingwebhookconfigurationcustomization_v1beta1.json b/crds/customize.core.cnrm.cloud.google.com/validatingwebhookconfigurationcustomization_v1beta1.json similarity index 100% rename from customize.core.cnrm.cloud.google.com/validatingwebhookconfigurationcustomization_v1beta1.json rename to crds/customize.core.cnrm.cloud.google.com/validatingwebhookconfigurationcustomization_v1beta1.json diff --git a/dapr.io/component_v1alpha1.json b/crds/dapr.io/component_v1alpha1.json similarity index 100% rename from dapr.io/component_v1alpha1.json rename to crds/dapr.io/component_v1alpha1.json diff --git a/dapr.io/configuration_v1alpha1.json b/crds/dapr.io/configuration_v1alpha1.json similarity index 100% rename from dapr.io/configuration_v1alpha1.json rename to crds/dapr.io/configuration_v1alpha1.json diff --git a/dapr.io/resiliency_v1alpha1.json b/crds/dapr.io/resiliency_v1alpha1.json similarity index 100% rename from dapr.io/resiliency_v1alpha1.json rename to crds/dapr.io/resiliency_v1alpha1.json diff --git a/dapr.io/subscription_v1alpha1.json b/crds/dapr.io/subscription_v1alpha1.json similarity index 100% rename from dapr.io/subscription_v1alpha1.json rename to crds/dapr.io/subscription_v1alpha1.json diff --git a/dapr.io/subscription_v2alpha1.json b/crds/dapr.io/subscription_v2alpha1.json similarity index 100% rename from dapr.io/subscription_v2alpha1.json rename to crds/dapr.io/subscription_v2alpha1.json diff --git a/databases.spotahome.com/redisfailover_v1.json b/crds/databases.spotahome.com/redisfailover_v1.json similarity index 100% rename from databases.spotahome.com/redisfailover_v1.json rename to crds/databases.spotahome.com/redisfailover_v1.json diff --git a/datacatalog.cnrm.cloud.google.com/datacatalogentry_v1alpha1.json b/crds/datacatalog.cnrm.cloud.google.com/datacatalogentry_v1alpha1.json similarity index 100% rename from datacatalog.cnrm.cloud.google.com/datacatalogentry_v1alpha1.json rename to crds/datacatalog.cnrm.cloud.google.com/datacatalogentry_v1alpha1.json diff --git a/datacatalog.cnrm.cloud.google.com/datacatalogentrygroup_v1alpha1.json b/crds/datacatalog.cnrm.cloud.google.com/datacatalogentrygroup_v1alpha1.json similarity index 100% rename from datacatalog.cnrm.cloud.google.com/datacatalogentrygroup_v1alpha1.json rename to crds/datacatalog.cnrm.cloud.google.com/datacatalogentrygroup_v1alpha1.json diff --git a/datacatalog.cnrm.cloud.google.com/datacatalogpolicytag_v1beta1.json b/crds/datacatalog.cnrm.cloud.google.com/datacatalogpolicytag_v1beta1.json similarity index 100% rename from datacatalog.cnrm.cloud.google.com/datacatalogpolicytag_v1beta1.json rename to crds/datacatalog.cnrm.cloud.google.com/datacatalogpolicytag_v1beta1.json diff --git a/datacatalog.cnrm.cloud.google.com/datacatalogtag_v1alpha1.json b/crds/datacatalog.cnrm.cloud.google.com/datacatalogtag_v1alpha1.json similarity index 100% rename from datacatalog.cnrm.cloud.google.com/datacatalogtag_v1alpha1.json rename to crds/datacatalog.cnrm.cloud.google.com/datacatalogtag_v1alpha1.json diff --git a/datacatalog.cnrm.cloud.google.com/datacatalogtagtemplate_v1alpha1.json b/crds/datacatalog.cnrm.cloud.google.com/datacatalogtagtemplate_v1alpha1.json similarity index 100% rename from datacatalog.cnrm.cloud.google.com/datacatalogtagtemplate_v1alpha1.json rename to crds/datacatalog.cnrm.cloud.google.com/datacatalogtagtemplate_v1alpha1.json diff --git a/datacatalog.cnrm.cloud.google.com/datacatalogtaxonomy_v1beta1.json b/crds/datacatalog.cnrm.cloud.google.com/datacatalogtaxonomy_v1beta1.json similarity index 100% rename from datacatalog.cnrm.cloud.google.com/datacatalogtaxonomy_v1beta1.json rename to crds/datacatalog.cnrm.cloud.google.com/datacatalogtaxonomy_v1beta1.json diff --git a/datadoghq.com/datadogagent_v1alpha1.json b/crds/datadoghq.com/datadogagent_v1alpha1.json similarity index 100% rename from datadoghq.com/datadogagent_v1alpha1.json rename to crds/datadoghq.com/datadogagent_v1alpha1.json diff --git a/datadoghq.com/datadogagent_v2alpha1.json b/crds/datadoghq.com/datadogagent_v2alpha1.json similarity index 100% rename from datadoghq.com/datadogagent_v2alpha1.json rename to crds/datadoghq.com/datadogagent_v2alpha1.json diff --git a/datadoghq.com/datadogmetric_v1alpha1.json b/crds/datadoghq.com/datadogmetric_v1alpha1.json similarity index 100% rename from datadoghq.com/datadogmetric_v1alpha1.json rename to crds/datadoghq.com/datadogmetric_v1alpha1.json diff --git a/datadoghq.com/datadogmonitor_v1alpha1.json b/crds/datadoghq.com/datadogmonitor_v1alpha1.json similarity index 100% rename from datadoghq.com/datadogmonitor_v1alpha1.json rename to crds/datadoghq.com/datadogmonitor_v1alpha1.json diff --git a/datadoghq.com/datadogpodautoscaler_v1alpha1.json b/crds/datadoghq.com/datadogpodautoscaler_v1alpha1.json similarity index 100% rename from datadoghq.com/datadogpodautoscaler_v1alpha1.json rename to crds/datadoghq.com/datadogpodautoscaler_v1alpha1.json diff --git a/dataflow.cnrm.cloud.google.com/dataflowflextemplatejob_v1beta1.json b/crds/dataflow.cnrm.cloud.google.com/dataflowflextemplatejob_v1beta1.json similarity index 100% rename from dataflow.cnrm.cloud.google.com/dataflowflextemplatejob_v1beta1.json rename to crds/dataflow.cnrm.cloud.google.com/dataflowflextemplatejob_v1beta1.json diff --git a/dataflow.cnrm.cloud.google.com/dataflowjob_v1beta1.json b/crds/dataflow.cnrm.cloud.google.com/dataflowjob_v1beta1.json similarity index 100% rename from dataflow.cnrm.cloud.google.com/dataflowjob_v1beta1.json rename to crds/dataflow.cnrm.cloud.google.com/dataflowjob_v1beta1.json diff --git a/dataform.cnrm.cloud.google.com/dataformrepository_v1alpha1.json b/crds/dataform.cnrm.cloud.google.com/dataformrepository_v1alpha1.json similarity index 100% rename from dataform.cnrm.cloud.google.com/dataformrepository_v1alpha1.json rename to crds/dataform.cnrm.cloud.google.com/dataformrepository_v1alpha1.json diff --git a/dataform.cnrm.cloud.google.com/dataformrepository_v1beta1.json b/crds/dataform.cnrm.cloud.google.com/dataformrepository_v1beta1.json similarity index 100% rename from dataform.cnrm.cloud.google.com/dataformrepository_v1beta1.json rename to crds/dataform.cnrm.cloud.google.com/dataformrepository_v1beta1.json diff --git a/datafusion.cnrm.cloud.google.com/datafusioninstance_v1beta1.json b/crds/datafusion.cnrm.cloud.google.com/datafusioninstance_v1beta1.json similarity index 100% rename from datafusion.cnrm.cloud.google.com/datafusioninstance_v1beta1.json rename to crds/datafusion.cnrm.cloud.google.com/datafusioninstance_v1beta1.json diff --git a/dataproc.cnrm.cloud.google.com/dataprocautoscalingpolicy_v1beta1.json b/crds/dataproc.cnrm.cloud.google.com/dataprocautoscalingpolicy_v1beta1.json similarity index 100% rename from dataproc.cnrm.cloud.google.com/dataprocautoscalingpolicy_v1beta1.json rename to crds/dataproc.cnrm.cloud.google.com/dataprocautoscalingpolicy_v1beta1.json diff --git a/dataproc.cnrm.cloud.google.com/dataproccluster_v1beta1.json b/crds/dataproc.cnrm.cloud.google.com/dataproccluster_v1beta1.json similarity index 100% rename from dataproc.cnrm.cloud.google.com/dataproccluster_v1beta1.json rename to crds/dataproc.cnrm.cloud.google.com/dataproccluster_v1beta1.json diff --git a/dataproc.cnrm.cloud.google.com/dataprocworkflowtemplate_v1beta1.json b/crds/dataproc.cnrm.cloud.google.com/dataprocworkflowtemplate_v1beta1.json similarity index 100% rename from dataproc.cnrm.cloud.google.com/dataprocworkflowtemplate_v1beta1.json rename to crds/dataproc.cnrm.cloud.google.com/dataprocworkflowtemplate_v1beta1.json diff --git a/datastore.cnrm.cloud.google.com/datastoreindex_v1alpha1.json b/crds/datastore.cnrm.cloud.google.com/datastoreindex_v1alpha1.json similarity index 100% rename from datastore.cnrm.cloud.google.com/datastoreindex_v1alpha1.json rename to crds/datastore.cnrm.cloud.google.com/datastoreindex_v1alpha1.json diff --git a/datastream.cnrm.cloud.google.com/datastreamconnectionprofile_v1alpha1.json b/crds/datastream.cnrm.cloud.google.com/datastreamconnectionprofile_v1alpha1.json similarity index 100% rename from datastream.cnrm.cloud.google.com/datastreamconnectionprofile_v1alpha1.json rename to crds/datastream.cnrm.cloud.google.com/datastreamconnectionprofile_v1alpha1.json diff --git a/datastream.cnrm.cloud.google.com/datastreamprivateconnection_v1alpha1.json b/crds/datastream.cnrm.cloud.google.com/datastreamprivateconnection_v1alpha1.json similarity index 100% rename from datastream.cnrm.cloud.google.com/datastreamprivateconnection_v1alpha1.json rename to crds/datastream.cnrm.cloud.google.com/datastreamprivateconnection_v1alpha1.json diff --git a/datastream.cnrm.cloud.google.com/datastreamstream_v1alpha1.json b/crds/datastream.cnrm.cloud.google.com/datastreamstream_v1alpha1.json similarity index 100% rename from datastream.cnrm.cloud.google.com/datastreamstream_v1alpha1.json rename to crds/datastream.cnrm.cloud.google.com/datastreamstream_v1alpha1.json diff --git a/dbaas.percona.com/databasecluster_v1.json b/crds/dbaas.percona.com/databasecluster_v1.json similarity index 100% rename from dbaas.percona.com/databasecluster_v1.json rename to crds/dbaas.percona.com/databasecluster_v1.json diff --git a/dbaas.percona.com/databaseclusterrestore_v1.json b/crds/dbaas.percona.com/databaseclusterrestore_v1.json similarity index 100% rename from dbaas.percona.com/databaseclusterrestore_v1.json rename to crds/dbaas.percona.com/databaseclusterrestore_v1.json diff --git a/dbaas.percona.com/databaseengine_v1.json b/crds/dbaas.percona.com/databaseengine_v1.json similarity index 100% rename from dbaas.percona.com/databaseengine_v1.json rename to crds/dbaas.percona.com/databaseengine_v1.json diff --git a/deploymentmanager.cnrm.cloud.google.com/deploymentmanagerdeployment_v1alpha1.json b/crds/deploymentmanager.cnrm.cloud.google.com/deploymentmanagerdeployment_v1alpha1.json similarity index 100% rename from deploymentmanager.cnrm.cloud.google.com/deploymentmanagerdeployment_v1alpha1.json rename to crds/deploymentmanager.cnrm.cloud.google.com/deploymentmanagerdeployment_v1alpha1.json diff --git a/dex.coreos.com/authcode_v1.json b/crds/dex.coreos.com/authcode_v1.json similarity index 100% rename from dex.coreos.com/authcode_v1.json rename to crds/dex.coreos.com/authcode_v1.json diff --git a/dex.coreos.com/authrequest_v1.json b/crds/dex.coreos.com/authrequest_v1.json similarity index 100% rename from dex.coreos.com/authrequest_v1.json rename to crds/dex.coreos.com/authrequest_v1.json diff --git a/dex.coreos.com/connector_v1.json b/crds/dex.coreos.com/connector_v1.json similarity index 100% rename from dex.coreos.com/connector_v1.json rename to crds/dex.coreos.com/connector_v1.json diff --git a/dex.coreos.com/devicerequest_v1.json b/crds/dex.coreos.com/devicerequest_v1.json similarity index 100% rename from dex.coreos.com/devicerequest_v1.json rename to crds/dex.coreos.com/devicerequest_v1.json diff --git a/dex.coreos.com/devicetoken_v1.json b/crds/dex.coreos.com/devicetoken_v1.json similarity index 100% rename from dex.coreos.com/devicetoken_v1.json rename to crds/dex.coreos.com/devicetoken_v1.json diff --git a/dex.coreos.com/oauth2client_v1.json b/crds/dex.coreos.com/oauth2client_v1.json similarity index 100% rename from dex.coreos.com/oauth2client_v1.json rename to crds/dex.coreos.com/oauth2client_v1.json diff --git a/dex.coreos.com/offlinesessions_v1.json b/crds/dex.coreos.com/offlinesessions_v1.json similarity index 100% rename from dex.coreos.com/offlinesessions_v1.json rename to crds/dex.coreos.com/offlinesessions_v1.json diff --git a/dex.coreos.com/password_v1.json b/crds/dex.coreos.com/password_v1.json similarity index 100% rename from dex.coreos.com/password_v1.json rename to crds/dex.coreos.com/password_v1.json diff --git a/dex.coreos.com/refreshtoken_v1.json b/crds/dex.coreos.com/refreshtoken_v1.json similarity index 100% rename from dex.coreos.com/refreshtoken_v1.json rename to crds/dex.coreos.com/refreshtoken_v1.json diff --git a/dex.coreos.com/signingkey_v1.json b/crds/dex.coreos.com/signingkey_v1.json similarity index 100% rename from dex.coreos.com/signingkey_v1.json rename to crds/dex.coreos.com/signingkey_v1.json diff --git a/dialogflow.cnrm.cloud.google.com/dialogflowagent_v1alpha1.json b/crds/dialogflow.cnrm.cloud.google.com/dialogflowagent_v1alpha1.json similarity index 100% rename from dialogflow.cnrm.cloud.google.com/dialogflowagent_v1alpha1.json rename to crds/dialogflow.cnrm.cloud.google.com/dialogflowagent_v1alpha1.json diff --git a/dialogflow.cnrm.cloud.google.com/dialogflowentitytype_v1alpha1.json b/crds/dialogflow.cnrm.cloud.google.com/dialogflowentitytype_v1alpha1.json similarity index 100% rename from dialogflow.cnrm.cloud.google.com/dialogflowentitytype_v1alpha1.json rename to crds/dialogflow.cnrm.cloud.google.com/dialogflowentitytype_v1alpha1.json diff --git a/dialogflow.cnrm.cloud.google.com/dialogflowfulfillment_v1alpha1.json b/crds/dialogflow.cnrm.cloud.google.com/dialogflowfulfillment_v1alpha1.json similarity index 100% rename from dialogflow.cnrm.cloud.google.com/dialogflowfulfillment_v1alpha1.json rename to crds/dialogflow.cnrm.cloud.google.com/dialogflowfulfillment_v1alpha1.json diff --git a/dialogflow.cnrm.cloud.google.com/dialogflowintent_v1alpha1.json b/crds/dialogflow.cnrm.cloud.google.com/dialogflowintent_v1alpha1.json similarity index 100% rename from dialogflow.cnrm.cloud.google.com/dialogflowintent_v1alpha1.json rename to crds/dialogflow.cnrm.cloud.google.com/dialogflowintent_v1alpha1.json diff --git a/dialogflowcx.cnrm.cloud.google.com/dialogflowcxagent_v1alpha1.json b/crds/dialogflowcx.cnrm.cloud.google.com/dialogflowcxagent_v1alpha1.json similarity index 100% rename from dialogflowcx.cnrm.cloud.google.com/dialogflowcxagent_v1alpha1.json rename to crds/dialogflowcx.cnrm.cloud.google.com/dialogflowcxagent_v1alpha1.json diff --git a/dialogflowcx.cnrm.cloud.google.com/dialogflowcxentitytype_v1alpha1.json b/crds/dialogflowcx.cnrm.cloud.google.com/dialogflowcxentitytype_v1alpha1.json similarity index 100% rename from dialogflowcx.cnrm.cloud.google.com/dialogflowcxentitytype_v1alpha1.json rename to crds/dialogflowcx.cnrm.cloud.google.com/dialogflowcxentitytype_v1alpha1.json diff --git a/dialogflowcx.cnrm.cloud.google.com/dialogflowcxflow_v1alpha1.json b/crds/dialogflowcx.cnrm.cloud.google.com/dialogflowcxflow_v1alpha1.json similarity index 100% rename from dialogflowcx.cnrm.cloud.google.com/dialogflowcxflow_v1alpha1.json rename to crds/dialogflowcx.cnrm.cloud.google.com/dialogflowcxflow_v1alpha1.json diff --git a/dialogflowcx.cnrm.cloud.google.com/dialogflowcxintent_v1alpha1.json b/crds/dialogflowcx.cnrm.cloud.google.com/dialogflowcxintent_v1alpha1.json similarity index 100% rename from dialogflowcx.cnrm.cloud.google.com/dialogflowcxintent_v1alpha1.json rename to crds/dialogflowcx.cnrm.cloud.google.com/dialogflowcxintent_v1alpha1.json diff --git a/dialogflowcx.cnrm.cloud.google.com/dialogflowcxpage_v1alpha1.json b/crds/dialogflowcx.cnrm.cloud.google.com/dialogflowcxpage_v1alpha1.json similarity index 100% rename from dialogflowcx.cnrm.cloud.google.com/dialogflowcxpage_v1alpha1.json rename to crds/dialogflowcx.cnrm.cloud.google.com/dialogflowcxpage_v1alpha1.json diff --git a/dialogflowcx.cnrm.cloud.google.com/dialogflowcxwebhook_v1alpha1.json b/crds/dialogflowcx.cnrm.cloud.google.com/dialogflowcxwebhook_v1alpha1.json similarity index 100% rename from dialogflowcx.cnrm.cloud.google.com/dialogflowcxwebhook_v1alpha1.json rename to crds/dialogflowcx.cnrm.cloud.google.com/dialogflowcxwebhook_v1alpha1.json diff --git a/discoveryengine.cnrm.cloud.google.com/discoveryenginedatastore_v1alpha1.json b/crds/discoveryengine.cnrm.cloud.google.com/discoveryenginedatastore_v1alpha1.json similarity index 100% rename from discoveryengine.cnrm.cloud.google.com/discoveryenginedatastore_v1alpha1.json rename to crds/discoveryengine.cnrm.cloud.google.com/discoveryenginedatastore_v1alpha1.json diff --git a/distro.eks.amazonaws.com/release_v1alpha1.json b/crds/distro.eks.amazonaws.com/release_v1alpha1.json similarity index 100% rename from distro.eks.amazonaws.com/release_v1alpha1.json rename to crds/distro.eks.amazonaws.com/release_v1alpha1.json diff --git a/dlp.cnrm.cloud.google.com/dlpdeidentifytemplate_v1beta1.json b/crds/dlp.cnrm.cloud.google.com/dlpdeidentifytemplate_v1beta1.json similarity index 100% rename from dlp.cnrm.cloud.google.com/dlpdeidentifytemplate_v1beta1.json rename to crds/dlp.cnrm.cloud.google.com/dlpdeidentifytemplate_v1beta1.json diff --git a/dlp.cnrm.cloud.google.com/dlpinspecttemplate_v1beta1.json b/crds/dlp.cnrm.cloud.google.com/dlpinspecttemplate_v1beta1.json similarity index 100% rename from dlp.cnrm.cloud.google.com/dlpinspecttemplate_v1beta1.json rename to crds/dlp.cnrm.cloud.google.com/dlpinspecttemplate_v1beta1.json diff --git a/dlp.cnrm.cloud.google.com/dlpjobtrigger_v1beta1.json b/crds/dlp.cnrm.cloud.google.com/dlpjobtrigger_v1beta1.json similarity index 100% rename from dlp.cnrm.cloud.google.com/dlpjobtrigger_v1beta1.json rename to crds/dlp.cnrm.cloud.google.com/dlpjobtrigger_v1beta1.json diff --git a/dlp.cnrm.cloud.google.com/dlpstoredinfotype_v1beta1.json b/crds/dlp.cnrm.cloud.google.com/dlpstoredinfotype_v1beta1.json similarity index 100% rename from dlp.cnrm.cloud.google.com/dlpstoredinfotype_v1beta1.json rename to crds/dlp.cnrm.cloud.google.com/dlpstoredinfotype_v1beta1.json diff --git a/dns.cnrm.cloud.google.com/dnsmanagedzone_v1beta1.json b/crds/dns.cnrm.cloud.google.com/dnsmanagedzone_v1beta1.json similarity index 100% rename from dns.cnrm.cloud.google.com/dnsmanagedzone_v1beta1.json rename to crds/dns.cnrm.cloud.google.com/dnsmanagedzone_v1beta1.json diff --git a/dns.cnrm.cloud.google.com/dnspolicy_v1beta1.json b/crds/dns.cnrm.cloud.google.com/dnspolicy_v1beta1.json similarity index 100% rename from dns.cnrm.cloud.google.com/dnspolicy_v1beta1.json rename to crds/dns.cnrm.cloud.google.com/dnspolicy_v1beta1.json diff --git a/dns.cnrm.cloud.google.com/dnsrecordset_v1beta1.json b/crds/dns.cnrm.cloud.google.com/dnsrecordset_v1beta1.json similarity index 100% rename from dns.cnrm.cloud.google.com/dnsrecordset_v1beta1.json rename to crds/dns.cnrm.cloud.google.com/dnsrecordset_v1beta1.json diff --git a/dns.cnrm.cloud.google.com/dnsresponsepolicy_v1alpha1.json b/crds/dns.cnrm.cloud.google.com/dnsresponsepolicy_v1alpha1.json similarity index 100% rename from dns.cnrm.cloud.google.com/dnsresponsepolicy_v1alpha1.json rename to crds/dns.cnrm.cloud.google.com/dnsresponsepolicy_v1alpha1.json diff --git a/dns.cnrm.cloud.google.com/dnsresponsepolicyrule_v1alpha1.json b/crds/dns.cnrm.cloud.google.com/dnsresponsepolicyrule_v1alpha1.json similarity index 100% rename from dns.cnrm.cloud.google.com/dnsresponsepolicyrule_v1alpha1.json rename to crds/dns.cnrm.cloud.google.com/dnsresponsepolicyrule_v1alpha1.json diff --git a/documentai.cnrm.cloud.google.com/documentaiprocessor_v1alpha1.json b/crds/documentai.cnrm.cloud.google.com/documentaiprocessor_v1alpha1.json similarity index 100% rename from documentai.cnrm.cloud.google.com/documentaiprocessor_v1alpha1.json rename to crds/documentai.cnrm.cloud.google.com/documentaiprocessor_v1alpha1.json diff --git a/documentai.cnrm.cloud.google.com/documentaiprocessordefaultversion_v1alpha1.json b/crds/documentai.cnrm.cloud.google.com/documentaiprocessordefaultversion_v1alpha1.json similarity index 100% rename from documentai.cnrm.cloud.google.com/documentaiprocessordefaultversion_v1alpha1.json rename to crds/documentai.cnrm.cloud.google.com/documentaiprocessordefaultversion_v1alpha1.json diff --git a/dragonflydb.io/dragonfly_v1alpha1.json b/crds/dragonflydb.io/dragonfly_v1alpha1.json similarity index 100% rename from dragonflydb.io/dragonfly_v1alpha1.json rename to crds/dragonflydb.io/dragonfly_v1alpha1.json diff --git a/druid.apache.org/druid_v1alpha1.json b/crds/druid.apache.org/druid_v1alpha1.json similarity index 100% rename from druid.apache.org/druid_v1alpha1.json rename to crds/druid.apache.org/druid_v1alpha1.json diff --git a/druid.apache.org/druidingestion_v1alpha1.json b/crds/druid.apache.org/druidingestion_v1alpha1.json similarity index 100% rename from druid.apache.org/druidingestion_v1alpha1.json rename to crds/druid.apache.org/druidingestion_v1alpha1.json diff --git a/dynamodb.services.k8s.aws/backup_v1alpha1.json b/crds/dynamodb.services.k8s.aws/backup_v1alpha1.json similarity index 100% rename from dynamodb.services.k8s.aws/backup_v1alpha1.json rename to crds/dynamodb.services.k8s.aws/backup_v1alpha1.json diff --git a/dynamodb.services.k8s.aws/globaltable_v1alpha1.json b/crds/dynamodb.services.k8s.aws/globaltable_v1alpha1.json similarity index 100% rename from dynamodb.services.k8s.aws/globaltable_v1alpha1.json rename to crds/dynamodb.services.k8s.aws/globaltable_v1alpha1.json diff --git a/dynamodb.services.k8s.aws/table_v1alpha1.json b/crds/dynamodb.services.k8s.aws/table_v1alpha1.json similarity index 100% rename from dynamodb.services.k8s.aws/table_v1alpha1.json rename to crds/dynamodb.services.k8s.aws/table_v1alpha1.json diff --git a/dynatrace.com/dynakube_v1alpha1.json b/crds/dynatrace.com/dynakube_v1alpha1.json similarity index 100% rename from dynatrace.com/dynakube_v1alpha1.json rename to crds/dynatrace.com/dynakube_v1alpha1.json diff --git a/dynatrace.com/dynakube_v1beta1.json b/crds/dynatrace.com/dynakube_v1beta1.json similarity index 100% rename from dynatrace.com/dynakube_v1beta1.json rename to crds/dynatrace.com/dynakube_v1beta1.json diff --git a/dynatrace.com/edgeconnect_v1alpha1.json b/crds/dynatrace.com/edgeconnect_v1alpha1.json similarity index 100% rename from dynatrace.com/edgeconnect_v1alpha1.json rename to crds/dynatrace.com/edgeconnect_v1alpha1.json diff --git a/ec2.services.k8s.aws/dhcpoptions_v1alpha1.json b/crds/ec2.services.k8s.aws/dhcpoptions_v1alpha1.json similarity index 100% rename from ec2.services.k8s.aws/dhcpoptions_v1alpha1.json rename to crds/ec2.services.k8s.aws/dhcpoptions_v1alpha1.json diff --git a/ec2.services.k8s.aws/elasticipaddress_v1alpha1.json b/crds/ec2.services.k8s.aws/elasticipaddress_v1alpha1.json similarity index 100% rename from ec2.services.k8s.aws/elasticipaddress_v1alpha1.json rename to crds/ec2.services.k8s.aws/elasticipaddress_v1alpha1.json diff --git a/ec2.services.k8s.aws/flowlog_v1alpha1.json b/crds/ec2.services.k8s.aws/flowlog_v1alpha1.json similarity index 100% rename from ec2.services.k8s.aws/flowlog_v1alpha1.json rename to crds/ec2.services.k8s.aws/flowlog_v1alpha1.json diff --git a/ec2.services.k8s.aws/instance_v1alpha1.json b/crds/ec2.services.k8s.aws/instance_v1alpha1.json similarity index 100% rename from ec2.services.k8s.aws/instance_v1alpha1.json rename to crds/ec2.services.k8s.aws/instance_v1alpha1.json diff --git a/ec2.services.k8s.aws/internetgateway_v1alpha1.json b/crds/ec2.services.k8s.aws/internetgateway_v1alpha1.json similarity index 100% rename from ec2.services.k8s.aws/internetgateway_v1alpha1.json rename to crds/ec2.services.k8s.aws/internetgateway_v1alpha1.json diff --git a/ec2.services.k8s.aws/natgateway_v1alpha1.json b/crds/ec2.services.k8s.aws/natgateway_v1alpha1.json similarity index 100% rename from ec2.services.k8s.aws/natgateway_v1alpha1.json rename to crds/ec2.services.k8s.aws/natgateway_v1alpha1.json diff --git a/ec2.services.k8s.aws/routetable_v1alpha1.json b/crds/ec2.services.k8s.aws/routetable_v1alpha1.json similarity index 100% rename from ec2.services.k8s.aws/routetable_v1alpha1.json rename to crds/ec2.services.k8s.aws/routetable_v1alpha1.json diff --git a/ec2.services.k8s.aws/securitygroup_v1alpha1.json b/crds/ec2.services.k8s.aws/securitygroup_v1alpha1.json similarity index 100% rename from ec2.services.k8s.aws/securitygroup_v1alpha1.json rename to crds/ec2.services.k8s.aws/securitygroup_v1alpha1.json diff --git a/ec2.services.k8s.aws/subnet_v1alpha1.json b/crds/ec2.services.k8s.aws/subnet_v1alpha1.json similarity index 100% rename from ec2.services.k8s.aws/subnet_v1alpha1.json rename to crds/ec2.services.k8s.aws/subnet_v1alpha1.json diff --git a/ec2.services.k8s.aws/transitgateway_v1alpha1.json b/crds/ec2.services.k8s.aws/transitgateway_v1alpha1.json similarity index 100% rename from ec2.services.k8s.aws/transitgateway_v1alpha1.json rename to crds/ec2.services.k8s.aws/transitgateway_v1alpha1.json diff --git a/ec2.services.k8s.aws/vpc_v1alpha1.json b/crds/ec2.services.k8s.aws/vpc_v1alpha1.json similarity index 100% rename from ec2.services.k8s.aws/vpc_v1alpha1.json rename to crds/ec2.services.k8s.aws/vpc_v1alpha1.json diff --git a/ec2.services.k8s.aws/vpcendpoint_v1alpha1.json b/crds/ec2.services.k8s.aws/vpcendpoint_v1alpha1.json similarity index 100% rename from ec2.services.k8s.aws/vpcendpoint_v1alpha1.json rename to crds/ec2.services.k8s.aws/vpcendpoint_v1alpha1.json diff --git a/ecr.services.k8s.aws/pullthroughcacherule_v1alpha1.json b/crds/ecr.services.k8s.aws/pullthroughcacherule_v1alpha1.json similarity index 100% rename from ecr.services.k8s.aws/pullthroughcacherule_v1alpha1.json rename to crds/ecr.services.k8s.aws/pullthroughcacherule_v1alpha1.json diff --git a/ecr.services.k8s.aws/repository_v1alpha1.json b/crds/ecr.services.k8s.aws/repository_v1alpha1.json similarity index 100% rename from ecr.services.k8s.aws/repository_v1alpha1.json rename to crds/ecr.services.k8s.aws/repository_v1alpha1.json diff --git a/edgecontainer.cnrm.cloud.google.com/edgecontainercluster_v1beta1.json b/crds/edgecontainer.cnrm.cloud.google.com/edgecontainercluster_v1beta1.json similarity index 100% rename from edgecontainer.cnrm.cloud.google.com/edgecontainercluster_v1beta1.json rename to crds/edgecontainer.cnrm.cloud.google.com/edgecontainercluster_v1beta1.json diff --git a/edgecontainer.cnrm.cloud.google.com/edgecontainernodepool_v1beta1.json b/crds/edgecontainer.cnrm.cloud.google.com/edgecontainernodepool_v1beta1.json similarity index 100% rename from edgecontainer.cnrm.cloud.google.com/edgecontainernodepool_v1beta1.json rename to crds/edgecontainer.cnrm.cloud.google.com/edgecontainernodepool_v1beta1.json diff --git a/edgecontainer.cnrm.cloud.google.com/edgecontainervpnconnection_v1beta1.json b/crds/edgecontainer.cnrm.cloud.google.com/edgecontainervpnconnection_v1beta1.json similarity index 100% rename from edgecontainer.cnrm.cloud.google.com/edgecontainervpnconnection_v1beta1.json rename to crds/edgecontainer.cnrm.cloud.google.com/edgecontainervpnconnection_v1beta1.json diff --git a/edgenetwork.cnrm.cloud.google.com/edgenetworknetwork_v1beta1.json b/crds/edgenetwork.cnrm.cloud.google.com/edgenetworknetwork_v1beta1.json similarity index 100% rename from edgenetwork.cnrm.cloud.google.com/edgenetworknetwork_v1beta1.json rename to crds/edgenetwork.cnrm.cloud.google.com/edgenetworknetwork_v1beta1.json diff --git a/edgenetwork.cnrm.cloud.google.com/edgenetworksubnet_v1beta1.json b/crds/edgenetwork.cnrm.cloud.google.com/edgenetworksubnet_v1beta1.json similarity index 100% rename from edgenetwork.cnrm.cloud.google.com/edgenetworksubnet_v1beta1.json rename to crds/edgenetwork.cnrm.cloud.google.com/edgenetworksubnet_v1beta1.json diff --git a/eks.amazonaws.com/ingressclassparams_v1.json b/crds/eks.amazonaws.com/ingressclassparams_v1.json similarity index 100% rename from eks.amazonaws.com/ingressclassparams_v1.json rename to crds/eks.amazonaws.com/ingressclassparams_v1.json diff --git a/eks.amazonaws.com/nodeclass_v1.json b/crds/eks.amazonaws.com/nodeclass_v1.json similarity index 100% rename from eks.amazonaws.com/nodeclass_v1.json rename to crds/eks.amazonaws.com/nodeclass_v1.json diff --git a/eks.amazonaws.com/nodediagnostic_v1alpha1.json b/crds/eks.amazonaws.com/nodediagnostic_v1alpha1.json similarity index 100% rename from eks.amazonaws.com/nodediagnostic_v1alpha1.json rename to crds/eks.amazonaws.com/nodediagnostic_v1alpha1.json diff --git a/eks.amazonaws.com/targetgroupbinding_v1.json b/crds/eks.amazonaws.com/targetgroupbinding_v1.json similarity index 100% rename from eks.amazonaws.com/targetgroupbinding_v1.json rename to crds/eks.amazonaws.com/targetgroupbinding_v1.json diff --git a/eks.services.k8s.aws/addon_v1alpha1.json b/crds/eks.services.k8s.aws/addon_v1alpha1.json similarity index 100% rename from eks.services.k8s.aws/addon_v1alpha1.json rename to crds/eks.services.k8s.aws/addon_v1alpha1.json diff --git a/eks.services.k8s.aws/cluster_v1alpha1.json b/crds/eks.services.k8s.aws/cluster_v1alpha1.json similarity index 100% rename from eks.services.k8s.aws/cluster_v1alpha1.json rename to crds/eks.services.k8s.aws/cluster_v1alpha1.json diff --git a/eks.services.k8s.aws/fargateprofile_v1alpha1.json b/crds/eks.services.k8s.aws/fargateprofile_v1alpha1.json similarity index 100% rename from eks.services.k8s.aws/fargateprofile_v1alpha1.json rename to crds/eks.services.k8s.aws/fargateprofile_v1alpha1.json diff --git a/eks.services.k8s.aws/nodegroup_v1alpha1.json b/crds/eks.services.k8s.aws/nodegroup_v1alpha1.json similarity index 100% rename from eks.services.k8s.aws/nodegroup_v1alpha1.json rename to crds/eks.services.k8s.aws/nodegroup_v1alpha1.json diff --git a/elasticache.services.k8s.aws/cacheparametergroup_v1alpha1.json b/crds/elasticache.services.k8s.aws/cacheparametergroup_v1alpha1.json similarity index 100% rename from elasticache.services.k8s.aws/cacheparametergroup_v1alpha1.json rename to crds/elasticache.services.k8s.aws/cacheparametergroup_v1alpha1.json diff --git a/elasticache.services.k8s.aws/cachesubnetgroup_v1alpha1.json b/crds/elasticache.services.k8s.aws/cachesubnetgroup_v1alpha1.json similarity index 100% rename from elasticache.services.k8s.aws/cachesubnetgroup_v1alpha1.json rename to crds/elasticache.services.k8s.aws/cachesubnetgroup_v1alpha1.json diff --git a/elasticache.services.k8s.aws/replicationgroup_v1alpha1.json b/crds/elasticache.services.k8s.aws/replicationgroup_v1alpha1.json similarity index 100% rename from elasticache.services.k8s.aws/replicationgroup_v1alpha1.json rename to crds/elasticache.services.k8s.aws/replicationgroup_v1alpha1.json diff --git a/elasticache.services.k8s.aws/snapshot_v1alpha1.json b/crds/elasticache.services.k8s.aws/snapshot_v1alpha1.json similarity index 100% rename from elasticache.services.k8s.aws/snapshot_v1alpha1.json rename to crds/elasticache.services.k8s.aws/snapshot_v1alpha1.json diff --git a/elasticache.services.k8s.aws/user_v1alpha1.json b/crds/elasticache.services.k8s.aws/user_v1alpha1.json similarity index 100% rename from elasticache.services.k8s.aws/user_v1alpha1.json rename to crds/elasticache.services.k8s.aws/user_v1alpha1.json diff --git a/elasticache.services.k8s.aws/usergroup_v1alpha1.json b/crds/elasticache.services.k8s.aws/usergroup_v1alpha1.json similarity index 100% rename from elasticache.services.k8s.aws/usergroup_v1alpha1.json rename to crds/elasticache.services.k8s.aws/usergroup_v1alpha1.json diff --git a/elasticsearch.k8s.elastic.co/elasticsearch_v1.json b/crds/elasticsearch.k8s.elastic.co/elasticsearch_v1.json similarity index 100% rename from elasticsearch.k8s.elastic.co/elasticsearch_v1.json rename to crds/elasticsearch.k8s.elastic.co/elasticsearch_v1.json diff --git a/elasticsearch.k8s.elastic.co/elasticsearch_v1alpha1.json b/crds/elasticsearch.k8s.elastic.co/elasticsearch_v1alpha1.json similarity index 100% rename from elasticsearch.k8s.elastic.co/elasticsearch_v1alpha1.json rename to crds/elasticsearch.k8s.elastic.co/elasticsearch_v1alpha1.json diff --git a/elasticsearch.k8s.elastic.co/elasticsearch_v1beta1.json b/crds/elasticsearch.k8s.elastic.co/elasticsearch_v1beta1.json similarity index 100% rename from elasticsearch.k8s.elastic.co/elasticsearch_v1beta1.json rename to crds/elasticsearch.k8s.elastic.co/elasticsearch_v1beta1.json diff --git a/elbv2.k8s.aws/ingressclassparams_v1beta1.json b/crds/elbv2.k8s.aws/ingressclassparams_v1beta1.json similarity index 100% rename from elbv2.k8s.aws/ingressclassparams_v1beta1.json rename to crds/elbv2.k8s.aws/ingressclassparams_v1beta1.json diff --git a/elbv2.k8s.aws/targetgroupbinding_v1alpha1.json b/crds/elbv2.k8s.aws/targetgroupbinding_v1alpha1.json similarity index 100% rename from elbv2.k8s.aws/targetgroupbinding_v1alpha1.json rename to crds/elbv2.k8s.aws/targetgroupbinding_v1alpha1.json diff --git a/elbv2.k8s.aws/targetgroupbinding_v1beta1.json b/crds/elbv2.k8s.aws/targetgroupbinding_v1beta1.json similarity index 100% rename from elbv2.k8s.aws/targetgroupbinding_v1beta1.json rename to crds/elbv2.k8s.aws/targetgroupbinding_v1beta1.json diff --git a/emrcontainers.services.k8s.aws/jobrun_v1alpha1.json b/crds/emrcontainers.services.k8s.aws/jobrun_v1alpha1.json similarity index 100% rename from emrcontainers.services.k8s.aws/jobrun_v1alpha1.json rename to crds/emrcontainers.services.k8s.aws/jobrun_v1alpha1.json diff --git a/emrcontainers.services.k8s.aws/virtualcluster_v1alpha1.json b/crds/emrcontainers.services.k8s.aws/virtualcluster_v1alpha1.json similarity index 100% rename from emrcontainers.services.k8s.aws/virtualcluster_v1alpha1.json rename to crds/emrcontainers.services.k8s.aws/virtualcluster_v1alpha1.json diff --git a/enterprise.gloo.solo.io/authconfig_v1.json b/crds/enterprise.gloo.solo.io/authconfig_v1.json similarity index 100% rename from enterprise.gloo.solo.io/authconfig_v1.json rename to crds/enterprise.gloo.solo.io/authconfig_v1.json diff --git a/enterprisesearch.k8s.elastic.co/enterprisesearch_v1.json b/crds/enterprisesearch.k8s.elastic.co/enterprisesearch_v1.json similarity index 100% rename from enterprisesearch.k8s.elastic.co/enterprisesearch_v1.json rename to crds/enterprisesearch.k8s.elastic.co/enterprisesearch_v1.json diff --git a/enterprisesearch.k8s.elastic.co/enterprisesearch_v1beta1.json b/crds/enterprisesearch.k8s.elastic.co/enterprisesearch_v1beta1.json similarity index 100% rename from enterprisesearch.k8s.elastic.co/enterprisesearch_v1beta1.json rename to crds/enterprisesearch.k8s.elastic.co/enterprisesearch_v1beta1.json diff --git a/essentialcontacts.cnrm.cloud.google.com/essentialcontactscontact_v1alpha1.json b/crds/essentialcontacts.cnrm.cloud.google.com/essentialcontactscontact_v1alpha1.json similarity index 100% rename from essentialcontacts.cnrm.cloud.google.com/essentialcontactscontact_v1alpha1.json rename to crds/essentialcontacts.cnrm.cloud.google.com/essentialcontactscontact_v1alpha1.json diff --git a/eventarc.cnrm.cloud.google.com/eventarctrigger_v1beta1.json b/crds/eventarc.cnrm.cloud.google.com/eventarctrigger_v1beta1.json similarity index 100% rename from eventarc.cnrm.cloud.google.com/eventarctrigger_v1beta1.json rename to crds/eventarc.cnrm.cloud.google.com/eventarctrigger_v1beta1.json diff --git a/eventbridge.services.k8s.aws/archive_v1alpha1.json b/crds/eventbridge.services.k8s.aws/archive_v1alpha1.json similarity index 100% rename from eventbridge.services.k8s.aws/archive_v1alpha1.json rename to crds/eventbridge.services.k8s.aws/archive_v1alpha1.json diff --git a/eventbridge.services.k8s.aws/endpoint_v1alpha1.json b/crds/eventbridge.services.k8s.aws/endpoint_v1alpha1.json similarity index 100% rename from eventbridge.services.k8s.aws/endpoint_v1alpha1.json rename to crds/eventbridge.services.k8s.aws/endpoint_v1alpha1.json diff --git a/eventbridge.services.k8s.aws/eventbus_v1alpha1.json b/crds/eventbridge.services.k8s.aws/eventbus_v1alpha1.json similarity index 100% rename from eventbridge.services.k8s.aws/eventbus_v1alpha1.json rename to crds/eventbridge.services.k8s.aws/eventbus_v1alpha1.json diff --git a/eventbridge.services.k8s.aws/rule_v1alpha1.json b/crds/eventbridge.services.k8s.aws/rule_v1alpha1.json similarity index 100% rename from eventbridge.services.k8s.aws/rule_v1alpha1.json rename to crds/eventbridge.services.k8s.aws/rule_v1alpha1.json diff --git a/exoscale.appcat.vshn.io/exoscalekafka_v1.json b/crds/exoscale.appcat.vshn.io/exoscalekafka_v1.json similarity index 100% rename from exoscale.appcat.vshn.io/exoscalekafka_v1.json rename to crds/exoscale.appcat.vshn.io/exoscalekafka_v1.json diff --git a/exoscale.appcat.vshn.io/exoscalemysql_v1.json b/crds/exoscale.appcat.vshn.io/exoscalemysql_v1.json similarity index 100% rename from exoscale.appcat.vshn.io/exoscalemysql_v1.json rename to crds/exoscale.appcat.vshn.io/exoscalemysql_v1.json diff --git a/exoscale.appcat.vshn.io/exoscaleopensearch_v1.json b/crds/exoscale.appcat.vshn.io/exoscaleopensearch_v1.json similarity index 100% rename from exoscale.appcat.vshn.io/exoscaleopensearch_v1.json rename to crds/exoscale.appcat.vshn.io/exoscaleopensearch_v1.json diff --git a/exoscale.appcat.vshn.io/exoscalepostgresql_v1.json b/crds/exoscale.appcat.vshn.io/exoscalepostgresql_v1.json similarity index 100% rename from exoscale.appcat.vshn.io/exoscalepostgresql_v1.json rename to crds/exoscale.appcat.vshn.io/exoscalepostgresql_v1.json diff --git a/exoscale.appcat.vshn.io/exoscaleredis_v1.json b/crds/exoscale.appcat.vshn.io/exoscaleredis_v1.json similarity index 100% rename from exoscale.appcat.vshn.io/exoscaleredis_v1.json rename to crds/exoscale.appcat.vshn.io/exoscaleredis_v1.json diff --git a/expansion.gatekeeper.sh/expansiontemplate_v1alpha1.json b/crds/expansion.gatekeeper.sh/expansiontemplate_v1alpha1.json similarity index 100% rename from expansion.gatekeeper.sh/expansiontemplate_v1alpha1.json rename to crds/expansion.gatekeeper.sh/expansiontemplate_v1alpha1.json diff --git a/expansion.gatekeeper.sh/expansiontemplate_v1beta1.json b/crds/expansion.gatekeeper.sh/expansiontemplate_v1beta1.json similarity index 100% rename from expansion.gatekeeper.sh/expansiontemplate_v1beta1.json rename to crds/expansion.gatekeeper.sh/expansiontemplate_v1beta1.json diff --git a/extensions.istio.io/wasmplugin_v1alpha1.json b/crds/extensions.istio.io/wasmplugin_v1alpha1.json similarity index 100% rename from extensions.istio.io/wasmplugin_v1alpha1.json rename to crds/extensions.istio.io/wasmplugin_v1alpha1.json diff --git a/external-secrets.io/clusterexternalsecret_v1beta1.json b/crds/external-secrets.io/clusterexternalsecret_v1beta1.json similarity index 100% rename from external-secrets.io/clusterexternalsecret_v1beta1.json rename to crds/external-secrets.io/clusterexternalsecret_v1beta1.json diff --git a/external-secrets.io/clusterpushsecret_v1alpha1.json b/crds/external-secrets.io/clusterpushsecret_v1alpha1.json similarity index 100% rename from external-secrets.io/clusterpushsecret_v1alpha1.json rename to crds/external-secrets.io/clusterpushsecret_v1alpha1.json diff --git a/external-secrets.io/clustersecretstore_v1alpha1.json b/crds/external-secrets.io/clustersecretstore_v1alpha1.json similarity index 100% rename from external-secrets.io/clustersecretstore_v1alpha1.json rename to crds/external-secrets.io/clustersecretstore_v1alpha1.json diff --git a/external-secrets.io/clustersecretstore_v1beta1.json b/crds/external-secrets.io/clustersecretstore_v1beta1.json similarity index 100% rename from external-secrets.io/clustersecretstore_v1beta1.json rename to crds/external-secrets.io/clustersecretstore_v1beta1.json diff --git a/external-secrets.io/externalsecret_v1alpha1.json b/crds/external-secrets.io/externalsecret_v1alpha1.json similarity index 100% rename from external-secrets.io/externalsecret_v1alpha1.json rename to crds/external-secrets.io/externalsecret_v1alpha1.json diff --git a/external-secrets.io/externalsecret_v1beta1.json b/crds/external-secrets.io/externalsecret_v1beta1.json similarity index 100% rename from external-secrets.io/externalsecret_v1beta1.json rename to crds/external-secrets.io/externalsecret_v1beta1.json diff --git a/external-secrets.io/pushsecret_v1alpha1.json b/crds/external-secrets.io/pushsecret_v1alpha1.json similarity index 100% rename from external-secrets.io/pushsecret_v1alpha1.json rename to crds/external-secrets.io/pushsecret_v1alpha1.json diff --git a/external-secrets.io/secretstore_v1alpha1.json b/crds/external-secrets.io/secretstore_v1alpha1.json similarity index 100% rename from external-secrets.io/secretstore_v1alpha1.json rename to crds/external-secrets.io/secretstore_v1alpha1.json diff --git a/external-secrets.io/secretstore_v1beta1.json b/crds/external-secrets.io/secretstore_v1beta1.json similarity index 100% rename from external-secrets.io/secretstore_v1beta1.json rename to crds/external-secrets.io/secretstore_v1beta1.json diff --git a/externaldata.gatekeeper.sh/provider_v1alpha1.json b/crds/externaldata.gatekeeper.sh/provider_v1alpha1.json similarity index 100% rename from externaldata.gatekeeper.sh/provider_v1alpha1.json rename to crds/externaldata.gatekeeper.sh/provider_v1alpha1.json diff --git a/externaldata.gatekeeper.sh/provider_v1beta1.json b/crds/externaldata.gatekeeper.sh/provider_v1beta1.json similarity index 100% rename from externaldata.gatekeeper.sh/provider_v1beta1.json rename to crds/externaldata.gatekeeper.sh/provider_v1beta1.json diff --git a/externaldns.k8s.io/dnsendpoint_v1alpha1.json b/crds/externaldns.k8s.io/dnsendpoint_v1alpha1.json similarity index 100% rename from externaldns.k8s.io/dnsendpoint_v1alpha1.json rename to crds/externaldns.k8s.io/dnsendpoint_v1alpha1.json diff --git a/externaldns.nginx.org/dnsendpoint_v1.json b/crds/externaldns.nginx.org/dnsendpoint_v1.json similarity index 100% rename from externaldns.nginx.org/dnsendpoint_v1.json rename to crds/externaldns.nginx.org/dnsendpoint_v1.json diff --git a/filestore.cnrm.cloud.google.com/filestorebackup_v1beta1.json b/crds/filestore.cnrm.cloud.google.com/filestorebackup_v1beta1.json similarity index 100% rename from filestore.cnrm.cloud.google.com/filestorebackup_v1beta1.json rename to crds/filestore.cnrm.cloud.google.com/filestorebackup_v1beta1.json diff --git a/filestore.cnrm.cloud.google.com/filestoreinstance_v1beta1.json b/crds/filestore.cnrm.cloud.google.com/filestoreinstance_v1beta1.json similarity index 100% rename from filestore.cnrm.cloud.google.com/filestoreinstance_v1beta1.json rename to crds/filestore.cnrm.cloud.google.com/filestoreinstance_v1beta1.json diff --git a/filestore.cnrm.cloud.google.com/filestoresnapshot_v1alpha1.json b/crds/filestore.cnrm.cloud.google.com/filestoresnapshot_v1alpha1.json similarity index 100% rename from filestore.cnrm.cloud.google.com/filestoresnapshot_v1alpha1.json rename to crds/filestore.cnrm.cloud.google.com/filestoresnapshot_v1alpha1.json diff --git a/firebase.cnrm.cloud.google.com/firebaseandroidapp_v1alpha1.json b/crds/firebase.cnrm.cloud.google.com/firebaseandroidapp_v1alpha1.json similarity index 100% rename from firebase.cnrm.cloud.google.com/firebaseandroidapp_v1alpha1.json rename to crds/firebase.cnrm.cloud.google.com/firebaseandroidapp_v1alpha1.json diff --git a/firebase.cnrm.cloud.google.com/firebaseproject_v1alpha1.json b/crds/firebase.cnrm.cloud.google.com/firebaseproject_v1alpha1.json similarity index 100% rename from firebase.cnrm.cloud.google.com/firebaseproject_v1alpha1.json rename to crds/firebase.cnrm.cloud.google.com/firebaseproject_v1alpha1.json diff --git a/firebase.cnrm.cloud.google.com/firebasewebapp_v1alpha1.json b/crds/firebase.cnrm.cloud.google.com/firebasewebapp_v1alpha1.json similarity index 100% rename from firebase.cnrm.cloud.google.com/firebasewebapp_v1alpha1.json rename to crds/firebase.cnrm.cloud.google.com/firebasewebapp_v1alpha1.json diff --git a/firebasedatabase.cnrm.cloud.google.com/firebasedatabaseinstance_v1alpha1.json b/crds/firebasedatabase.cnrm.cloud.google.com/firebasedatabaseinstance_v1alpha1.json similarity index 100% rename from firebasedatabase.cnrm.cloud.google.com/firebasedatabaseinstance_v1alpha1.json rename to crds/firebasedatabase.cnrm.cloud.google.com/firebasedatabaseinstance_v1alpha1.json diff --git a/firebasehosting.cnrm.cloud.google.com/firebasehostingchannel_v1alpha1.json b/crds/firebasehosting.cnrm.cloud.google.com/firebasehostingchannel_v1alpha1.json similarity index 100% rename from firebasehosting.cnrm.cloud.google.com/firebasehostingchannel_v1alpha1.json rename to crds/firebasehosting.cnrm.cloud.google.com/firebasehostingchannel_v1alpha1.json diff --git a/firebasehosting.cnrm.cloud.google.com/firebasehostingsite_v1alpha1.json b/crds/firebasehosting.cnrm.cloud.google.com/firebasehostingsite_v1alpha1.json similarity index 100% rename from firebasehosting.cnrm.cloud.google.com/firebasehostingsite_v1alpha1.json rename to crds/firebasehosting.cnrm.cloud.google.com/firebasehostingsite_v1alpha1.json diff --git a/firebasestorage.cnrm.cloud.google.com/firebasestoragebucket_v1alpha1.json b/crds/firebasestorage.cnrm.cloud.google.com/firebasestoragebucket_v1alpha1.json similarity index 100% rename from firebasestorage.cnrm.cloud.google.com/firebasestoragebucket_v1alpha1.json rename to crds/firebasestorage.cnrm.cloud.google.com/firebasestoragebucket_v1alpha1.json diff --git a/firestore.cnrm.cloud.google.com/firestoredatabase_v1alpha1.json b/crds/firestore.cnrm.cloud.google.com/firestoredatabase_v1alpha1.json similarity index 100% rename from firestore.cnrm.cloud.google.com/firestoredatabase_v1alpha1.json rename to crds/firestore.cnrm.cloud.google.com/firestoredatabase_v1alpha1.json diff --git a/firestore.cnrm.cloud.google.com/firestoreindex_v1beta1.json b/crds/firestore.cnrm.cloud.google.com/firestoreindex_v1beta1.json similarity index 100% rename from firestore.cnrm.cloud.google.com/firestoreindex_v1beta1.json rename to crds/firestore.cnrm.cloud.google.com/firestoreindex_v1beta1.json diff --git a/flagger.app/alertprovider_v1beta1.json b/crds/flagger.app/alertprovider_v1beta1.json similarity index 100% rename from flagger.app/alertprovider_v1beta1.json rename to crds/flagger.app/alertprovider_v1beta1.json diff --git a/flagger.app/canary_v1beta1.json b/crds/flagger.app/canary_v1beta1.json similarity index 100% rename from flagger.app/canary_v1beta1.json rename to crds/flagger.app/canary_v1beta1.json diff --git a/flagger.app/metrictemplate_v1beta1.json b/crds/flagger.app/metrictemplate_v1beta1.json similarity index 100% rename from flagger.app/metrictemplate_v1beta1.json rename to crds/flagger.app/metrictemplate_v1beta1.json diff --git a/flink.apache.org/flinkdeployment_v1beta1.json b/crds/flink.apache.org/flinkdeployment_v1beta1.json similarity index 100% rename from flink.apache.org/flinkdeployment_v1beta1.json rename to crds/flink.apache.org/flinkdeployment_v1beta1.json diff --git a/flink.apache.org/flinksessionjob_v1beta1.json b/crds/flink.apache.org/flinksessionjob_v1beta1.json similarity index 100% rename from flink.apache.org/flinksessionjob_v1beta1.json rename to crds/flink.apache.org/flinksessionjob_v1beta1.json diff --git a/flink.apache.org/flinkstatesnapshot_v1beta1.json b/crds/flink.apache.org/flinkstatesnapshot_v1beta1.json similarity index 100% rename from flink.apache.org/flinkstatesnapshot_v1beta1.json rename to crds/flink.apache.org/flinkstatesnapshot_v1beta1.json diff --git a/fluentbit.fluent.io/clusterfilter_v1alpha2.json b/crds/fluentbit.fluent.io/clusterfilter_v1alpha2.json similarity index 100% rename from fluentbit.fluent.io/clusterfilter_v1alpha2.json rename to crds/fluentbit.fluent.io/clusterfilter_v1alpha2.json diff --git a/fluentbit.fluent.io/clusterfluentbitconfig_v1alpha2.json b/crds/fluentbit.fluent.io/clusterfluentbitconfig_v1alpha2.json similarity index 100% rename from fluentbit.fluent.io/clusterfluentbitconfig_v1alpha2.json rename to crds/fluentbit.fluent.io/clusterfluentbitconfig_v1alpha2.json diff --git a/fluentbit.fluent.io/clusterinput_v1alpha2.json b/crds/fluentbit.fluent.io/clusterinput_v1alpha2.json similarity index 100% rename from fluentbit.fluent.io/clusterinput_v1alpha2.json rename to crds/fluentbit.fluent.io/clusterinput_v1alpha2.json diff --git a/fluentbit.fluent.io/clustermultilineparser_v1alpha2.json b/crds/fluentbit.fluent.io/clustermultilineparser_v1alpha2.json similarity index 100% rename from fluentbit.fluent.io/clustermultilineparser_v1alpha2.json rename to crds/fluentbit.fluent.io/clustermultilineparser_v1alpha2.json diff --git a/fluentbit.fluent.io/clusteroutput_v1alpha2.json b/crds/fluentbit.fluent.io/clusteroutput_v1alpha2.json similarity index 100% rename from fluentbit.fluent.io/clusteroutput_v1alpha2.json rename to crds/fluentbit.fluent.io/clusteroutput_v1alpha2.json diff --git a/fluentbit.fluent.io/clusterparser_v1alpha2.json b/crds/fluentbit.fluent.io/clusterparser_v1alpha2.json similarity index 100% rename from fluentbit.fluent.io/clusterparser_v1alpha2.json rename to crds/fluentbit.fluent.io/clusterparser_v1alpha2.json diff --git a/fluentbit.fluent.io/collector_v1alpha2.json b/crds/fluentbit.fluent.io/collector_v1alpha2.json similarity index 100% rename from fluentbit.fluent.io/collector_v1alpha2.json rename to crds/fluentbit.fluent.io/collector_v1alpha2.json diff --git a/fluentbit.fluent.io/filter_v1alpha2.json b/crds/fluentbit.fluent.io/filter_v1alpha2.json similarity index 100% rename from fluentbit.fluent.io/filter_v1alpha2.json rename to crds/fluentbit.fluent.io/filter_v1alpha2.json diff --git a/fluentbit.fluent.io/fluentbit_v1alpha2.json b/crds/fluentbit.fluent.io/fluentbit_v1alpha2.json similarity index 100% rename from fluentbit.fluent.io/fluentbit_v1alpha2.json rename to crds/fluentbit.fluent.io/fluentbit_v1alpha2.json diff --git a/fluentbit.fluent.io/fluentbitconfig_v1alpha2.json b/crds/fluentbit.fluent.io/fluentbitconfig_v1alpha2.json similarity index 100% rename from fluentbit.fluent.io/fluentbitconfig_v1alpha2.json rename to crds/fluentbit.fluent.io/fluentbitconfig_v1alpha2.json diff --git a/fluentbit.fluent.io/multilineparser_v1alpha2.json b/crds/fluentbit.fluent.io/multilineparser_v1alpha2.json similarity index 100% rename from fluentbit.fluent.io/multilineparser_v1alpha2.json rename to crds/fluentbit.fluent.io/multilineparser_v1alpha2.json diff --git a/fluentbit.fluent.io/output_v1alpha2.json b/crds/fluentbit.fluent.io/output_v1alpha2.json similarity index 100% rename from fluentbit.fluent.io/output_v1alpha2.json rename to crds/fluentbit.fluent.io/output_v1alpha2.json diff --git a/fluentbit.fluent.io/parser_v1alpha2.json b/crds/fluentbit.fluent.io/parser_v1alpha2.json similarity index 100% rename from fluentbit.fluent.io/parser_v1alpha2.json rename to crds/fluentbit.fluent.io/parser_v1alpha2.json diff --git a/fluentd.fluent.io/clusterfilter_v1alpha1.json b/crds/fluentd.fluent.io/clusterfilter_v1alpha1.json similarity index 100% rename from fluentd.fluent.io/clusterfilter_v1alpha1.json rename to crds/fluentd.fluent.io/clusterfilter_v1alpha1.json diff --git a/fluentd.fluent.io/clusterfilter_v1alpha2.json b/crds/fluentd.fluent.io/clusterfilter_v1alpha2.json similarity index 100% rename from fluentd.fluent.io/clusterfilter_v1alpha2.json rename to crds/fluentd.fluent.io/clusterfilter_v1alpha2.json diff --git a/fluentd.fluent.io/clusterfluentdconfig_v1alpha1.json b/crds/fluentd.fluent.io/clusterfluentdconfig_v1alpha1.json similarity index 100% rename from fluentd.fluent.io/clusterfluentdconfig_v1alpha1.json rename to crds/fluentd.fluent.io/clusterfluentdconfig_v1alpha1.json diff --git a/fluentd.fluent.io/clusterinput_v1alpha1.json b/crds/fluentd.fluent.io/clusterinput_v1alpha1.json similarity index 100% rename from fluentd.fluent.io/clusterinput_v1alpha1.json rename to crds/fluentd.fluent.io/clusterinput_v1alpha1.json diff --git a/fluentd.fluent.io/clusterinput_v1alpha2.json b/crds/fluentd.fluent.io/clusterinput_v1alpha2.json similarity index 100% rename from fluentd.fluent.io/clusterinput_v1alpha2.json rename to crds/fluentd.fluent.io/clusterinput_v1alpha2.json diff --git a/fluentd.fluent.io/clusteroutput_v1alpha1.json b/crds/fluentd.fluent.io/clusteroutput_v1alpha1.json similarity index 100% rename from fluentd.fluent.io/clusteroutput_v1alpha1.json rename to crds/fluentd.fluent.io/clusteroutput_v1alpha1.json diff --git a/fluentd.fluent.io/clusteroutput_v1alpha2.json b/crds/fluentd.fluent.io/clusteroutput_v1alpha2.json similarity index 100% rename from fluentd.fluent.io/clusteroutput_v1alpha2.json rename to crds/fluentd.fluent.io/clusteroutput_v1alpha2.json diff --git a/fluentd.fluent.io/filter_v1alpha1.json b/crds/fluentd.fluent.io/filter_v1alpha1.json similarity index 100% rename from fluentd.fluent.io/filter_v1alpha1.json rename to crds/fluentd.fluent.io/filter_v1alpha1.json diff --git a/fluentd.fluent.io/filter_v1alpha2.json b/crds/fluentd.fluent.io/filter_v1alpha2.json similarity index 100% rename from fluentd.fluent.io/filter_v1alpha2.json rename to crds/fluentd.fluent.io/filter_v1alpha2.json diff --git a/fluentd.fluent.io/fluentd_v1alpha1.json b/crds/fluentd.fluent.io/fluentd_v1alpha1.json similarity index 100% rename from fluentd.fluent.io/fluentd_v1alpha1.json rename to crds/fluentd.fluent.io/fluentd_v1alpha1.json diff --git a/fluentd.fluent.io/fluentdconfig_v1alpha1.json b/crds/fluentd.fluent.io/fluentdconfig_v1alpha1.json similarity index 100% rename from fluentd.fluent.io/fluentdconfig_v1alpha1.json rename to crds/fluentd.fluent.io/fluentdconfig_v1alpha1.json diff --git a/fluentd.fluent.io/input_v1alpha1.json b/crds/fluentd.fluent.io/input_v1alpha1.json similarity index 100% rename from fluentd.fluent.io/input_v1alpha1.json rename to crds/fluentd.fluent.io/input_v1alpha1.json diff --git a/fluentd.fluent.io/output_v1alpha1.json b/crds/fluentd.fluent.io/output_v1alpha1.json similarity index 100% rename from fluentd.fluent.io/output_v1alpha1.json rename to crds/fluentd.fluent.io/output_v1alpha1.json diff --git a/fluentd.fluent.io/output_v1alpha2.json b/crds/fluentd.fluent.io/output_v1alpha2.json similarity index 100% rename from fluentd.fluent.io/output_v1alpha2.json rename to crds/fluentd.fluent.io/output_v1alpha2.json diff --git a/fluxcd.controlplane.io/fluxinstance_v1.json b/crds/fluxcd.controlplane.io/fluxinstance_v1.json similarity index 100% rename from fluxcd.controlplane.io/fluxinstance_v1.json rename to crds/fluxcd.controlplane.io/fluxinstance_v1.json diff --git a/fluxcd.controlplane.io/fluxreport_v1.json b/crds/fluxcd.controlplane.io/fluxreport_v1.json similarity index 100% rename from fluxcd.controlplane.io/fluxreport_v1.json rename to crds/fluxcd.controlplane.io/fluxreport_v1.json diff --git a/fluxcd.controlplane.io/resourceset_v1.json b/crds/fluxcd.controlplane.io/resourceset_v1.json similarity index 100% rename from fluxcd.controlplane.io/resourceset_v1.json rename to crds/fluxcd.controlplane.io/resourceset_v1.json diff --git a/fluxcd.controlplane.io/resourcesetinputprovider_v1.json b/crds/fluxcd.controlplane.io/resourcesetinputprovider_v1.json similarity index 100% rename from fluxcd.controlplane.io/resourcesetinputprovider_v1.json rename to crds/fluxcd.controlplane.io/resourcesetinputprovider_v1.json diff --git a/gameservices.cnrm.cloud.google.com/gameservicesrealm_v1beta1.json b/crds/gameservices.cnrm.cloud.google.com/gameservicesrealm_v1beta1.json similarity index 100% rename from gameservices.cnrm.cloud.google.com/gameservicesrealm_v1beta1.json rename to crds/gameservices.cnrm.cloud.google.com/gameservicesrealm_v1beta1.json diff --git a/gateway.envoyproxy.io/backend_v1alpha1.json b/crds/gateway.envoyproxy.io/backend_v1alpha1.json similarity index 100% rename from gateway.envoyproxy.io/backend_v1alpha1.json rename to crds/gateway.envoyproxy.io/backend_v1alpha1.json diff --git a/gateway.envoyproxy.io/backendtrafficpolicy_v1alpha1.json b/crds/gateway.envoyproxy.io/backendtrafficpolicy_v1alpha1.json similarity index 100% rename from gateway.envoyproxy.io/backendtrafficpolicy_v1alpha1.json rename to crds/gateway.envoyproxy.io/backendtrafficpolicy_v1alpha1.json diff --git a/gateway.envoyproxy.io/clienttrafficpolicy_v1alpha1.json b/crds/gateway.envoyproxy.io/clienttrafficpolicy_v1alpha1.json similarity index 100% rename from gateway.envoyproxy.io/clienttrafficpolicy_v1alpha1.json rename to crds/gateway.envoyproxy.io/clienttrafficpolicy_v1alpha1.json diff --git a/gateway.envoyproxy.io/envoyextensionpolicy_v1alpha1.json b/crds/gateway.envoyproxy.io/envoyextensionpolicy_v1alpha1.json similarity index 100% rename from gateway.envoyproxy.io/envoyextensionpolicy_v1alpha1.json rename to crds/gateway.envoyproxy.io/envoyextensionpolicy_v1alpha1.json diff --git a/gateway.envoyproxy.io/envoypatchpolicy_v1alpha1.json b/crds/gateway.envoyproxy.io/envoypatchpolicy_v1alpha1.json similarity index 100% rename from gateway.envoyproxy.io/envoypatchpolicy_v1alpha1.json rename to crds/gateway.envoyproxy.io/envoypatchpolicy_v1alpha1.json diff --git a/gateway.envoyproxy.io/envoyproxy_v1alpha1.json b/crds/gateway.envoyproxy.io/envoyproxy_v1alpha1.json similarity index 100% rename from gateway.envoyproxy.io/envoyproxy_v1alpha1.json rename to crds/gateway.envoyproxy.io/envoyproxy_v1alpha1.json diff --git a/gateway.envoyproxy.io/httproutefilter_v1alpha1.json b/crds/gateway.envoyproxy.io/httproutefilter_v1alpha1.json similarity index 100% rename from gateway.envoyproxy.io/httproutefilter_v1alpha1.json rename to crds/gateway.envoyproxy.io/httproutefilter_v1alpha1.json diff --git a/gateway.envoyproxy.io/securitypolicy_v1alpha1.json b/crds/gateway.envoyproxy.io/securitypolicy_v1alpha1.json similarity index 100% rename from gateway.envoyproxy.io/securitypolicy_v1alpha1.json rename to crds/gateway.envoyproxy.io/securitypolicy_v1alpha1.json diff --git a/gateway.networking.k8s.io/backendlbpolicy_v1alpha2.json b/crds/gateway.networking.k8s.io/backendlbpolicy_v1alpha2.json similarity index 100% rename from gateway.networking.k8s.io/backendlbpolicy_v1alpha2.json rename to crds/gateway.networking.k8s.io/backendlbpolicy_v1alpha2.json diff --git a/gateway.networking.k8s.io/backendtlspolicy_v1alpha3.json b/crds/gateway.networking.k8s.io/backendtlspolicy_v1alpha3.json similarity index 100% rename from gateway.networking.k8s.io/backendtlspolicy_v1alpha3.json rename to crds/gateway.networking.k8s.io/backendtlspolicy_v1alpha3.json diff --git a/gateway.networking.k8s.io/gateway_v1.json b/crds/gateway.networking.k8s.io/gateway_v1.json similarity index 100% rename from gateway.networking.k8s.io/gateway_v1.json rename to crds/gateway.networking.k8s.io/gateway_v1.json diff --git a/gateway.networking.k8s.io/gateway_v1beta1.json b/crds/gateway.networking.k8s.io/gateway_v1beta1.json similarity index 100% rename from gateway.networking.k8s.io/gateway_v1beta1.json rename to crds/gateway.networking.k8s.io/gateway_v1beta1.json diff --git a/gateway.networking.k8s.io/gatewayclass_v1.json b/crds/gateway.networking.k8s.io/gatewayclass_v1.json similarity index 100% rename from gateway.networking.k8s.io/gatewayclass_v1.json rename to crds/gateway.networking.k8s.io/gatewayclass_v1.json diff --git a/gateway.networking.k8s.io/gatewayclass_v1beta1.json b/crds/gateway.networking.k8s.io/gatewayclass_v1beta1.json similarity index 100% rename from gateway.networking.k8s.io/gatewayclass_v1beta1.json rename to crds/gateway.networking.k8s.io/gatewayclass_v1beta1.json diff --git a/gateway.networking.k8s.io/grpcroute_v1.json b/crds/gateway.networking.k8s.io/grpcroute_v1.json similarity index 100% rename from gateway.networking.k8s.io/grpcroute_v1.json rename to crds/gateway.networking.k8s.io/grpcroute_v1.json diff --git a/gateway.networking.k8s.io/grpcroute_v1alpha2.json b/crds/gateway.networking.k8s.io/grpcroute_v1alpha2.json similarity index 100% rename from gateway.networking.k8s.io/grpcroute_v1alpha2.json rename to crds/gateway.networking.k8s.io/grpcroute_v1alpha2.json diff --git a/gateway.networking.k8s.io/httproute_v1.json b/crds/gateway.networking.k8s.io/httproute_v1.json similarity index 100% rename from gateway.networking.k8s.io/httproute_v1.json rename to crds/gateway.networking.k8s.io/httproute_v1.json diff --git a/gateway.networking.k8s.io/httproute_v1beta1.json b/crds/gateway.networking.k8s.io/httproute_v1beta1.json similarity index 100% rename from gateway.networking.k8s.io/httproute_v1beta1.json rename to crds/gateway.networking.k8s.io/httproute_v1beta1.json diff --git a/gateway.networking.k8s.io/referencegrant_v1alpha2.json b/crds/gateway.networking.k8s.io/referencegrant_v1alpha2.json similarity index 100% rename from gateway.networking.k8s.io/referencegrant_v1alpha2.json rename to crds/gateway.networking.k8s.io/referencegrant_v1alpha2.json diff --git a/gateway.networking.k8s.io/referencegrant_v1beta1.json b/crds/gateway.networking.k8s.io/referencegrant_v1beta1.json similarity index 100% rename from gateway.networking.k8s.io/referencegrant_v1beta1.json rename to crds/gateway.networking.k8s.io/referencegrant_v1beta1.json diff --git a/gateway.networking.k8s.io/tcproute_v1alpha2.json b/crds/gateway.networking.k8s.io/tcproute_v1alpha2.json similarity index 100% rename from gateway.networking.k8s.io/tcproute_v1alpha2.json rename to crds/gateway.networking.k8s.io/tcproute_v1alpha2.json diff --git a/gateway.networking.k8s.io/tlsroute_v1alpha2.json b/crds/gateway.networking.k8s.io/tlsroute_v1alpha2.json similarity index 100% rename from gateway.networking.k8s.io/tlsroute_v1alpha2.json rename to crds/gateway.networking.k8s.io/tlsroute_v1alpha2.json diff --git a/gateway.networking.k8s.io/udproute_v1alpha2.json b/crds/gateway.networking.k8s.io/udproute_v1alpha2.json similarity index 100% rename from gateway.networking.k8s.io/udproute_v1alpha2.json rename to crds/gateway.networking.k8s.io/udproute_v1alpha2.json diff --git a/gateway.solo.io/gateway_v1.json b/crds/gateway.solo.io/gateway_v1.json similarity index 100% rename from gateway.solo.io/gateway_v1.json rename to crds/gateway.solo.io/gateway_v1.json diff --git a/gateway.solo.io/matchablehttpgateway_v1.json b/crds/gateway.solo.io/matchablehttpgateway_v1.json similarity index 100% rename from gateway.solo.io/matchablehttpgateway_v1.json rename to crds/gateway.solo.io/matchablehttpgateway_v1.json diff --git a/gateway.solo.io/routeoption_v1.json b/crds/gateway.solo.io/routeoption_v1.json similarity index 100% rename from gateway.solo.io/routeoption_v1.json rename to crds/gateway.solo.io/routeoption_v1.json diff --git a/gateway.solo.io/routetable_v1.json b/crds/gateway.solo.io/routetable_v1.json similarity index 100% rename from gateway.solo.io/routetable_v1.json rename to crds/gateway.solo.io/routetable_v1.json diff --git a/gateway.solo.io/virtualhostoption_v1.json b/crds/gateway.solo.io/virtualhostoption_v1.json similarity index 100% rename from gateway.solo.io/virtualhostoption_v1.json rename to crds/gateway.solo.io/virtualhostoption_v1.json diff --git a/gateway.solo.io/virtualservice_v1.json b/crds/gateway.solo.io/virtualservice_v1.json similarity index 100% rename from gateway.solo.io/virtualservice_v1.json rename to crds/gateway.solo.io/virtualservice_v1.json diff --git a/generators.external-secrets.io/acraccesstoken_v1alpha1.json b/crds/generators.external-secrets.io/acraccesstoken_v1alpha1.json similarity index 100% rename from generators.external-secrets.io/acraccesstoken_v1alpha1.json rename to crds/generators.external-secrets.io/acraccesstoken_v1alpha1.json diff --git a/generators.external-secrets.io/clustergenerator_v1alpha1.json b/crds/generators.external-secrets.io/clustergenerator_v1alpha1.json similarity index 100% rename from generators.external-secrets.io/clustergenerator_v1alpha1.json rename to crds/generators.external-secrets.io/clustergenerator_v1alpha1.json diff --git a/generators.external-secrets.io/ecrauthorizationtoken_v1alpha1.json b/crds/generators.external-secrets.io/ecrauthorizationtoken_v1alpha1.json similarity index 100% rename from generators.external-secrets.io/ecrauthorizationtoken_v1alpha1.json rename to crds/generators.external-secrets.io/ecrauthorizationtoken_v1alpha1.json diff --git a/generators.external-secrets.io/fake_v1alpha1.json b/crds/generators.external-secrets.io/fake_v1alpha1.json similarity index 100% rename from generators.external-secrets.io/fake_v1alpha1.json rename to crds/generators.external-secrets.io/fake_v1alpha1.json diff --git a/generators.external-secrets.io/gcraccesstoken_v1alpha1.json b/crds/generators.external-secrets.io/gcraccesstoken_v1alpha1.json similarity index 100% rename from generators.external-secrets.io/gcraccesstoken_v1alpha1.json rename to crds/generators.external-secrets.io/gcraccesstoken_v1alpha1.json diff --git a/generators.external-secrets.io/generatorstate_v1alpha1.json b/crds/generators.external-secrets.io/generatorstate_v1alpha1.json similarity index 100% rename from generators.external-secrets.io/generatorstate_v1alpha1.json rename to crds/generators.external-secrets.io/generatorstate_v1alpha1.json diff --git a/generators.external-secrets.io/githubaccesstoken_v1alpha1.json b/crds/generators.external-secrets.io/githubaccesstoken_v1alpha1.json similarity index 100% rename from generators.external-secrets.io/githubaccesstoken_v1alpha1.json rename to crds/generators.external-secrets.io/githubaccesstoken_v1alpha1.json diff --git a/generators.external-secrets.io/grafana_v1alpha1.json b/crds/generators.external-secrets.io/grafana_v1alpha1.json similarity index 100% rename from generators.external-secrets.io/grafana_v1alpha1.json rename to crds/generators.external-secrets.io/grafana_v1alpha1.json diff --git a/generators.external-secrets.io/password_v1alpha1.json b/crds/generators.external-secrets.io/password_v1alpha1.json similarity index 100% rename from generators.external-secrets.io/password_v1alpha1.json rename to crds/generators.external-secrets.io/password_v1alpha1.json diff --git a/generators.external-secrets.io/quayaccesstoken_v1alpha1.json b/crds/generators.external-secrets.io/quayaccesstoken_v1alpha1.json similarity index 100% rename from generators.external-secrets.io/quayaccesstoken_v1alpha1.json rename to crds/generators.external-secrets.io/quayaccesstoken_v1alpha1.json diff --git a/generators.external-secrets.io/stssessiontoken_v1alpha1.json b/crds/generators.external-secrets.io/stssessiontoken_v1alpha1.json similarity index 100% rename from generators.external-secrets.io/stssessiontoken_v1alpha1.json rename to crds/generators.external-secrets.io/stssessiontoken_v1alpha1.json diff --git a/generators.external-secrets.io/uuid_v1alpha1.json b/crds/generators.external-secrets.io/uuid_v1alpha1.json similarity index 100% rename from generators.external-secrets.io/uuid_v1alpha1.json rename to crds/generators.external-secrets.io/uuid_v1alpha1.json diff --git a/generators.external-secrets.io/vaultdynamicsecret_v1alpha1.json b/crds/generators.external-secrets.io/vaultdynamicsecret_v1alpha1.json similarity index 100% rename from generators.external-secrets.io/vaultdynamicsecret_v1alpha1.json rename to crds/generators.external-secrets.io/vaultdynamicsecret_v1alpha1.json diff --git a/generators.external-secrets.io/webhook_v1alpha1.json b/crds/generators.external-secrets.io/webhook_v1alpha1.json similarity index 100% rename from generators.external-secrets.io/webhook_v1alpha1.json rename to crds/generators.external-secrets.io/webhook_v1alpha1.json diff --git a/getambassador.io/authservice_v1.json b/crds/getambassador.io/authservice_v1.json similarity index 100% rename from getambassador.io/authservice_v1.json rename to crds/getambassador.io/authservice_v1.json diff --git a/getambassador.io/authservice_v2.json b/crds/getambassador.io/authservice_v2.json similarity index 100% rename from getambassador.io/authservice_v2.json rename to crds/getambassador.io/authservice_v2.json diff --git a/getambassador.io/authservice_v3alpha1.json b/crds/getambassador.io/authservice_v3alpha1.json similarity index 100% rename from getambassador.io/authservice_v3alpha1.json rename to crds/getambassador.io/authservice_v3alpha1.json diff --git a/getambassador.io/consulresolver_v1.json b/crds/getambassador.io/consulresolver_v1.json similarity index 100% rename from getambassador.io/consulresolver_v1.json rename to crds/getambassador.io/consulresolver_v1.json diff --git a/getambassador.io/consulresolver_v2.json b/crds/getambassador.io/consulresolver_v2.json similarity index 100% rename from getambassador.io/consulresolver_v2.json rename to crds/getambassador.io/consulresolver_v2.json diff --git a/getambassador.io/consulresolver_v3alpha1.json b/crds/getambassador.io/consulresolver_v3alpha1.json similarity index 100% rename from getambassador.io/consulresolver_v3alpha1.json rename to crds/getambassador.io/consulresolver_v3alpha1.json diff --git a/getambassador.io/devportal_v1.json b/crds/getambassador.io/devportal_v1.json similarity index 100% rename from getambassador.io/devportal_v1.json rename to crds/getambassador.io/devportal_v1.json diff --git a/getambassador.io/devportal_v2.json b/crds/getambassador.io/devportal_v2.json similarity index 100% rename from getambassador.io/devportal_v2.json rename to crds/getambassador.io/devportal_v2.json diff --git a/getambassador.io/devportal_v3alpha1.json b/crds/getambassador.io/devportal_v3alpha1.json similarity index 100% rename from getambassador.io/devportal_v3alpha1.json rename to crds/getambassador.io/devportal_v3alpha1.json diff --git a/getambassador.io/filter_v1beta2.json b/crds/getambassador.io/filter_v1beta2.json similarity index 100% rename from getambassador.io/filter_v1beta2.json rename to crds/getambassador.io/filter_v1beta2.json diff --git a/getambassador.io/filter_v2.json b/crds/getambassador.io/filter_v2.json similarity index 100% rename from getambassador.io/filter_v2.json rename to crds/getambassador.io/filter_v2.json diff --git a/getambassador.io/filter_v3alpha1.json b/crds/getambassador.io/filter_v3alpha1.json similarity index 100% rename from getambassador.io/filter_v3alpha1.json rename to crds/getambassador.io/filter_v3alpha1.json diff --git a/getambassador.io/filterpolicy_v1beta2.json b/crds/getambassador.io/filterpolicy_v1beta2.json similarity index 100% rename from getambassador.io/filterpolicy_v1beta2.json rename to crds/getambassador.io/filterpolicy_v1beta2.json diff --git a/getambassador.io/filterpolicy_v2.json b/crds/getambassador.io/filterpolicy_v2.json similarity index 100% rename from getambassador.io/filterpolicy_v2.json rename to crds/getambassador.io/filterpolicy_v2.json diff --git a/getambassador.io/filterpolicy_v3alpha1.json b/crds/getambassador.io/filterpolicy_v3alpha1.json similarity index 100% rename from getambassador.io/filterpolicy_v3alpha1.json rename to crds/getambassador.io/filterpolicy_v3alpha1.json diff --git a/getambassador.io/host_v2.json b/crds/getambassador.io/host_v2.json similarity index 100% rename from getambassador.io/host_v2.json rename to crds/getambassador.io/host_v2.json diff --git a/getambassador.io/host_v3alpha1.json b/crds/getambassador.io/host_v3alpha1.json similarity index 100% rename from getambassador.io/host_v3alpha1.json rename to crds/getambassador.io/host_v3alpha1.json diff --git a/getambassador.io/kubernetesendpointresolver_v1.json b/crds/getambassador.io/kubernetesendpointresolver_v1.json similarity index 100% rename from getambassador.io/kubernetesendpointresolver_v1.json rename to crds/getambassador.io/kubernetesendpointresolver_v1.json diff --git a/getambassador.io/kubernetesendpointresolver_v2.json b/crds/getambassador.io/kubernetesendpointresolver_v2.json similarity index 100% rename from getambassador.io/kubernetesendpointresolver_v2.json rename to crds/getambassador.io/kubernetesendpointresolver_v2.json diff --git a/getambassador.io/kubernetesendpointresolver_v3alpha1.json b/crds/getambassador.io/kubernetesendpointresolver_v3alpha1.json similarity index 100% rename from getambassador.io/kubernetesendpointresolver_v3alpha1.json rename to crds/getambassador.io/kubernetesendpointresolver_v3alpha1.json diff --git a/getambassador.io/kubernetesserviceresolver_v1.json b/crds/getambassador.io/kubernetesserviceresolver_v1.json similarity index 100% rename from getambassador.io/kubernetesserviceresolver_v1.json rename to crds/getambassador.io/kubernetesserviceresolver_v1.json diff --git a/getambassador.io/kubernetesserviceresolver_v2.json b/crds/getambassador.io/kubernetesserviceresolver_v2.json similarity index 100% rename from getambassador.io/kubernetesserviceresolver_v2.json rename to crds/getambassador.io/kubernetesserviceresolver_v2.json diff --git a/getambassador.io/kubernetesserviceresolver_v3alpha1.json b/crds/getambassador.io/kubernetesserviceresolver_v3alpha1.json similarity index 100% rename from getambassador.io/kubernetesserviceresolver_v3alpha1.json rename to crds/getambassador.io/kubernetesserviceresolver_v3alpha1.json diff --git a/getambassador.io/listener_v3alpha1.json b/crds/getambassador.io/listener_v3alpha1.json similarity index 100% rename from getambassador.io/listener_v3alpha1.json rename to crds/getambassador.io/listener_v3alpha1.json diff --git a/getambassador.io/logservice_v1.json b/crds/getambassador.io/logservice_v1.json similarity index 100% rename from getambassador.io/logservice_v1.json rename to crds/getambassador.io/logservice_v1.json diff --git a/getambassador.io/logservice_v2.json b/crds/getambassador.io/logservice_v2.json similarity index 100% rename from getambassador.io/logservice_v2.json rename to crds/getambassador.io/logservice_v2.json diff --git a/getambassador.io/logservice_v3alpha1.json b/crds/getambassador.io/logservice_v3alpha1.json similarity index 100% rename from getambassador.io/logservice_v3alpha1.json rename to crds/getambassador.io/logservice_v3alpha1.json diff --git a/getambassador.io/mapping_v1.json b/crds/getambassador.io/mapping_v1.json similarity index 100% rename from getambassador.io/mapping_v1.json rename to crds/getambassador.io/mapping_v1.json diff --git a/getambassador.io/mapping_v2.json b/crds/getambassador.io/mapping_v2.json similarity index 100% rename from getambassador.io/mapping_v2.json rename to crds/getambassador.io/mapping_v2.json diff --git a/getambassador.io/mapping_v3alpha1.json b/crds/getambassador.io/mapping_v3alpha1.json similarity index 100% rename from getambassador.io/mapping_v3alpha1.json rename to crds/getambassador.io/mapping_v3alpha1.json diff --git a/getambassador.io/module_v1.json b/crds/getambassador.io/module_v1.json similarity index 100% rename from getambassador.io/module_v1.json rename to crds/getambassador.io/module_v1.json diff --git a/getambassador.io/module_v2.json b/crds/getambassador.io/module_v2.json similarity index 100% rename from getambassador.io/module_v2.json rename to crds/getambassador.io/module_v2.json diff --git a/getambassador.io/module_v3alpha1.json b/crds/getambassador.io/module_v3alpha1.json similarity index 100% rename from getambassador.io/module_v3alpha1.json rename to crds/getambassador.io/module_v3alpha1.json diff --git a/getambassador.io/ratelimit_v1beta1.json b/crds/getambassador.io/ratelimit_v1beta1.json similarity index 100% rename from getambassador.io/ratelimit_v1beta1.json rename to crds/getambassador.io/ratelimit_v1beta1.json diff --git a/getambassador.io/ratelimit_v1beta2.json b/crds/getambassador.io/ratelimit_v1beta2.json similarity index 100% rename from getambassador.io/ratelimit_v1beta2.json rename to crds/getambassador.io/ratelimit_v1beta2.json diff --git a/getambassador.io/ratelimit_v2.json b/crds/getambassador.io/ratelimit_v2.json similarity index 100% rename from getambassador.io/ratelimit_v2.json rename to crds/getambassador.io/ratelimit_v2.json diff --git a/getambassador.io/ratelimit_v3alpha1.json b/crds/getambassador.io/ratelimit_v3alpha1.json similarity index 100% rename from getambassador.io/ratelimit_v3alpha1.json rename to crds/getambassador.io/ratelimit_v3alpha1.json diff --git a/getambassador.io/ratelimitservice_v1.json b/crds/getambassador.io/ratelimitservice_v1.json similarity index 100% rename from getambassador.io/ratelimitservice_v1.json rename to crds/getambassador.io/ratelimitservice_v1.json diff --git a/getambassador.io/ratelimitservice_v2.json b/crds/getambassador.io/ratelimitservice_v2.json similarity index 100% rename from getambassador.io/ratelimitservice_v2.json rename to crds/getambassador.io/ratelimitservice_v2.json diff --git a/getambassador.io/ratelimitservice_v3alpha1.json b/crds/getambassador.io/ratelimitservice_v3alpha1.json similarity index 100% rename from getambassador.io/ratelimitservice_v3alpha1.json rename to crds/getambassador.io/ratelimitservice_v3alpha1.json diff --git a/getambassador.io/tcpmapping_v1.json b/crds/getambassador.io/tcpmapping_v1.json similarity index 100% rename from getambassador.io/tcpmapping_v1.json rename to crds/getambassador.io/tcpmapping_v1.json diff --git a/getambassador.io/tcpmapping_v2.json b/crds/getambassador.io/tcpmapping_v2.json similarity index 100% rename from getambassador.io/tcpmapping_v2.json rename to crds/getambassador.io/tcpmapping_v2.json diff --git a/getambassador.io/tcpmapping_v3alpha1.json b/crds/getambassador.io/tcpmapping_v3alpha1.json similarity index 100% rename from getambassador.io/tcpmapping_v3alpha1.json rename to crds/getambassador.io/tcpmapping_v3alpha1.json diff --git a/getambassador.io/tlscontext_v1.json b/crds/getambassador.io/tlscontext_v1.json similarity index 100% rename from getambassador.io/tlscontext_v1.json rename to crds/getambassador.io/tlscontext_v1.json diff --git a/getambassador.io/tlscontext_v2.json b/crds/getambassador.io/tlscontext_v2.json similarity index 100% rename from getambassador.io/tlscontext_v2.json rename to crds/getambassador.io/tlscontext_v2.json diff --git a/getambassador.io/tlscontext_v3alpha1.json b/crds/getambassador.io/tlscontext_v3alpha1.json similarity index 100% rename from getambassador.io/tlscontext_v3alpha1.json rename to crds/getambassador.io/tlscontext_v3alpha1.json diff --git a/getambassador.io/tracingservice_v1.json b/crds/getambassador.io/tracingservice_v1.json similarity index 100% rename from getambassador.io/tracingservice_v1.json rename to crds/getambassador.io/tracingservice_v1.json diff --git a/getambassador.io/tracingservice_v2.json b/crds/getambassador.io/tracingservice_v2.json similarity index 100% rename from getambassador.io/tracingservice_v2.json rename to crds/getambassador.io/tracingservice_v2.json diff --git a/getambassador.io/tracingservice_v3alpha1.json b/crds/getambassador.io/tracingservice_v3alpha1.json similarity index 100% rename from getambassador.io/tracingservice_v3alpha1.json rename to crds/getambassador.io/tracingservice_v3alpha1.json diff --git a/gkebackup.cnrm.cloud.google.com/gkebackupbackupplan_v1alpha1.json b/crds/gkebackup.cnrm.cloud.google.com/gkebackupbackupplan_v1alpha1.json similarity index 100% rename from gkebackup.cnrm.cloud.google.com/gkebackupbackupplan_v1alpha1.json rename to crds/gkebackup.cnrm.cloud.google.com/gkebackupbackupplan_v1alpha1.json diff --git a/gkehub.cnrm.cloud.google.com/gkehubfeature_v1beta1.json b/crds/gkehub.cnrm.cloud.google.com/gkehubfeature_v1beta1.json similarity index 100% rename from gkehub.cnrm.cloud.google.com/gkehubfeature_v1beta1.json rename to crds/gkehub.cnrm.cloud.google.com/gkehubfeature_v1beta1.json diff --git a/gkehub.cnrm.cloud.google.com/gkehubfeaturemembership_v1beta1.json b/crds/gkehub.cnrm.cloud.google.com/gkehubfeaturemembership_v1beta1.json similarity index 100% rename from gkehub.cnrm.cloud.google.com/gkehubfeaturemembership_v1beta1.json rename to crds/gkehub.cnrm.cloud.google.com/gkehubfeaturemembership_v1beta1.json diff --git a/gkehub.cnrm.cloud.google.com/gkehubmembership_v1beta1.json b/crds/gkehub.cnrm.cloud.google.com/gkehubmembership_v1beta1.json similarity index 100% rename from gkehub.cnrm.cloud.google.com/gkehubmembership_v1beta1.json rename to crds/gkehub.cnrm.cloud.google.com/gkehubmembership_v1beta1.json diff --git a/gloo.solo.io/proxy_v1.json b/crds/gloo.solo.io/proxy_v1.json similarity index 100% rename from gloo.solo.io/proxy_v1.json rename to crds/gloo.solo.io/proxy_v1.json diff --git a/gloo.solo.io/settings_v1.json b/crds/gloo.solo.io/settings_v1.json similarity index 100% rename from gloo.solo.io/settings_v1.json rename to crds/gloo.solo.io/settings_v1.json diff --git a/gloo.solo.io/upstream_v1.json b/crds/gloo.solo.io/upstream_v1.json similarity index 100% rename from gloo.solo.io/upstream_v1.json rename to crds/gloo.solo.io/upstream_v1.json diff --git a/gloo.solo.io/upstreamgroup_v1.json b/crds/gloo.solo.io/upstreamgroup_v1.json similarity index 100% rename from gloo.solo.io/upstreamgroup_v1.json rename to crds/gloo.solo.io/upstreamgroup_v1.json diff --git a/grafana.integreatly.org/grafana_v1alpha1.json b/crds/grafana.integreatly.org/grafana_v1alpha1.json similarity index 100% rename from grafana.integreatly.org/grafana_v1alpha1.json rename to crds/grafana.integreatly.org/grafana_v1alpha1.json diff --git a/grafana.integreatly.org/grafana_v1beta1.json b/crds/grafana.integreatly.org/grafana_v1beta1.json similarity index 100% rename from grafana.integreatly.org/grafana_v1beta1.json rename to crds/grafana.integreatly.org/grafana_v1beta1.json diff --git a/grafana.integreatly.org/grafanaalertrulegroup_v1beta1.json b/crds/grafana.integreatly.org/grafanaalertrulegroup_v1beta1.json similarity index 100% rename from grafana.integreatly.org/grafanaalertrulegroup_v1beta1.json rename to crds/grafana.integreatly.org/grafanaalertrulegroup_v1beta1.json diff --git a/grafana.integreatly.org/grafanacontactpoint_v1beta1.json b/crds/grafana.integreatly.org/grafanacontactpoint_v1beta1.json similarity index 100% rename from grafana.integreatly.org/grafanacontactpoint_v1beta1.json rename to crds/grafana.integreatly.org/grafanacontactpoint_v1beta1.json diff --git a/grafana.integreatly.org/grafanadashboard_v1beta1.json b/crds/grafana.integreatly.org/grafanadashboard_v1beta1.json similarity index 100% rename from grafana.integreatly.org/grafanadashboard_v1beta1.json rename to crds/grafana.integreatly.org/grafanadashboard_v1beta1.json diff --git a/grafana.integreatly.org/grafanadatasource_v1beta1.json b/crds/grafana.integreatly.org/grafanadatasource_v1beta1.json similarity index 100% rename from grafana.integreatly.org/grafanadatasource_v1beta1.json rename to crds/grafana.integreatly.org/grafanadatasource_v1beta1.json diff --git a/grafana.integreatly.org/grafanafolder_v1beta1.json b/crds/grafana.integreatly.org/grafanafolder_v1beta1.json similarity index 100% rename from grafana.integreatly.org/grafanafolder_v1beta1.json rename to crds/grafana.integreatly.org/grafanafolder_v1beta1.json diff --git a/grafana.integreatly.org/grafananotificationpolicy_v1beta1.json b/crds/grafana.integreatly.org/grafananotificationpolicy_v1beta1.json similarity index 100% rename from grafana.integreatly.org/grafananotificationpolicy_v1beta1.json rename to crds/grafana.integreatly.org/grafananotificationpolicy_v1beta1.json diff --git a/grafana.integreatly.org/grafananotificationtemplate_v1beta1.json b/crds/grafana.integreatly.org/grafananotificationtemplate_v1beta1.json similarity index 100% rename from grafana.integreatly.org/grafananotificationtemplate_v1beta1.json rename to crds/grafana.integreatly.org/grafananotificationtemplate_v1beta1.json diff --git a/graphql.gloo.solo.io/graphqlapi_v1beta1.json b/crds/graphql.gloo.solo.io/graphqlapi_v1beta1.json similarity index 100% rename from graphql.gloo.solo.io/graphqlapi_v1beta1.json rename to crds/graphql.gloo.solo.io/graphqlapi_v1beta1.json diff --git a/groupsnapshot.storage.k8s.io/volumegroupsnapshot_v1beta1.json b/crds/groupsnapshot.storage.k8s.io/volumegroupsnapshot_v1beta1.json similarity index 100% rename from groupsnapshot.storage.k8s.io/volumegroupsnapshot_v1beta1.json rename to crds/groupsnapshot.storage.k8s.io/volumegroupsnapshot_v1beta1.json diff --git a/groupsnapshot.storage.k8s.io/volumegroupsnapshotclass_v1beta1.json b/crds/groupsnapshot.storage.k8s.io/volumegroupsnapshotclass_v1beta1.json similarity index 100% rename from groupsnapshot.storage.k8s.io/volumegroupsnapshotclass_v1beta1.json rename to crds/groupsnapshot.storage.k8s.io/volumegroupsnapshotclass_v1beta1.json diff --git a/groupsnapshot.storage.k8s.io/volumegroupsnapshotcontent_v1beta1.json b/crds/groupsnapshot.storage.k8s.io/volumegroupsnapshotcontent_v1beta1.json similarity index 100% rename from groupsnapshot.storage.k8s.io/volumegroupsnapshotcontent_v1beta1.json rename to crds/groupsnapshot.storage.k8s.io/volumegroupsnapshotcontent_v1beta1.json diff --git a/healthcare.cnrm.cloud.google.com/healthcareconsentstore_v1alpha1.json b/crds/healthcare.cnrm.cloud.google.com/healthcareconsentstore_v1alpha1.json similarity index 100% rename from healthcare.cnrm.cloud.google.com/healthcareconsentstore_v1alpha1.json rename to crds/healthcare.cnrm.cloud.google.com/healthcareconsentstore_v1alpha1.json diff --git a/healthcare.cnrm.cloud.google.com/healthcaredataset_v1alpha1.json b/crds/healthcare.cnrm.cloud.google.com/healthcaredataset_v1alpha1.json similarity index 100% rename from healthcare.cnrm.cloud.google.com/healthcaredataset_v1alpha1.json rename to crds/healthcare.cnrm.cloud.google.com/healthcaredataset_v1alpha1.json diff --git a/healthcare.cnrm.cloud.google.com/healthcaredicomstore_v1alpha1.json b/crds/healthcare.cnrm.cloud.google.com/healthcaredicomstore_v1alpha1.json similarity index 100% rename from healthcare.cnrm.cloud.google.com/healthcaredicomstore_v1alpha1.json rename to crds/healthcare.cnrm.cloud.google.com/healthcaredicomstore_v1alpha1.json diff --git a/healthcare.cnrm.cloud.google.com/healthcarefhirstore_v1alpha1.json b/crds/healthcare.cnrm.cloud.google.com/healthcarefhirstore_v1alpha1.json similarity index 100% rename from healthcare.cnrm.cloud.google.com/healthcarefhirstore_v1alpha1.json rename to crds/healthcare.cnrm.cloud.google.com/healthcarefhirstore_v1alpha1.json diff --git a/healthcare.cnrm.cloud.google.com/healthcarehl7v2store_v1alpha1.json b/crds/healthcare.cnrm.cloud.google.com/healthcarehl7v2store_v1alpha1.json similarity index 100% rename from healthcare.cnrm.cloud.google.com/healthcarehl7v2store_v1alpha1.json rename to crds/healthcare.cnrm.cloud.google.com/healthcarehl7v2store_v1alpha1.json diff --git a/helm.k0sproject.io/chart_v1beta1.json b/crds/helm.k0sproject.io/chart_v1beta1.json similarity index 100% rename from helm.k0sproject.io/chart_v1beta1.json rename to crds/helm.k0sproject.io/chart_v1beta1.json diff --git a/helm.toolkit.fluxcd.io/helmrelease_v1.json b/crds/helm.toolkit.fluxcd.io/helmrelease_v1.json similarity index 100% rename from helm.toolkit.fluxcd.io/helmrelease_v1.json rename to crds/helm.toolkit.fluxcd.io/helmrelease_v1.json diff --git a/helm.toolkit.fluxcd.io/helmrelease_v2.json b/crds/helm.toolkit.fluxcd.io/helmrelease_v2.json similarity index 100% rename from helm.toolkit.fluxcd.io/helmrelease_v2.json rename to crds/helm.toolkit.fluxcd.io/helmrelease_v2.json diff --git a/helm.toolkit.fluxcd.io/helmrelease_v2beta1.json b/crds/helm.toolkit.fluxcd.io/helmrelease_v2beta1.json similarity index 100% rename from helm.toolkit.fluxcd.io/helmrelease_v2beta1.json rename to crds/helm.toolkit.fluxcd.io/helmrelease_v2beta1.json diff --git a/helm.toolkit.fluxcd.io/helmrelease_v2beta2.json b/crds/helm.toolkit.fluxcd.io/helmrelease_v2beta2.json similarity index 100% rename from helm.toolkit.fluxcd.io/helmrelease_v2beta2.json rename to crds/helm.toolkit.fluxcd.io/helmrelease_v2beta2.json diff --git a/hivemq.com/hivemqplatform_v1.json b/crds/hivemq.com/hivemqplatform_v1.json similarity index 100% rename from hivemq.com/hivemqplatform_v1.json rename to crds/hivemq.com/hivemqplatform_v1.json diff --git a/iam.cnrm.cloud.google.com/iamaccessboundarypolicy_v1beta1.json b/crds/iam.cnrm.cloud.google.com/iamaccessboundarypolicy_v1beta1.json similarity index 100% rename from iam.cnrm.cloud.google.com/iamaccessboundarypolicy_v1beta1.json rename to crds/iam.cnrm.cloud.google.com/iamaccessboundarypolicy_v1beta1.json diff --git a/iam.cnrm.cloud.google.com/iamauditconfig_v1beta1.json b/crds/iam.cnrm.cloud.google.com/iamauditconfig_v1beta1.json similarity index 100% rename from iam.cnrm.cloud.google.com/iamauditconfig_v1beta1.json rename to crds/iam.cnrm.cloud.google.com/iamauditconfig_v1beta1.json diff --git a/iam.cnrm.cloud.google.com/iamcustomrole_v1beta1.json b/crds/iam.cnrm.cloud.google.com/iamcustomrole_v1beta1.json similarity index 100% rename from iam.cnrm.cloud.google.com/iamcustomrole_v1beta1.json rename to crds/iam.cnrm.cloud.google.com/iamcustomrole_v1beta1.json diff --git a/iam.cnrm.cloud.google.com/iampartialpolicy_v1beta1.json b/crds/iam.cnrm.cloud.google.com/iampartialpolicy_v1beta1.json similarity index 100% rename from iam.cnrm.cloud.google.com/iampartialpolicy_v1beta1.json rename to crds/iam.cnrm.cloud.google.com/iampartialpolicy_v1beta1.json diff --git a/iam.cnrm.cloud.google.com/iampolicy_v1beta1.json b/crds/iam.cnrm.cloud.google.com/iampolicy_v1beta1.json similarity index 100% rename from iam.cnrm.cloud.google.com/iampolicy_v1beta1.json rename to crds/iam.cnrm.cloud.google.com/iampolicy_v1beta1.json diff --git a/iam.cnrm.cloud.google.com/iampolicymember_v1beta1.json b/crds/iam.cnrm.cloud.google.com/iampolicymember_v1beta1.json similarity index 100% rename from iam.cnrm.cloud.google.com/iampolicymember_v1beta1.json rename to crds/iam.cnrm.cloud.google.com/iampolicymember_v1beta1.json diff --git a/iam.cnrm.cloud.google.com/iamserviceaccount_v1beta1.json b/crds/iam.cnrm.cloud.google.com/iamserviceaccount_v1beta1.json similarity index 100% rename from iam.cnrm.cloud.google.com/iamserviceaccount_v1beta1.json rename to crds/iam.cnrm.cloud.google.com/iamserviceaccount_v1beta1.json diff --git a/iam.cnrm.cloud.google.com/iamserviceaccountkey_v1beta1.json b/crds/iam.cnrm.cloud.google.com/iamserviceaccountkey_v1beta1.json similarity index 100% rename from iam.cnrm.cloud.google.com/iamserviceaccountkey_v1beta1.json rename to crds/iam.cnrm.cloud.google.com/iamserviceaccountkey_v1beta1.json diff --git a/iam.cnrm.cloud.google.com/iamworkforcepool_v1beta1.json b/crds/iam.cnrm.cloud.google.com/iamworkforcepool_v1beta1.json similarity index 100% rename from iam.cnrm.cloud.google.com/iamworkforcepool_v1beta1.json rename to crds/iam.cnrm.cloud.google.com/iamworkforcepool_v1beta1.json diff --git a/iam.cnrm.cloud.google.com/iamworkforcepoolprovider_v1beta1.json b/crds/iam.cnrm.cloud.google.com/iamworkforcepoolprovider_v1beta1.json similarity index 100% rename from iam.cnrm.cloud.google.com/iamworkforcepoolprovider_v1beta1.json rename to crds/iam.cnrm.cloud.google.com/iamworkforcepoolprovider_v1beta1.json diff --git a/iam.cnrm.cloud.google.com/iamworkloadidentitypool_v1beta1.json b/crds/iam.cnrm.cloud.google.com/iamworkloadidentitypool_v1beta1.json similarity index 100% rename from iam.cnrm.cloud.google.com/iamworkloadidentitypool_v1beta1.json rename to crds/iam.cnrm.cloud.google.com/iamworkloadidentitypool_v1beta1.json diff --git a/iam.cnrm.cloud.google.com/iamworkloadidentitypoolprovider_v1beta1.json b/crds/iam.cnrm.cloud.google.com/iamworkloadidentitypoolprovider_v1beta1.json similarity index 100% rename from iam.cnrm.cloud.google.com/iamworkloadidentitypoolprovider_v1beta1.json rename to crds/iam.cnrm.cloud.google.com/iamworkloadidentitypoolprovider_v1beta1.json diff --git a/iam.services.k8s.aws/group_v1alpha1.json b/crds/iam.services.k8s.aws/group_v1alpha1.json similarity index 100% rename from iam.services.k8s.aws/group_v1alpha1.json rename to crds/iam.services.k8s.aws/group_v1alpha1.json diff --git a/iam.services.k8s.aws/openidconnectprovider_v1alpha1.json b/crds/iam.services.k8s.aws/openidconnectprovider_v1alpha1.json similarity index 100% rename from iam.services.k8s.aws/openidconnectprovider_v1alpha1.json rename to crds/iam.services.k8s.aws/openidconnectprovider_v1alpha1.json diff --git a/iam.services.k8s.aws/policy_v1alpha1.json b/crds/iam.services.k8s.aws/policy_v1alpha1.json similarity index 100% rename from iam.services.k8s.aws/policy_v1alpha1.json rename to crds/iam.services.k8s.aws/policy_v1alpha1.json diff --git a/iam.services.k8s.aws/role_v1alpha1.json b/crds/iam.services.k8s.aws/role_v1alpha1.json similarity index 100% rename from iam.services.k8s.aws/role_v1alpha1.json rename to crds/iam.services.k8s.aws/role_v1alpha1.json diff --git a/iam.services.k8s.aws/user_v1alpha1.json b/crds/iam.services.k8s.aws/user_v1alpha1.json similarity index 100% rename from iam.services.k8s.aws/user_v1alpha1.json rename to crds/iam.services.k8s.aws/user_v1alpha1.json diff --git a/iap.cnrm.cloud.google.com/iapbrand_v1beta1.json b/crds/iap.cnrm.cloud.google.com/iapbrand_v1beta1.json similarity index 100% rename from iap.cnrm.cloud.google.com/iapbrand_v1beta1.json rename to crds/iap.cnrm.cloud.google.com/iapbrand_v1beta1.json diff --git a/iap.cnrm.cloud.google.com/iapidentityawareproxyclient_v1beta1.json b/crds/iap.cnrm.cloud.google.com/iapidentityawareproxyclient_v1beta1.json similarity index 100% rename from iap.cnrm.cloud.google.com/iapidentityawareproxyclient_v1beta1.json rename to crds/iap.cnrm.cloud.google.com/iapidentityawareproxyclient_v1beta1.json diff --git a/identityplatform.cnrm.cloud.google.com/identityplatformconfig_v1beta1.json b/crds/identityplatform.cnrm.cloud.google.com/identityplatformconfig_v1beta1.json similarity index 100% rename from identityplatform.cnrm.cloud.google.com/identityplatformconfig_v1beta1.json rename to crds/identityplatform.cnrm.cloud.google.com/identityplatformconfig_v1beta1.json diff --git a/identityplatform.cnrm.cloud.google.com/identityplatformdefaultsupportedidpconfig_v1alpha1.json b/crds/identityplatform.cnrm.cloud.google.com/identityplatformdefaultsupportedidpconfig_v1alpha1.json similarity index 100% rename from identityplatform.cnrm.cloud.google.com/identityplatformdefaultsupportedidpconfig_v1alpha1.json rename to crds/identityplatform.cnrm.cloud.google.com/identityplatformdefaultsupportedidpconfig_v1alpha1.json diff --git a/identityplatform.cnrm.cloud.google.com/identityplatforminboundsamlconfig_v1alpha1.json b/crds/identityplatform.cnrm.cloud.google.com/identityplatforminboundsamlconfig_v1alpha1.json similarity index 100% rename from identityplatform.cnrm.cloud.google.com/identityplatforminboundsamlconfig_v1alpha1.json rename to crds/identityplatform.cnrm.cloud.google.com/identityplatforminboundsamlconfig_v1alpha1.json diff --git a/identityplatform.cnrm.cloud.google.com/identityplatformoauthidpconfig_v1beta1.json b/crds/identityplatform.cnrm.cloud.google.com/identityplatformoauthidpconfig_v1beta1.json similarity index 100% rename from identityplatform.cnrm.cloud.google.com/identityplatformoauthidpconfig_v1beta1.json rename to crds/identityplatform.cnrm.cloud.google.com/identityplatformoauthidpconfig_v1beta1.json diff --git a/identityplatform.cnrm.cloud.google.com/identityplatformprojectdefaultconfig_v1alpha1.json b/crds/identityplatform.cnrm.cloud.google.com/identityplatformprojectdefaultconfig_v1alpha1.json similarity index 100% rename from identityplatform.cnrm.cloud.google.com/identityplatformprojectdefaultconfig_v1alpha1.json rename to crds/identityplatform.cnrm.cloud.google.com/identityplatformprojectdefaultconfig_v1alpha1.json diff --git a/identityplatform.cnrm.cloud.google.com/identityplatformtenant_v1beta1.json b/crds/identityplatform.cnrm.cloud.google.com/identityplatformtenant_v1beta1.json similarity index 100% rename from identityplatform.cnrm.cloud.google.com/identityplatformtenant_v1beta1.json rename to crds/identityplatform.cnrm.cloud.google.com/identityplatformtenant_v1beta1.json diff --git a/identityplatform.cnrm.cloud.google.com/identityplatformtenantdefaultsupportedidpconfig_v1alpha1.json b/crds/identityplatform.cnrm.cloud.google.com/identityplatformtenantdefaultsupportedidpconfig_v1alpha1.json similarity index 100% rename from identityplatform.cnrm.cloud.google.com/identityplatformtenantdefaultsupportedidpconfig_v1alpha1.json rename to crds/identityplatform.cnrm.cloud.google.com/identityplatformtenantdefaultsupportedidpconfig_v1alpha1.json diff --git a/identityplatform.cnrm.cloud.google.com/identityplatformtenantinboundsamlconfig_v1alpha1.json b/crds/identityplatform.cnrm.cloud.google.com/identityplatformtenantinboundsamlconfig_v1alpha1.json similarity index 100% rename from identityplatform.cnrm.cloud.google.com/identityplatformtenantinboundsamlconfig_v1alpha1.json rename to crds/identityplatform.cnrm.cloud.google.com/identityplatformtenantinboundsamlconfig_v1alpha1.json diff --git a/identityplatform.cnrm.cloud.google.com/identityplatformtenantoauthidpconfig_v1beta1.json b/crds/identityplatform.cnrm.cloud.google.com/identityplatformtenantoauthidpconfig_v1beta1.json similarity index 100% rename from identityplatform.cnrm.cloud.google.com/identityplatformtenantoauthidpconfig_v1beta1.json rename to crds/identityplatform.cnrm.cloud.google.com/identityplatformtenantoauthidpconfig_v1beta1.json diff --git a/idp.supervisor.pinniped.dev/activedirectoryidentityprovider_v1alpha1.json b/crds/idp.supervisor.pinniped.dev/activedirectoryidentityprovider_v1alpha1.json similarity index 100% rename from idp.supervisor.pinniped.dev/activedirectoryidentityprovider_v1alpha1.json rename to crds/idp.supervisor.pinniped.dev/activedirectoryidentityprovider_v1alpha1.json diff --git a/idp.supervisor.pinniped.dev/githubidentityprovider_v1alpha1.json b/crds/idp.supervisor.pinniped.dev/githubidentityprovider_v1alpha1.json similarity index 100% rename from idp.supervisor.pinniped.dev/githubidentityprovider_v1alpha1.json rename to crds/idp.supervisor.pinniped.dev/githubidentityprovider_v1alpha1.json diff --git a/idp.supervisor.pinniped.dev/ldapidentityprovider_v1alpha1.json b/crds/idp.supervisor.pinniped.dev/ldapidentityprovider_v1alpha1.json similarity index 100% rename from idp.supervisor.pinniped.dev/ldapidentityprovider_v1alpha1.json rename to crds/idp.supervisor.pinniped.dev/ldapidentityprovider_v1alpha1.json diff --git a/idp.supervisor.pinniped.dev/oidcidentityprovider_v1alpha1.json b/crds/idp.supervisor.pinniped.dev/oidcidentityprovider_v1alpha1.json similarity index 100% rename from idp.supervisor.pinniped.dev/oidcidentityprovider_v1alpha1.json rename to crds/idp.supervisor.pinniped.dev/oidcidentityprovider_v1alpha1.json diff --git a/image.toolkit.fluxcd.io/imagepolicy_v1alpha1.json b/crds/image.toolkit.fluxcd.io/imagepolicy_v1alpha1.json similarity index 100% rename from image.toolkit.fluxcd.io/imagepolicy_v1alpha1.json rename to crds/image.toolkit.fluxcd.io/imagepolicy_v1alpha1.json diff --git a/image.toolkit.fluxcd.io/imagepolicy_v1alpha2.json b/crds/image.toolkit.fluxcd.io/imagepolicy_v1alpha2.json similarity index 100% rename from image.toolkit.fluxcd.io/imagepolicy_v1alpha2.json rename to crds/image.toolkit.fluxcd.io/imagepolicy_v1alpha2.json diff --git a/image.toolkit.fluxcd.io/imagepolicy_v1beta1.json b/crds/image.toolkit.fluxcd.io/imagepolicy_v1beta1.json similarity index 100% rename from image.toolkit.fluxcd.io/imagepolicy_v1beta1.json rename to crds/image.toolkit.fluxcd.io/imagepolicy_v1beta1.json diff --git a/image.toolkit.fluxcd.io/imagepolicy_v1beta2.json b/crds/image.toolkit.fluxcd.io/imagepolicy_v1beta2.json similarity index 100% rename from image.toolkit.fluxcd.io/imagepolicy_v1beta2.json rename to crds/image.toolkit.fluxcd.io/imagepolicy_v1beta2.json diff --git a/image.toolkit.fluxcd.io/imagerepository_v1alpha1.json b/crds/image.toolkit.fluxcd.io/imagerepository_v1alpha1.json similarity index 100% rename from image.toolkit.fluxcd.io/imagerepository_v1alpha1.json rename to crds/image.toolkit.fluxcd.io/imagerepository_v1alpha1.json diff --git a/image.toolkit.fluxcd.io/imagerepository_v1alpha2.json b/crds/image.toolkit.fluxcd.io/imagerepository_v1alpha2.json similarity index 100% rename from image.toolkit.fluxcd.io/imagerepository_v1alpha2.json rename to crds/image.toolkit.fluxcd.io/imagerepository_v1alpha2.json diff --git a/image.toolkit.fluxcd.io/imagerepository_v1beta1.json b/crds/image.toolkit.fluxcd.io/imagerepository_v1beta1.json similarity index 100% rename from image.toolkit.fluxcd.io/imagerepository_v1beta1.json rename to crds/image.toolkit.fluxcd.io/imagerepository_v1beta1.json diff --git a/image.toolkit.fluxcd.io/imagerepository_v1beta2.json b/crds/image.toolkit.fluxcd.io/imagerepository_v1beta2.json similarity index 100% rename from image.toolkit.fluxcd.io/imagerepository_v1beta2.json rename to crds/image.toolkit.fluxcd.io/imagerepository_v1beta2.json diff --git a/image.toolkit.fluxcd.io/imageupdateautomation_v1alpha1.json b/crds/image.toolkit.fluxcd.io/imageupdateautomation_v1alpha1.json similarity index 100% rename from image.toolkit.fluxcd.io/imageupdateautomation_v1alpha1.json rename to crds/image.toolkit.fluxcd.io/imageupdateautomation_v1alpha1.json diff --git a/image.toolkit.fluxcd.io/imageupdateautomation_v1alpha2.json b/crds/image.toolkit.fluxcd.io/imageupdateautomation_v1alpha2.json similarity index 100% rename from image.toolkit.fluxcd.io/imageupdateautomation_v1alpha2.json rename to crds/image.toolkit.fluxcd.io/imageupdateautomation_v1alpha2.json diff --git a/image.toolkit.fluxcd.io/imageupdateautomation_v1beta1.json b/crds/image.toolkit.fluxcd.io/imageupdateautomation_v1beta1.json similarity index 100% rename from image.toolkit.fluxcd.io/imageupdateautomation_v1beta1.json rename to crds/image.toolkit.fluxcd.io/imageupdateautomation_v1beta1.json diff --git a/image.toolkit.fluxcd.io/imageupdateautomation_v1beta2.json b/crds/image.toolkit.fluxcd.io/imageupdateautomation_v1beta2.json similarity index 100% rename from image.toolkit.fluxcd.io/imageupdateautomation_v1beta2.json rename to crds/image.toolkit.fluxcd.io/imageupdateautomation_v1beta2.json diff --git a/index.yaml b/crds/index.yaml similarity index 99% rename from index.yaml rename to crds/index.yaml index 6f7544de..480b9fe1 100644 --- a/index.yaml +++ b/crds/index.yaml @@ -814,67 +814,6 @@ aquasecurity.github.io: filename: aquasecurity.github.io/exposedsecretreport_v1alpha1.json kind: ExposedSecretReport name: exposedsecretreport_v1alpha1 -argoproj: - - apiVersion: argoproj/v1alpha1 - filename: argoproj/applicationset_v1alpha1.json - kind: applicationset - name: applicationset_v1alpha1 - - apiVersion: argoproj/v1alpha1 - filename: argoproj/clusterworkflowtemplate_v1alpha1.json - kind: clusterworkflowtemplate - name: clusterworkflowtemplate_v1alpha1 - - apiVersion: argoproj/v1alpha1 - filename: argoproj/clusteranalysistemplate_v1alpha1.json - kind: clusteranalysistemplate - name: clusteranalysistemplate_v1alpha1 - - apiVersion: argoproj/v1alpha1 - filename: argoproj/cronworkflow_v1alpha1.json - kind: cronworkflow - name: cronworkflow_v1alpha1 - - apiVersion: argoproj/v1alpha1 - filename: argoproj/workflowtaskresult_v1alpha1.json - kind: workflowtaskresult - name: workflowtaskresult_v1alpha1 - - apiVersion: argoproj/v1alpha1 - filename: argoproj/workfloweventbinding_v1alpha1.json - kind: workfloweventbinding - name: workfloweventbinding_v1alpha1 - - apiVersion: argoproj/v1alpha1 - filename: argoproj/appproject_v1alpha1.json - kind: AppProject - name: appproject_v1alpha1 - - apiVersion: argoproj/v1alpha1 - filename: argoproj/workflowtaskset_v1alpha1.json - kind: workflowtaskset - name: workflowtaskset_v1alpha1 - - apiVersion: argoproj/v1alpha1 - filename: argoproj/rollout_v1alpha1.json - kind: rollout - name: rollout_v1alpha1 - - apiVersion: argoproj/v1alpha1 - filename: argoproj/application_v1alpha1.json - kind: Application - name: application_v1alpha1 - - apiVersion: argoproj/v1alpha1 - filename: argoproj/analysisrun_v1alpha1.json - kind: analysisrun - name: analysisrun_v1alpha1 - - apiVersion: argoproj/v1alpha1 - filename: argoproj/workflow_v1alpha1.json - kind: workflow - name: workflow_v1alpha1 - - apiVersion: argoproj/v1alpha1 - filename: argoproj/analysistemplate_v1alpha1.json - kind: analysistemplate - name: analysistemplate_v1alpha1 - - apiVersion: argoproj/v1alpha1 - filename: argoproj/experiment_v1alpha1.json - kind: experiment - name: experiment_v1alpha1 - - apiVersion: argoproj/v1alpha1 - filename: argoproj/workflowtemplate_v1alpha1.json - kind: workflowtemplate - name: workflowtemplate_v1alpha1 argoproj.io: - apiVersion: argoproj.io/v1alpha1 filename: argoproj.io/analysisrun_v1alpha1.json @@ -2813,6 +2752,10 @@ external-secrets.io: filename: external-secrets.io/externalsecret_v1alpha1.json kind: ExternalSecret name: externalsecret_v1alpha1 + - apiVersion: external-secrets.io/v1alpha1 + filename: external-secrets.io/clusterpushsecret_v1alpha1.json + kind: clusterpushsecret + name: clusterpushsecret_v1alpha1 externaldata.gatekeeper.sh: - apiVersion: externaldata.gatekeeper.sh/v1alpha1 filename: externaldata.gatekeeper.sh/provider_v1alpha1.json diff --git a/infrastructure.cluster.x-k8s.io/awscluster_v1alpha2.json b/crds/infrastructure.cluster.x-k8s.io/awscluster_v1alpha2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awscluster_v1alpha2.json rename to crds/infrastructure.cluster.x-k8s.io/awscluster_v1alpha2.json diff --git a/infrastructure.cluster.x-k8s.io/awscluster_v1alpha3.json b/crds/infrastructure.cluster.x-k8s.io/awscluster_v1alpha3.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awscluster_v1alpha3.json rename to crds/infrastructure.cluster.x-k8s.io/awscluster_v1alpha3.json diff --git a/infrastructure.cluster.x-k8s.io/awscluster_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/awscluster_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awscluster_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/awscluster_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/awscluster_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/awscluster_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awscluster_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/awscluster_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/awscluster_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/awscluster_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awscluster_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/awscluster_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/awsclustercontrolleridentity_v1alpha3.json b/crds/infrastructure.cluster.x-k8s.io/awsclustercontrolleridentity_v1alpha3.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsclustercontrolleridentity_v1alpha3.json rename to crds/infrastructure.cluster.x-k8s.io/awsclustercontrolleridentity_v1alpha3.json diff --git a/infrastructure.cluster.x-k8s.io/awsclustercontrolleridentity_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/awsclustercontrolleridentity_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsclustercontrolleridentity_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/awsclustercontrolleridentity_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/awsclustercontrolleridentity_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/awsclustercontrolleridentity_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsclustercontrolleridentity_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/awsclustercontrolleridentity_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/awsclustercontrolleridentity_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/awsclustercontrolleridentity_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsclustercontrolleridentity_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/awsclustercontrolleridentity_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/awsclusterroleidentity_v1alpha3.json b/crds/infrastructure.cluster.x-k8s.io/awsclusterroleidentity_v1alpha3.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsclusterroleidentity_v1alpha3.json rename to crds/infrastructure.cluster.x-k8s.io/awsclusterroleidentity_v1alpha3.json diff --git a/infrastructure.cluster.x-k8s.io/awsclusterroleidentity_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/awsclusterroleidentity_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsclusterroleidentity_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/awsclusterroleidentity_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/awsclusterroleidentity_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/awsclusterroleidentity_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsclusterroleidentity_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/awsclusterroleidentity_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/awsclusterroleidentity_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/awsclusterroleidentity_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsclusterroleidentity_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/awsclusterroleidentity_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/awsclusterstaticidentity_v1alpha3.json b/crds/infrastructure.cluster.x-k8s.io/awsclusterstaticidentity_v1alpha3.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsclusterstaticidentity_v1alpha3.json rename to crds/infrastructure.cluster.x-k8s.io/awsclusterstaticidentity_v1alpha3.json diff --git a/infrastructure.cluster.x-k8s.io/awsclusterstaticidentity_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/awsclusterstaticidentity_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsclusterstaticidentity_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/awsclusterstaticidentity_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/awsclusterstaticidentity_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/awsclusterstaticidentity_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsclusterstaticidentity_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/awsclusterstaticidentity_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/awsclusterstaticidentity_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/awsclusterstaticidentity_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsclusterstaticidentity_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/awsclusterstaticidentity_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/awsclustertemplate_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/awsclustertemplate_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsclustertemplate_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/awsclustertemplate_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/awsclustertemplate_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/awsclustertemplate_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsclustertemplate_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/awsclustertemplate_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/awsclustertemplate_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/awsclustertemplate_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsclustertemplate_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/awsclustertemplate_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/awsfargateprofile_v1alpha3.json b/crds/infrastructure.cluster.x-k8s.io/awsfargateprofile_v1alpha3.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsfargateprofile_v1alpha3.json rename to crds/infrastructure.cluster.x-k8s.io/awsfargateprofile_v1alpha3.json diff --git a/infrastructure.cluster.x-k8s.io/awsfargateprofile_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/awsfargateprofile_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsfargateprofile_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/awsfargateprofile_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/awsfargateprofile_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/awsfargateprofile_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsfargateprofile_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/awsfargateprofile_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/awsfargateprofile_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/awsfargateprofile_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsfargateprofile_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/awsfargateprofile_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/awsmachine_v1alpha2.json b/crds/infrastructure.cluster.x-k8s.io/awsmachine_v1alpha2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsmachine_v1alpha2.json rename to crds/infrastructure.cluster.x-k8s.io/awsmachine_v1alpha2.json diff --git a/infrastructure.cluster.x-k8s.io/awsmachine_v1alpha3.json b/crds/infrastructure.cluster.x-k8s.io/awsmachine_v1alpha3.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsmachine_v1alpha3.json rename to crds/infrastructure.cluster.x-k8s.io/awsmachine_v1alpha3.json diff --git a/infrastructure.cluster.x-k8s.io/awsmachine_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/awsmachine_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsmachine_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/awsmachine_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/awsmachine_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/awsmachine_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsmachine_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/awsmachine_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/awsmachine_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/awsmachine_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsmachine_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/awsmachine_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/awsmachinepool_v1alpha3.json b/crds/infrastructure.cluster.x-k8s.io/awsmachinepool_v1alpha3.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsmachinepool_v1alpha3.json rename to crds/infrastructure.cluster.x-k8s.io/awsmachinepool_v1alpha3.json diff --git a/infrastructure.cluster.x-k8s.io/awsmachinepool_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/awsmachinepool_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsmachinepool_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/awsmachinepool_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/awsmachinepool_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/awsmachinepool_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsmachinepool_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/awsmachinepool_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/awsmachinepool_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/awsmachinepool_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsmachinepool_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/awsmachinepool_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/awsmachinetemplate_v1alpha2.json b/crds/infrastructure.cluster.x-k8s.io/awsmachinetemplate_v1alpha2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsmachinetemplate_v1alpha2.json rename to crds/infrastructure.cluster.x-k8s.io/awsmachinetemplate_v1alpha2.json diff --git a/infrastructure.cluster.x-k8s.io/awsmachinetemplate_v1alpha3.json b/crds/infrastructure.cluster.x-k8s.io/awsmachinetemplate_v1alpha3.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsmachinetemplate_v1alpha3.json rename to crds/infrastructure.cluster.x-k8s.io/awsmachinetemplate_v1alpha3.json diff --git a/infrastructure.cluster.x-k8s.io/awsmachinetemplate_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/awsmachinetemplate_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsmachinetemplate_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/awsmachinetemplate_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/awsmachinetemplate_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/awsmachinetemplate_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsmachinetemplate_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/awsmachinetemplate_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/awsmachinetemplate_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/awsmachinetemplate_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsmachinetemplate_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/awsmachinetemplate_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/awsmanagedcluster_v1alpha3.json b/crds/infrastructure.cluster.x-k8s.io/awsmanagedcluster_v1alpha3.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsmanagedcluster_v1alpha3.json rename to crds/infrastructure.cluster.x-k8s.io/awsmanagedcluster_v1alpha3.json diff --git a/infrastructure.cluster.x-k8s.io/awsmanagedcluster_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/awsmanagedcluster_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsmanagedcluster_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/awsmanagedcluster_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/awsmanagedmachinepool_v1alpha3.json b/crds/infrastructure.cluster.x-k8s.io/awsmanagedmachinepool_v1alpha3.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsmanagedmachinepool_v1alpha3.json rename to crds/infrastructure.cluster.x-k8s.io/awsmanagedmachinepool_v1alpha3.json diff --git a/infrastructure.cluster.x-k8s.io/awsmanagedmachinepool_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/awsmanagedmachinepool_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsmanagedmachinepool_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/awsmanagedmachinepool_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/awsmanagedmachinepool_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/awsmanagedmachinepool_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsmanagedmachinepool_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/awsmanagedmachinepool_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/awsmanagedmachinepool_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/awsmanagedmachinepool_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/awsmanagedmachinepool_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/awsmanagedmachinepool_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/azureasomanagedcluster_v1alpha1.json b/crds/infrastructure.cluster.x-k8s.io/azureasomanagedcluster_v1alpha1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azureasomanagedcluster_v1alpha1.json rename to crds/infrastructure.cluster.x-k8s.io/azureasomanagedcluster_v1alpha1.json diff --git a/infrastructure.cluster.x-k8s.io/azureasomanagedclustertemplate_v1alpha1.json b/crds/infrastructure.cluster.x-k8s.io/azureasomanagedclustertemplate_v1alpha1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azureasomanagedclustertemplate_v1alpha1.json rename to crds/infrastructure.cluster.x-k8s.io/azureasomanagedclustertemplate_v1alpha1.json diff --git a/infrastructure.cluster.x-k8s.io/azureasomanagedcontrolplane_v1alpha1.json b/crds/infrastructure.cluster.x-k8s.io/azureasomanagedcontrolplane_v1alpha1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azureasomanagedcontrolplane_v1alpha1.json rename to crds/infrastructure.cluster.x-k8s.io/azureasomanagedcontrolplane_v1alpha1.json diff --git a/infrastructure.cluster.x-k8s.io/azureasomanagedcontrolplanetemplate_v1alpha1.json b/crds/infrastructure.cluster.x-k8s.io/azureasomanagedcontrolplanetemplate_v1alpha1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azureasomanagedcontrolplanetemplate_v1alpha1.json rename to crds/infrastructure.cluster.x-k8s.io/azureasomanagedcontrolplanetemplate_v1alpha1.json diff --git a/infrastructure.cluster.x-k8s.io/azureasomanagedmachinepool_v1alpha1.json b/crds/infrastructure.cluster.x-k8s.io/azureasomanagedmachinepool_v1alpha1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azureasomanagedmachinepool_v1alpha1.json rename to crds/infrastructure.cluster.x-k8s.io/azureasomanagedmachinepool_v1alpha1.json diff --git a/infrastructure.cluster.x-k8s.io/azureasomanagedmachinepooltemplate_v1alpha1.json b/crds/infrastructure.cluster.x-k8s.io/azureasomanagedmachinepooltemplate_v1alpha1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azureasomanagedmachinepooltemplate_v1alpha1.json rename to crds/infrastructure.cluster.x-k8s.io/azureasomanagedmachinepooltemplate_v1alpha1.json diff --git a/infrastructure.cluster.x-k8s.io/azurecluster_v1alpha2.json b/crds/infrastructure.cluster.x-k8s.io/azurecluster_v1alpha2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azurecluster_v1alpha2.json rename to crds/infrastructure.cluster.x-k8s.io/azurecluster_v1alpha2.json diff --git a/infrastructure.cluster.x-k8s.io/azurecluster_v1alpha3.json b/crds/infrastructure.cluster.x-k8s.io/azurecluster_v1alpha3.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azurecluster_v1alpha3.json rename to crds/infrastructure.cluster.x-k8s.io/azurecluster_v1alpha3.json diff --git a/infrastructure.cluster.x-k8s.io/azurecluster_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/azurecluster_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azurecluster_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/azurecluster_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/azurecluster_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/azurecluster_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azurecluster_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/azurecluster_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/azureclusteridentity_v1alpha3.json b/crds/infrastructure.cluster.x-k8s.io/azureclusteridentity_v1alpha3.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azureclusteridentity_v1alpha3.json rename to crds/infrastructure.cluster.x-k8s.io/azureclusteridentity_v1alpha3.json diff --git a/infrastructure.cluster.x-k8s.io/azureclusteridentity_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/azureclusteridentity_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azureclusteridentity_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/azureclusteridentity_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/azureclusteridentity_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/azureclusteridentity_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azureclusteridentity_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/azureclusteridentity_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/azureclustertemplate_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/azureclustertemplate_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azureclustertemplate_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/azureclustertemplate_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/azuremachine_v1alpha2.json b/crds/infrastructure.cluster.x-k8s.io/azuremachine_v1alpha2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azuremachine_v1alpha2.json rename to crds/infrastructure.cluster.x-k8s.io/azuremachine_v1alpha2.json diff --git a/infrastructure.cluster.x-k8s.io/azuremachine_v1alpha3.json b/crds/infrastructure.cluster.x-k8s.io/azuremachine_v1alpha3.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azuremachine_v1alpha3.json rename to crds/infrastructure.cluster.x-k8s.io/azuremachine_v1alpha3.json diff --git a/infrastructure.cluster.x-k8s.io/azuremachine_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/azuremachine_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azuremachine_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/azuremachine_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/azuremachine_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/azuremachine_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azuremachine_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/azuremachine_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/azuremachinepool_v1alpha3.json b/crds/infrastructure.cluster.x-k8s.io/azuremachinepool_v1alpha3.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azuremachinepool_v1alpha3.json rename to crds/infrastructure.cluster.x-k8s.io/azuremachinepool_v1alpha3.json diff --git a/infrastructure.cluster.x-k8s.io/azuremachinepool_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/azuremachinepool_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azuremachinepool_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/azuremachinepool_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/azuremachinepool_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/azuremachinepool_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azuremachinepool_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/azuremachinepool_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/azuremachinepoolmachine_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/azuremachinepoolmachine_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azuremachinepoolmachine_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/azuremachinepoolmachine_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/azuremachinepoolmachine_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/azuremachinepoolmachine_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azuremachinepoolmachine_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/azuremachinepoolmachine_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/azuremachinetemplate_v1alpha2.json b/crds/infrastructure.cluster.x-k8s.io/azuremachinetemplate_v1alpha2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azuremachinetemplate_v1alpha2.json rename to crds/infrastructure.cluster.x-k8s.io/azuremachinetemplate_v1alpha2.json diff --git a/infrastructure.cluster.x-k8s.io/azuremachinetemplate_v1alpha3.json b/crds/infrastructure.cluster.x-k8s.io/azuremachinetemplate_v1alpha3.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azuremachinetemplate_v1alpha3.json rename to crds/infrastructure.cluster.x-k8s.io/azuremachinetemplate_v1alpha3.json diff --git a/infrastructure.cluster.x-k8s.io/azuremachinetemplate_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/azuremachinetemplate_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azuremachinetemplate_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/azuremachinetemplate_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/azuremachinetemplate_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/azuremachinetemplate_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azuremachinetemplate_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/azuremachinetemplate_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/azuremanagedcluster_v1alpha3.json b/crds/infrastructure.cluster.x-k8s.io/azuremanagedcluster_v1alpha3.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azuremanagedcluster_v1alpha3.json rename to crds/infrastructure.cluster.x-k8s.io/azuremanagedcluster_v1alpha3.json diff --git a/infrastructure.cluster.x-k8s.io/azuremanagedcluster_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/azuremanagedcluster_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azuremanagedcluster_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/azuremanagedcluster_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/azuremanagedcluster_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/azuremanagedcluster_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azuremanagedcluster_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/azuremanagedcluster_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/azuremanagedclustertemplate_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/azuremanagedclustertemplate_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azuremanagedclustertemplate_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/azuremanagedclustertemplate_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/azuremanagedcontrolplane_v1alpha3.json b/crds/infrastructure.cluster.x-k8s.io/azuremanagedcontrolplane_v1alpha3.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azuremanagedcontrolplane_v1alpha3.json rename to crds/infrastructure.cluster.x-k8s.io/azuremanagedcontrolplane_v1alpha3.json diff --git a/infrastructure.cluster.x-k8s.io/azuremanagedcontrolplane_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/azuremanagedcontrolplane_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azuremanagedcontrolplane_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/azuremanagedcontrolplane_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/azuremanagedcontrolplane_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/azuremanagedcontrolplane_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azuremanagedcontrolplane_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/azuremanagedcontrolplane_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/azuremanagedcontrolplanetemplate_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/azuremanagedcontrolplanetemplate_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azuremanagedcontrolplanetemplate_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/azuremanagedcontrolplanetemplate_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/azuremanagedmachinepool_v1alpha3.json b/crds/infrastructure.cluster.x-k8s.io/azuremanagedmachinepool_v1alpha3.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azuremanagedmachinepool_v1alpha3.json rename to crds/infrastructure.cluster.x-k8s.io/azuremanagedmachinepool_v1alpha3.json diff --git a/infrastructure.cluster.x-k8s.io/azuremanagedmachinepool_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/azuremanagedmachinepool_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azuremanagedmachinepool_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/azuremanagedmachinepool_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/azuremanagedmachinepool_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/azuremanagedmachinepool_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azuremanagedmachinepool_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/azuremanagedmachinepool_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/azuremanagedmachinepooltemplate_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/azuremanagedmachinepooltemplate_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/azuremanagedmachinepooltemplate_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/azuremanagedmachinepooltemplate_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/bootstrapkubeconfig_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/bootstrapkubeconfig_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/bootstrapkubeconfig_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/bootstrapkubeconfig_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/byocluster_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/byocluster_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/byocluster_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/byocluster_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/byoclustertemplate_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/byoclustertemplate_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/byoclustertemplate_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/byoclustertemplate_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/byohost_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/byohost_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/byohost_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/byohost_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/byomachine_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/byomachine_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/byomachine_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/byomachine_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/byomachinetemplate_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/byomachinetemplate_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/byomachinetemplate_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/byomachinetemplate_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/dockercluster_v1alpha2.json b/crds/infrastructure.cluster.x-k8s.io/dockercluster_v1alpha2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/dockercluster_v1alpha2.json rename to crds/infrastructure.cluster.x-k8s.io/dockercluster_v1alpha2.json diff --git a/infrastructure.cluster.x-k8s.io/dockercluster_v1alpha3.json b/crds/infrastructure.cluster.x-k8s.io/dockercluster_v1alpha3.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/dockercluster_v1alpha3.json rename to crds/infrastructure.cluster.x-k8s.io/dockercluster_v1alpha3.json diff --git a/infrastructure.cluster.x-k8s.io/dockercluster_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/dockercluster_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/dockercluster_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/dockercluster_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/dockercluster_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/dockercluster_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/dockercluster_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/dockercluster_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/dockerclustertemplate_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/dockerclustertemplate_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/dockerclustertemplate_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/dockerclustertemplate_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/dockerclustertemplate_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/dockerclustertemplate_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/dockerclustertemplate_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/dockerclustertemplate_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/dockermachine_v1alpha2.json b/crds/infrastructure.cluster.x-k8s.io/dockermachine_v1alpha2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/dockermachine_v1alpha2.json rename to crds/infrastructure.cluster.x-k8s.io/dockermachine_v1alpha2.json diff --git a/infrastructure.cluster.x-k8s.io/dockermachine_v1alpha3.json b/crds/infrastructure.cluster.x-k8s.io/dockermachine_v1alpha3.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/dockermachine_v1alpha3.json rename to crds/infrastructure.cluster.x-k8s.io/dockermachine_v1alpha3.json diff --git a/infrastructure.cluster.x-k8s.io/dockermachine_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/dockermachine_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/dockermachine_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/dockermachine_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/dockermachine_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/dockermachine_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/dockermachine_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/dockermachine_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/dockermachinepool_v1alpha3.json b/crds/infrastructure.cluster.x-k8s.io/dockermachinepool_v1alpha3.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/dockermachinepool_v1alpha3.json rename to crds/infrastructure.cluster.x-k8s.io/dockermachinepool_v1alpha3.json diff --git a/infrastructure.cluster.x-k8s.io/dockermachinepool_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/dockermachinepool_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/dockermachinepool_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/dockermachinepool_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/dockermachinepool_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/dockermachinepool_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/dockermachinepool_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/dockermachinepool_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/dockermachinetemplate_v1alpha2.json b/crds/infrastructure.cluster.x-k8s.io/dockermachinetemplate_v1alpha2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/dockermachinetemplate_v1alpha2.json rename to crds/infrastructure.cluster.x-k8s.io/dockermachinetemplate_v1alpha2.json diff --git a/infrastructure.cluster.x-k8s.io/dockermachinetemplate_v1alpha3.json b/crds/infrastructure.cluster.x-k8s.io/dockermachinetemplate_v1alpha3.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/dockermachinetemplate_v1alpha3.json rename to crds/infrastructure.cluster.x-k8s.io/dockermachinetemplate_v1alpha3.json diff --git a/infrastructure.cluster.x-k8s.io/dockermachinetemplate_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/dockermachinetemplate_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/dockermachinetemplate_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/dockermachinetemplate_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/dockermachinetemplate_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/dockermachinetemplate_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/dockermachinetemplate_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/dockermachinetemplate_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/gcpcluster_v1alpha2.json b/crds/infrastructure.cluster.x-k8s.io/gcpcluster_v1alpha2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/gcpcluster_v1alpha2.json rename to crds/infrastructure.cluster.x-k8s.io/gcpcluster_v1alpha2.json diff --git a/infrastructure.cluster.x-k8s.io/gcpcluster_v1alpha3.json b/crds/infrastructure.cluster.x-k8s.io/gcpcluster_v1alpha3.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/gcpcluster_v1alpha3.json rename to crds/infrastructure.cluster.x-k8s.io/gcpcluster_v1alpha3.json diff --git a/infrastructure.cluster.x-k8s.io/gcpcluster_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/gcpcluster_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/gcpcluster_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/gcpcluster_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/gcpcluster_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/gcpcluster_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/gcpcluster_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/gcpcluster_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/gcpclustertemplate_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/gcpclustertemplate_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/gcpclustertemplate_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/gcpclustertemplate_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/gcpclustertemplate_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/gcpclustertemplate_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/gcpclustertemplate_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/gcpclustertemplate_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/gcpmachine_v1alpha2.json b/crds/infrastructure.cluster.x-k8s.io/gcpmachine_v1alpha2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/gcpmachine_v1alpha2.json rename to crds/infrastructure.cluster.x-k8s.io/gcpmachine_v1alpha2.json diff --git a/infrastructure.cluster.x-k8s.io/gcpmachine_v1alpha3.json b/crds/infrastructure.cluster.x-k8s.io/gcpmachine_v1alpha3.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/gcpmachine_v1alpha3.json rename to crds/infrastructure.cluster.x-k8s.io/gcpmachine_v1alpha3.json diff --git a/infrastructure.cluster.x-k8s.io/gcpmachine_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/gcpmachine_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/gcpmachine_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/gcpmachine_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/gcpmachine_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/gcpmachine_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/gcpmachine_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/gcpmachine_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/gcpmachinetemplate_v1alpha2.json b/crds/infrastructure.cluster.x-k8s.io/gcpmachinetemplate_v1alpha2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/gcpmachinetemplate_v1alpha2.json rename to crds/infrastructure.cluster.x-k8s.io/gcpmachinetemplate_v1alpha2.json diff --git a/infrastructure.cluster.x-k8s.io/gcpmachinetemplate_v1alpha3.json b/crds/infrastructure.cluster.x-k8s.io/gcpmachinetemplate_v1alpha3.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/gcpmachinetemplate_v1alpha3.json rename to crds/infrastructure.cluster.x-k8s.io/gcpmachinetemplate_v1alpha3.json diff --git a/infrastructure.cluster.x-k8s.io/gcpmachinetemplate_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/gcpmachinetemplate_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/gcpmachinetemplate_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/gcpmachinetemplate_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/gcpmachinetemplate_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/gcpmachinetemplate_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/gcpmachinetemplate_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/gcpmachinetemplate_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/gcpmanagedcluster_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/gcpmanagedcluster_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/gcpmanagedcluster_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/gcpmanagedcluster_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/gcpmanagedcontrolplane_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/gcpmanagedcontrolplane_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/gcpmanagedcontrolplane_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/gcpmanagedcontrolplane_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/gcpmanagedmachinepool_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/gcpmanagedmachinepool_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/gcpmanagedmachinepool_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/gcpmanagedmachinepool_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/k8sinstallerconfig_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/k8sinstallerconfig_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/k8sinstallerconfig_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/k8sinstallerconfig_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/k8sinstallerconfigtemplate_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/k8sinstallerconfigtemplate_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/k8sinstallerconfigtemplate_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/k8sinstallerconfigtemplate_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/nestedcluster_v1alpha4.json b/crds/infrastructure.cluster.x-k8s.io/nestedcluster_v1alpha4.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/nestedcluster_v1alpha4.json rename to crds/infrastructure.cluster.x-k8s.io/nestedcluster_v1alpha4.json diff --git a/infrastructure.cluster.x-k8s.io/ocicluster_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/ocicluster_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ocicluster_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/ocicluster_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/ocicluster_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/ocicluster_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ocicluster_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/ocicluster_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/ociclusteridentity_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/ociclusteridentity_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ociclusteridentity_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/ociclusteridentity_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/ociclusteridentity_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/ociclusteridentity_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ociclusteridentity_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/ociclusteridentity_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/ociclustertemplate_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/ociclustertemplate_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ociclustertemplate_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/ociclustertemplate_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/ociclustertemplate_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/ociclustertemplate_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ociclustertemplate_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/ociclustertemplate_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/ocimachine_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/ocimachine_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ocimachine_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/ocimachine_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/ocimachine_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/ocimachine_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ocimachine_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/ocimachine_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/ocimachinepool_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/ocimachinepool_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ocimachinepool_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/ocimachinepool_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/ocimachinepool_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/ocimachinepool_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ocimachinepool_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/ocimachinepool_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/ocimachinepoolmachine_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/ocimachinepoolmachine_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ocimachinepoolmachine_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/ocimachinepoolmachine_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/ocimachinepoolmachine_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/ocimachinepoolmachine_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ocimachinepoolmachine_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/ocimachinepoolmachine_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/ocimachinetemplate_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/ocimachinetemplate_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ocimachinetemplate_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/ocimachinetemplate_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/ocimachinetemplate_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/ocimachinetemplate_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ocimachinetemplate_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/ocimachinetemplate_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/ocimanagedcluster_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/ocimanagedcluster_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ocimanagedcluster_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/ocimanagedcluster_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/ocimanagedcluster_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/ocimanagedcluster_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ocimanagedcluster_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/ocimanagedcluster_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/ocimanagedclustertemplate_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/ocimanagedclustertemplate_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ocimanagedclustertemplate_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/ocimanagedclustertemplate_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/ocimanagedclustertemplate_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/ocimanagedclustertemplate_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ocimanagedclustertemplate_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/ocimanagedclustertemplate_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/ocimanagedcontrolplane_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/ocimanagedcontrolplane_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ocimanagedcontrolplane_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/ocimanagedcontrolplane_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/ocimanagedcontrolplane_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/ocimanagedcontrolplane_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ocimanagedcontrolplane_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/ocimanagedcontrolplane_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/ocimanagedcontrolplanetemplate_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/ocimanagedcontrolplanetemplate_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ocimanagedcontrolplanetemplate_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/ocimanagedcontrolplanetemplate_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/ocimanagedcontrolplanetemplate_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/ocimanagedcontrolplanetemplate_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ocimanagedcontrolplanetemplate_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/ocimanagedcontrolplanetemplate_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/ocimanagedmachinepool_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/ocimanagedmachinepool_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ocimanagedmachinepool_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/ocimanagedmachinepool_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/ocimanagedmachinepool_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/ocimanagedmachinepool_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ocimanagedmachinepool_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/ocimanagedmachinepool_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/ocimanagedmachinepooltemplate_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/ocimanagedmachinepooltemplate_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ocimanagedmachinepooltemplate_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/ocimanagedmachinepooltemplate_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/ocimanagedmachinepooltemplate_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/ocimanagedmachinepooltemplate_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ocimanagedmachinepooltemplate_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/ocimanagedmachinepooltemplate_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/ocivirtualmachinepool_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/ocivirtualmachinepool_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ocivirtualmachinepool_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/ocivirtualmachinepool_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/ocivirtualmachinepool_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/ocivirtualmachinepool_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/ocivirtualmachinepool_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/ocivirtualmachinepool_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/rosacluster_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/rosacluster_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/rosacluster_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/rosacluster_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/rosamachinepool_v1beta2.json b/crds/infrastructure.cluster.x-k8s.io/rosamachinepool_v1beta2.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/rosamachinepool_v1beta2.json rename to crds/infrastructure.cluster.x-k8s.io/rosamachinepool_v1beta2.json diff --git a/infrastructure.cluster.x-k8s.io/tinkerbellcluster_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/tinkerbellcluster_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/tinkerbellcluster_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/tinkerbellcluster_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/tinkerbellmachine_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/tinkerbellmachine_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/tinkerbellmachine_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/tinkerbellmachine_v1beta1.json diff --git a/infrastructure.cluster.x-k8s.io/tinkerbellmachinetemplate_v1beta1.json b/crds/infrastructure.cluster.x-k8s.io/tinkerbellmachinetemplate_v1beta1.json similarity index 100% rename from infrastructure.cluster.x-k8s.io/tinkerbellmachinetemplate_v1beta1.json rename to crds/infrastructure.cluster.x-k8s.io/tinkerbellmachinetemplate_v1beta1.json diff --git a/ingress.oraclecloud.com/ingressclassparameters_v1beta1.json b/crds/ingress.oraclecloud.com/ingressclassparameters_v1beta1.json similarity index 100% rename from ingress.oraclecloud.com/ingressclassparameters_v1beta1.json rename to crds/ingress.oraclecloud.com/ingressclassparameters_v1beta1.json diff --git a/ipam.cluster.x-k8s.io/ipaddress_v1alpha1.json b/crds/ipam.cluster.x-k8s.io/ipaddress_v1alpha1.json similarity index 100% rename from ipam.cluster.x-k8s.io/ipaddress_v1alpha1.json rename to crds/ipam.cluster.x-k8s.io/ipaddress_v1alpha1.json diff --git a/ipam.cluster.x-k8s.io/ipaddressclaim_v1alpha1.json b/crds/ipam.cluster.x-k8s.io/ipaddressclaim_v1alpha1.json similarity index 100% rename from ipam.cluster.x-k8s.io/ipaddressclaim_v1alpha1.json rename to crds/ipam.cluster.x-k8s.io/ipaddressclaim_v1alpha1.json diff --git a/isindir.github.com/sopssecret_v1alpha1.json b/crds/isindir.github.com/sopssecret_v1alpha1.json similarity index 100% rename from isindir.github.com/sopssecret_v1alpha1.json rename to crds/isindir.github.com/sopssecret_v1alpha1.json diff --git a/isindir.github.com/sopssecret_v1alpha2.json b/crds/isindir.github.com/sopssecret_v1alpha2.json similarity index 100% rename from isindir.github.com/sopssecret_v1alpha2.json rename to crds/isindir.github.com/sopssecret_v1alpha2.json diff --git a/isindir.github.com/sopssecret_v1alpha3.json b/crds/isindir.github.com/sopssecret_v1alpha3.json similarity index 100% rename from isindir.github.com/sopssecret_v1alpha3.json rename to crds/isindir.github.com/sopssecret_v1alpha3.json diff --git a/jaegertracing.io/jaeger_v1.json b/crds/jaegertracing.io/jaeger_v1.json similarity index 100% rename from jaegertracing.io/jaeger_v1.json rename to crds/jaegertracing.io/jaeger_v1.json diff --git a/jetstream.nats.io/account_v1beta2.json b/crds/jetstream.nats.io/account_v1beta2.json similarity index 100% rename from jetstream.nats.io/account_v1beta2.json rename to crds/jetstream.nats.io/account_v1beta2.json diff --git a/jetstream.nats.io/consumer_v1beta1.json b/crds/jetstream.nats.io/consumer_v1beta1.json similarity index 100% rename from jetstream.nats.io/consumer_v1beta1.json rename to crds/jetstream.nats.io/consumer_v1beta1.json diff --git a/jetstream.nats.io/consumer_v1beta2.json b/crds/jetstream.nats.io/consumer_v1beta2.json similarity index 100% rename from jetstream.nats.io/consumer_v1beta2.json rename to crds/jetstream.nats.io/consumer_v1beta2.json diff --git a/jetstream.nats.io/stream_v1beta1.json b/crds/jetstream.nats.io/stream_v1beta1.json similarity index 100% rename from jetstream.nats.io/stream_v1beta1.json rename to crds/jetstream.nats.io/stream_v1beta1.json diff --git a/jetstream.nats.io/stream_v1beta2.json b/crds/jetstream.nats.io/stream_v1beta2.json similarity index 100% rename from jetstream.nats.io/stream_v1beta2.json rename to crds/jetstream.nats.io/stream_v1beta2.json diff --git a/jetstream.nats.io/streamtemplate_v1beta1.json b/crds/jetstream.nats.io/streamtemplate_v1beta1.json similarity index 100% rename from jetstream.nats.io/streamtemplate_v1beta1.json rename to crds/jetstream.nats.io/streamtemplate_v1beta1.json diff --git a/job.min.io/miniojob_v1alpha1.json b/crds/job.min.io/miniojob_v1alpha1.json similarity index 100% rename from job.min.io/miniojob_v1alpha1.json rename to crds/job.min.io/miniojob_v1alpha1.json diff --git a/k6.io/k6_v1alpha1.json b/crds/k6.io/k6_v1alpha1.json similarity index 100% rename from k6.io/k6_v1alpha1.json rename to crds/k6.io/k6_v1alpha1.json diff --git a/k6.io/testrun_v1alpha1.json b/crds/k6.io/testrun_v1alpha1.json similarity index 100% rename from k6.io/testrun_v1alpha1.json rename to crds/k6.io/testrun_v1alpha1.json diff --git a/k8s.cni.cncf.io/networkattachmentdefinition_v1.json b/crds/k8s.cni.cncf.io/networkattachmentdefinition_v1.json similarity index 100% rename from k8s.cni.cncf.io/networkattachmentdefinition_v1.json rename to crds/k8s.cni.cncf.io/networkattachmentdefinition_v1.json diff --git a/k8s.keycloak.org/keycloak_v2alpha1.json b/crds/k8s.keycloak.org/keycloak_v2alpha1.json similarity index 100% rename from k8s.keycloak.org/keycloak_v2alpha1.json rename to crds/k8s.keycloak.org/keycloak_v2alpha1.json diff --git a/k8s.keycloak.org/keycloakrealmimport_v2alpha1.json b/crds/k8s.keycloak.org/keycloakrealmimport_v2alpha1.json similarity index 100% rename from k8s.keycloak.org/keycloakrealmimport_v2alpha1.json rename to crds/k8s.keycloak.org/keycloakrealmimport_v2alpha1.json diff --git a/k8s.mariadb.com/backup_v1alpha1.json b/crds/k8s.mariadb.com/backup_v1alpha1.json similarity index 100% rename from k8s.mariadb.com/backup_v1alpha1.json rename to crds/k8s.mariadb.com/backup_v1alpha1.json diff --git a/k8s.mariadb.com/connection_v1alpha1.json b/crds/k8s.mariadb.com/connection_v1alpha1.json similarity index 100% rename from k8s.mariadb.com/connection_v1alpha1.json rename to crds/k8s.mariadb.com/connection_v1alpha1.json diff --git a/k8s.mariadb.com/database_v1alpha1.json b/crds/k8s.mariadb.com/database_v1alpha1.json similarity index 100% rename from k8s.mariadb.com/database_v1alpha1.json rename to crds/k8s.mariadb.com/database_v1alpha1.json diff --git a/k8s.mariadb.com/grant_v1alpha1.json b/crds/k8s.mariadb.com/grant_v1alpha1.json similarity index 100% rename from k8s.mariadb.com/grant_v1alpha1.json rename to crds/k8s.mariadb.com/grant_v1alpha1.json diff --git a/k8s.mariadb.com/mariadb_v1alpha1.json b/crds/k8s.mariadb.com/mariadb_v1alpha1.json similarity index 100% rename from k8s.mariadb.com/mariadb_v1alpha1.json rename to crds/k8s.mariadb.com/mariadb_v1alpha1.json diff --git a/k8s.mariadb.com/maxscale_v1alpha1.json b/crds/k8s.mariadb.com/maxscale_v1alpha1.json similarity index 100% rename from k8s.mariadb.com/maxscale_v1alpha1.json rename to crds/k8s.mariadb.com/maxscale_v1alpha1.json diff --git a/k8s.mariadb.com/restore_v1alpha1.json b/crds/k8s.mariadb.com/restore_v1alpha1.json similarity index 100% rename from k8s.mariadb.com/restore_v1alpha1.json rename to crds/k8s.mariadb.com/restore_v1alpha1.json diff --git a/k8s.mariadb.com/sqljob_v1alpha1.json b/crds/k8s.mariadb.com/sqljob_v1alpha1.json similarity index 100% rename from k8s.mariadb.com/sqljob_v1alpha1.json rename to crds/k8s.mariadb.com/sqljob_v1alpha1.json diff --git a/k8s.mariadb.com/user_v1alpha1.json b/crds/k8s.mariadb.com/user_v1alpha1.json similarity index 100% rename from k8s.mariadb.com/user_v1alpha1.json rename to crds/k8s.mariadb.com/user_v1alpha1.json diff --git a/k8s.nginx.org/globalconfiguration_v1.json b/crds/k8s.nginx.org/globalconfiguration_v1.json similarity index 100% rename from k8s.nginx.org/globalconfiguration_v1.json rename to crds/k8s.nginx.org/globalconfiguration_v1.json diff --git a/k8s.nginx.org/globalconfiguration_v1alpha1.json b/crds/k8s.nginx.org/globalconfiguration_v1alpha1.json similarity index 100% rename from k8s.nginx.org/globalconfiguration_v1alpha1.json rename to crds/k8s.nginx.org/globalconfiguration_v1alpha1.json diff --git a/k8s.nginx.org/policy_v1.json b/crds/k8s.nginx.org/policy_v1.json similarity index 100% rename from k8s.nginx.org/policy_v1.json rename to crds/k8s.nginx.org/policy_v1.json diff --git a/k8s.nginx.org/policy_v1alpha1.json b/crds/k8s.nginx.org/policy_v1alpha1.json similarity index 100% rename from k8s.nginx.org/policy_v1alpha1.json rename to crds/k8s.nginx.org/policy_v1alpha1.json diff --git a/k8s.nginx.org/transportserver_v1.json b/crds/k8s.nginx.org/transportserver_v1.json similarity index 100% rename from k8s.nginx.org/transportserver_v1.json rename to crds/k8s.nginx.org/transportserver_v1.json diff --git a/k8s.nginx.org/transportserver_v1alpha1.json b/crds/k8s.nginx.org/transportserver_v1alpha1.json similarity index 100% rename from k8s.nginx.org/transportserver_v1alpha1.json rename to crds/k8s.nginx.org/transportserver_v1alpha1.json diff --git a/k8s.nginx.org/virtualserver_v1.json b/crds/k8s.nginx.org/virtualserver_v1.json similarity index 100% rename from k8s.nginx.org/virtualserver_v1.json rename to crds/k8s.nginx.org/virtualserver_v1.json diff --git a/k8s.nginx.org/virtualserverroute_v1.json b/crds/k8s.nginx.org/virtualserverroute_v1.json similarity index 100% rename from k8s.nginx.org/virtualserverroute_v1.json rename to crds/k8s.nginx.org/virtualserverroute_v1.json diff --git a/k8up.io/archive_v1.json b/crds/k8up.io/archive_v1.json similarity index 100% rename from k8up.io/archive_v1.json rename to crds/k8up.io/archive_v1.json diff --git a/k8up.io/backup_v1.json b/crds/k8up.io/backup_v1.json similarity index 100% rename from k8up.io/backup_v1.json rename to crds/k8up.io/backup_v1.json diff --git a/k8up.io/check_v1.json b/crds/k8up.io/check_v1.json similarity index 100% rename from k8up.io/check_v1.json rename to crds/k8up.io/check_v1.json diff --git a/k8up.io/podconfig_v1.json b/crds/k8up.io/podconfig_v1.json similarity index 100% rename from k8up.io/podconfig_v1.json rename to crds/k8up.io/podconfig_v1.json diff --git a/k8up.io/prebackuppod_v1.json b/crds/k8up.io/prebackuppod_v1.json similarity index 100% rename from k8up.io/prebackuppod_v1.json rename to crds/k8up.io/prebackuppod_v1.json diff --git a/k8up.io/prune_v1.json b/crds/k8up.io/prune_v1.json similarity index 100% rename from k8up.io/prune_v1.json rename to crds/k8up.io/prune_v1.json diff --git a/k8up.io/restore_v1.json b/crds/k8up.io/restore_v1.json similarity index 100% rename from k8up.io/restore_v1.json rename to crds/k8up.io/restore_v1.json diff --git a/k8up.io/schedule_v1.json b/crds/k8up.io/schedule_v1.json similarity index 100% rename from k8up.io/schedule_v1.json rename to crds/k8up.io/schedule_v1.json diff --git a/k8up.io/snapshot_v1.json b/crds/k8up.io/snapshot_v1.json similarity index 100% rename from k8up.io/snapshot_v1.json rename to crds/k8up.io/snapshot_v1.json diff --git a/kafka.services.k8s.aws/cluster_v1alpha1.json b/crds/kafka.services.k8s.aws/cluster_v1alpha1.json similarity index 100% rename from kafka.services.k8s.aws/cluster_v1alpha1.json rename to crds/kafka.services.k8s.aws/cluster_v1alpha1.json diff --git a/kafka.strimzi.io/kafka_v1beta2.json b/crds/kafka.strimzi.io/kafka_v1beta2.json similarity index 100% rename from kafka.strimzi.io/kafka_v1beta2.json rename to crds/kafka.strimzi.io/kafka_v1beta2.json diff --git a/kafka.strimzi.io/kafkabridge_v1beta2.json b/crds/kafka.strimzi.io/kafkabridge_v1beta2.json similarity index 100% rename from kafka.strimzi.io/kafkabridge_v1beta2.json rename to crds/kafka.strimzi.io/kafkabridge_v1beta2.json diff --git a/kafka.strimzi.io/kafkaconnect_v1beta2.json b/crds/kafka.strimzi.io/kafkaconnect_v1beta2.json similarity index 100% rename from kafka.strimzi.io/kafkaconnect_v1beta2.json rename to crds/kafka.strimzi.io/kafkaconnect_v1beta2.json diff --git a/kafka.strimzi.io/kafkaconnector_v1beta2.json b/crds/kafka.strimzi.io/kafkaconnector_v1beta2.json similarity index 100% rename from kafka.strimzi.io/kafkaconnector_v1beta2.json rename to crds/kafka.strimzi.io/kafkaconnector_v1beta2.json diff --git a/kafka.strimzi.io/kafkamirrormaker2_v1beta2.json b/crds/kafka.strimzi.io/kafkamirrormaker2_v1beta2.json similarity index 100% rename from kafka.strimzi.io/kafkamirrormaker2_v1beta2.json rename to crds/kafka.strimzi.io/kafkamirrormaker2_v1beta2.json diff --git a/kafka.strimzi.io/kafkamirrormaker_v1beta2.json b/crds/kafka.strimzi.io/kafkamirrormaker_v1beta2.json similarity index 100% rename from kafka.strimzi.io/kafkamirrormaker_v1beta2.json rename to crds/kafka.strimzi.io/kafkamirrormaker_v1beta2.json diff --git a/kafka.strimzi.io/kafkanodepool_v1beta2.json b/crds/kafka.strimzi.io/kafkanodepool_v1beta2.json similarity index 100% rename from kafka.strimzi.io/kafkanodepool_v1beta2.json rename to crds/kafka.strimzi.io/kafkanodepool_v1beta2.json diff --git a/kafka.strimzi.io/kafkarebalance_v1beta2.json b/crds/kafka.strimzi.io/kafkarebalance_v1beta2.json similarity index 100% rename from kafka.strimzi.io/kafkarebalance_v1beta2.json rename to crds/kafka.strimzi.io/kafkarebalance_v1beta2.json diff --git a/kafka.strimzi.io/kafkatopic_v1alpha1.json b/crds/kafka.strimzi.io/kafkatopic_v1alpha1.json similarity index 100% rename from kafka.strimzi.io/kafkatopic_v1alpha1.json rename to crds/kafka.strimzi.io/kafkatopic_v1alpha1.json diff --git a/kafka.strimzi.io/kafkatopic_v1beta1.json b/crds/kafka.strimzi.io/kafkatopic_v1beta1.json similarity index 100% rename from kafka.strimzi.io/kafkatopic_v1beta1.json rename to crds/kafka.strimzi.io/kafkatopic_v1beta1.json diff --git a/kafka.strimzi.io/kafkatopic_v1beta2.json b/crds/kafka.strimzi.io/kafkatopic_v1beta2.json similarity index 100% rename from kafka.strimzi.io/kafkatopic_v1beta2.json rename to crds/kafka.strimzi.io/kafkatopic_v1beta2.json diff --git a/kafka.strimzi.io/kafkatopiccontrolacls_v1alpha1.json b/crds/kafka.strimzi.io/kafkatopiccontrolacls_v1alpha1.json similarity index 100% rename from kafka.strimzi.io/kafkatopiccontrolacls_v1alpha1.json rename to crds/kafka.strimzi.io/kafkatopiccontrolacls_v1alpha1.json diff --git a/kafka.strimzi.io/kafkatopiccontrolacls_v1beta1.json b/crds/kafka.strimzi.io/kafkatopiccontrolacls_v1beta1.json similarity index 100% rename from kafka.strimzi.io/kafkatopiccontrolacls_v1beta1.json rename to crds/kafka.strimzi.io/kafkatopiccontrolacls_v1beta1.json diff --git a/kafka.strimzi.io/kafkauser_v1alpha1.json b/crds/kafka.strimzi.io/kafkauser_v1alpha1.json similarity index 100% rename from kafka.strimzi.io/kafkauser_v1alpha1.json rename to crds/kafka.strimzi.io/kafkauser_v1alpha1.json diff --git a/kafka.strimzi.io/kafkauser_v1beta1.json b/crds/kafka.strimzi.io/kafkauser_v1beta1.json similarity index 100% rename from kafka.strimzi.io/kafkauser_v1beta1.json rename to crds/kafka.strimzi.io/kafkauser_v1beta1.json diff --git a/kafka.strimzi.io/kafkauser_v1beta2.json b/crds/kafka.strimzi.io/kafkauser_v1beta2.json similarity index 100% rename from kafka.strimzi.io/kafkauser_v1beta2.json rename to crds/kafka.strimzi.io/kafkauser_v1beta2.json diff --git a/kafka.strimzi.io/strimzipodset_v1beta2.json b/crds/kafka.strimzi.io/strimzipodset_v1beta2.json similarity index 100% rename from kafka.strimzi.io/strimzipodset_v1beta2.json rename to crds/kafka.strimzi.io/strimzipodset_v1beta2.json diff --git a/karpenter.k8s.aws/awsnodetemplate_v1alpha1.json b/crds/karpenter.k8s.aws/awsnodetemplate_v1alpha1.json similarity index 100% rename from karpenter.k8s.aws/awsnodetemplate_v1alpha1.json rename to crds/karpenter.k8s.aws/awsnodetemplate_v1alpha1.json diff --git a/karpenter.k8s.aws/ec2nodeclass_v1.json b/crds/karpenter.k8s.aws/ec2nodeclass_v1.json similarity index 100% rename from karpenter.k8s.aws/ec2nodeclass_v1.json rename to crds/karpenter.k8s.aws/ec2nodeclass_v1.json diff --git a/karpenter.k8s.aws/ec2nodeclass_v1beta1.json b/crds/karpenter.k8s.aws/ec2nodeclass_v1beta1.json similarity index 100% rename from karpenter.k8s.aws/ec2nodeclass_v1beta1.json rename to crds/karpenter.k8s.aws/ec2nodeclass_v1beta1.json diff --git a/karpenter.sh/machine_v1alpha5.json b/crds/karpenter.sh/machine_v1alpha5.json similarity index 100% rename from karpenter.sh/machine_v1alpha5.json rename to crds/karpenter.sh/machine_v1alpha5.json diff --git a/karpenter.sh/nodeclaim_v1.json b/crds/karpenter.sh/nodeclaim_v1.json similarity index 100% rename from karpenter.sh/nodeclaim_v1.json rename to crds/karpenter.sh/nodeclaim_v1.json diff --git a/karpenter.sh/nodeclaim_v1beta1.json b/crds/karpenter.sh/nodeclaim_v1beta1.json similarity index 100% rename from karpenter.sh/nodeclaim_v1beta1.json rename to crds/karpenter.sh/nodeclaim_v1beta1.json diff --git a/karpenter.sh/nodepool_v1.json b/crds/karpenter.sh/nodepool_v1.json similarity index 100% rename from karpenter.sh/nodepool_v1.json rename to crds/karpenter.sh/nodepool_v1.json diff --git a/karpenter.sh/nodepool_v1beta1.json b/crds/karpenter.sh/nodepool_v1beta1.json similarity index 100% rename from karpenter.sh/nodepool_v1beta1.json rename to crds/karpenter.sh/nodepool_v1beta1.json diff --git a/karpenter.sh/provisioner_v1alpha5.json b/crds/karpenter.sh/provisioner_v1alpha5.json similarity index 100% rename from karpenter.sh/provisioner_v1alpha5.json rename to crds/karpenter.sh/provisioner_v1alpha5.json diff --git a/keda.sh/cloudeventsource_v1alpha1.json b/crds/keda.sh/cloudeventsource_v1alpha1.json similarity index 100% rename from keda.sh/cloudeventsource_v1alpha1.json rename to crds/keda.sh/cloudeventsource_v1alpha1.json diff --git a/keda.sh/clustertriggerauthentication_v1alpha1.json b/crds/keda.sh/clustertriggerauthentication_v1alpha1.json similarity index 100% rename from keda.sh/clustertriggerauthentication_v1alpha1.json rename to crds/keda.sh/clustertriggerauthentication_v1alpha1.json diff --git a/keda.sh/scaledjob_v1alpha1.json b/crds/keda.sh/scaledjob_v1alpha1.json similarity index 100% rename from keda.sh/scaledjob_v1alpha1.json rename to crds/keda.sh/scaledjob_v1alpha1.json diff --git a/keda.sh/scaledobject_v1alpha1.json b/crds/keda.sh/scaledobject_v1alpha1.json similarity index 100% rename from keda.sh/scaledobject_v1alpha1.json rename to crds/keda.sh/scaledobject_v1alpha1.json diff --git a/keda.sh/triggerauthentication_v1alpha1.json b/crds/keda.sh/triggerauthentication_v1alpha1.json similarity index 100% rename from keda.sh/triggerauthentication_v1alpha1.json rename to crds/keda.sh/triggerauthentication_v1alpha1.json diff --git a/kibana.k8s.elastic.co/kibana_v1.json b/crds/kibana.k8s.elastic.co/kibana_v1.json similarity index 100% rename from kibana.k8s.elastic.co/kibana_v1.json rename to crds/kibana.k8s.elastic.co/kibana_v1.json diff --git a/kibana.k8s.elastic.co/kibana_v1alpha1.json b/crds/kibana.k8s.elastic.co/kibana_v1alpha1.json similarity index 100% rename from kibana.k8s.elastic.co/kibana_v1alpha1.json rename to crds/kibana.k8s.elastic.co/kibana_v1alpha1.json diff --git a/kibana.k8s.elastic.co/kibana_v1beta1.json b/crds/kibana.k8s.elastic.co/kibana_v1beta1.json similarity index 100% rename from kibana.k8s.elastic.co/kibana_v1beta1.json rename to crds/kibana.k8s.elastic.co/kibana_v1beta1.json diff --git a/kinesis.services.k8s.aws/stream_v1alpha1.json b/crds/kinesis.services.k8s.aws/stream_v1alpha1.json similarity index 100% rename from kinesis.services.k8s.aws/stream_v1alpha1.json rename to crds/kinesis.services.k8s.aws/stream_v1alpha1.json diff --git a/kms.cnrm.cloud.google.com/kmsautokeyconfig_v1alpha1.json b/crds/kms.cnrm.cloud.google.com/kmsautokeyconfig_v1alpha1.json similarity index 100% rename from kms.cnrm.cloud.google.com/kmsautokeyconfig_v1alpha1.json rename to crds/kms.cnrm.cloud.google.com/kmsautokeyconfig_v1alpha1.json diff --git a/kms.cnrm.cloud.google.com/kmscryptokey_v1beta1.json b/crds/kms.cnrm.cloud.google.com/kmscryptokey_v1beta1.json similarity index 100% rename from kms.cnrm.cloud.google.com/kmscryptokey_v1beta1.json rename to crds/kms.cnrm.cloud.google.com/kmscryptokey_v1beta1.json diff --git a/kms.cnrm.cloud.google.com/kmscryptokeyversion_v1alpha1.json b/crds/kms.cnrm.cloud.google.com/kmscryptokeyversion_v1alpha1.json similarity index 100% rename from kms.cnrm.cloud.google.com/kmscryptokeyversion_v1alpha1.json rename to crds/kms.cnrm.cloud.google.com/kmscryptokeyversion_v1alpha1.json diff --git a/kms.cnrm.cloud.google.com/kmskeyhandle_v1alpha1.json b/crds/kms.cnrm.cloud.google.com/kmskeyhandle_v1alpha1.json similarity index 100% rename from kms.cnrm.cloud.google.com/kmskeyhandle_v1alpha1.json rename to crds/kms.cnrm.cloud.google.com/kmskeyhandle_v1alpha1.json diff --git a/kms.cnrm.cloud.google.com/kmskeyring_v1beta1.json b/crds/kms.cnrm.cloud.google.com/kmskeyring_v1beta1.json similarity index 100% rename from kms.cnrm.cloud.google.com/kmskeyring_v1beta1.json rename to crds/kms.cnrm.cloud.google.com/kmskeyring_v1beta1.json diff --git a/kms.cnrm.cloud.google.com/kmskeyringimportjob_v1alpha1.json b/crds/kms.cnrm.cloud.google.com/kmskeyringimportjob_v1alpha1.json similarity index 100% rename from kms.cnrm.cloud.google.com/kmskeyringimportjob_v1alpha1.json rename to crds/kms.cnrm.cloud.google.com/kmskeyringimportjob_v1alpha1.json diff --git a/kms.cnrm.cloud.google.com/kmssecretciphertext_v1alpha1.json b/crds/kms.cnrm.cloud.google.com/kmssecretciphertext_v1alpha1.json similarity index 100% rename from kms.cnrm.cloud.google.com/kmssecretciphertext_v1alpha1.json rename to crds/kms.cnrm.cloud.google.com/kmssecretciphertext_v1alpha1.json diff --git a/kms.services.k8s.aws/alias_v1alpha1.json b/crds/kms.services.k8s.aws/alias_v1alpha1.json similarity index 100% rename from kms.services.k8s.aws/alias_v1alpha1.json rename to crds/kms.services.k8s.aws/alias_v1alpha1.json diff --git a/kms.services.k8s.aws/grant_v1alpha1.json b/crds/kms.services.k8s.aws/grant_v1alpha1.json similarity index 100% rename from kms.services.k8s.aws/grant_v1alpha1.json rename to crds/kms.services.k8s.aws/grant_v1alpha1.json diff --git a/kms.services.k8s.aws/key_v1alpha1.json b/crds/kms.services.k8s.aws/key_v1alpha1.json similarity index 100% rename from kms.services.k8s.aws/key_v1alpha1.json rename to crds/kms.services.k8s.aws/key_v1alpha1.json diff --git a/kubeflow.org/notebook_v1.json b/crds/kubeflow.org/notebook_v1.json similarity index 100% rename from kubeflow.org/notebook_v1.json rename to crds/kubeflow.org/notebook_v1.json diff --git a/kubeflow.org/notebook_v1alpha1.json b/crds/kubeflow.org/notebook_v1alpha1.json similarity index 100% rename from kubeflow.org/notebook_v1alpha1.json rename to crds/kubeflow.org/notebook_v1alpha1.json diff --git a/kubeflow.org/notebook_v1beta1.json b/crds/kubeflow.org/notebook_v1beta1.json similarity index 100% rename from kubeflow.org/notebook_v1beta1.json rename to crds/kubeflow.org/notebook_v1beta1.json diff --git a/kubeflow.org/poddefault_v1alpha1.json b/crds/kubeflow.org/poddefault_v1alpha1.json similarity index 100% rename from kubeflow.org/poddefault_v1alpha1.json rename to crds/kubeflow.org/poddefault_v1alpha1.json diff --git a/kubeflow.org/profile_v1.json b/crds/kubeflow.org/profile_v1.json similarity index 100% rename from kubeflow.org/profile_v1.json rename to crds/kubeflow.org/profile_v1.json diff --git a/kubeflow.org/profile_v1beta1.json b/crds/kubeflow.org/profile_v1beta1.json similarity index 100% rename from kubeflow.org/profile_v1beta1.json rename to crds/kubeflow.org/profile_v1beta1.json diff --git a/kueue.x-k8s.io/admissioncheck_v1beta1.json b/crds/kueue.x-k8s.io/admissioncheck_v1beta1.json similarity index 100% rename from kueue.x-k8s.io/admissioncheck_v1beta1.json rename to crds/kueue.x-k8s.io/admissioncheck_v1beta1.json diff --git a/kueue.x-k8s.io/clusterqueue_v1beta1.json b/crds/kueue.x-k8s.io/clusterqueue_v1beta1.json similarity index 100% rename from kueue.x-k8s.io/clusterqueue_v1beta1.json rename to crds/kueue.x-k8s.io/clusterqueue_v1beta1.json diff --git a/kueue.x-k8s.io/cohort_v1alpha1.json b/crds/kueue.x-k8s.io/cohort_v1alpha1.json similarity index 100% rename from kueue.x-k8s.io/cohort_v1alpha1.json rename to crds/kueue.x-k8s.io/cohort_v1alpha1.json diff --git a/kueue.x-k8s.io/localqueue_v1beta1.json b/crds/kueue.x-k8s.io/localqueue_v1beta1.json similarity index 100% rename from kueue.x-k8s.io/localqueue_v1beta1.json rename to crds/kueue.x-k8s.io/localqueue_v1beta1.json diff --git a/kueue.x-k8s.io/multikueuecluster_v1beta1.json b/crds/kueue.x-k8s.io/multikueuecluster_v1beta1.json similarity index 100% rename from kueue.x-k8s.io/multikueuecluster_v1beta1.json rename to crds/kueue.x-k8s.io/multikueuecluster_v1beta1.json diff --git a/kueue.x-k8s.io/multikueueconfig_v1beta1.json b/crds/kueue.x-k8s.io/multikueueconfig_v1beta1.json similarity index 100% rename from kueue.x-k8s.io/multikueueconfig_v1beta1.json rename to crds/kueue.x-k8s.io/multikueueconfig_v1beta1.json diff --git a/kueue.x-k8s.io/provisioningrequestconfig_v1beta1.json b/crds/kueue.x-k8s.io/provisioningrequestconfig_v1beta1.json similarity index 100% rename from kueue.x-k8s.io/provisioningrequestconfig_v1beta1.json rename to crds/kueue.x-k8s.io/provisioningrequestconfig_v1beta1.json diff --git a/kueue.x-k8s.io/resourceflavor_v1beta1.json b/crds/kueue.x-k8s.io/resourceflavor_v1beta1.json similarity index 100% rename from kueue.x-k8s.io/resourceflavor_v1beta1.json rename to crds/kueue.x-k8s.io/resourceflavor_v1beta1.json diff --git a/kueue.x-k8s.io/topology_v1alpha1.json b/crds/kueue.x-k8s.io/topology_v1alpha1.json similarity index 100% rename from kueue.x-k8s.io/topology_v1alpha1.json rename to crds/kueue.x-k8s.io/topology_v1alpha1.json diff --git a/kueue.x-k8s.io/workload_v1beta1.json b/crds/kueue.x-k8s.io/workload_v1beta1.json similarity index 100% rename from kueue.x-k8s.io/workload_v1beta1.json rename to crds/kueue.x-k8s.io/workload_v1beta1.json diff --git a/kueue.x-k8s.io/workloadpriorityclass_v1beta1.json b/crds/kueue.x-k8s.io/workloadpriorityclass_v1beta1.json similarity index 100% rename from kueue.x-k8s.io/workloadpriorityclass_v1beta1.json rename to crds/kueue.x-k8s.io/workloadpriorityclass_v1beta1.json diff --git a/kustomize.toolkit.fluxcd.io/kustomization_v1.json b/crds/kustomize.toolkit.fluxcd.io/kustomization_v1.json similarity index 100% rename from kustomize.toolkit.fluxcd.io/kustomization_v1.json rename to crds/kustomize.toolkit.fluxcd.io/kustomization_v1.json diff --git a/kustomize.toolkit.fluxcd.io/kustomization_v1beta1.json b/crds/kustomize.toolkit.fluxcd.io/kustomization_v1beta1.json similarity index 100% rename from kustomize.toolkit.fluxcd.io/kustomization_v1beta1.json rename to crds/kustomize.toolkit.fluxcd.io/kustomization_v1beta1.json diff --git a/kustomize.toolkit.fluxcd.io/kustomization_v1beta2.json b/crds/kustomize.toolkit.fluxcd.io/kustomization_v1beta2.json similarity index 100% rename from kustomize.toolkit.fluxcd.io/kustomization_v1beta2.json rename to crds/kustomize.toolkit.fluxcd.io/kustomization_v1beta2.json diff --git a/kyverno.io/admissionreport_v1alpha2.json b/crds/kyverno.io/admissionreport_v1alpha2.json similarity index 100% rename from kyverno.io/admissionreport_v1alpha2.json rename to crds/kyverno.io/admissionreport_v1alpha2.json diff --git a/kyverno.io/admissionreport_v2.json b/crds/kyverno.io/admissionreport_v2.json similarity index 100% rename from kyverno.io/admissionreport_v2.json rename to crds/kyverno.io/admissionreport_v2.json diff --git a/kyverno.io/backgroundscanreport_v1alpha2.json b/crds/kyverno.io/backgroundscanreport_v1alpha2.json similarity index 100% rename from kyverno.io/backgroundscanreport_v1alpha2.json rename to crds/kyverno.io/backgroundscanreport_v1alpha2.json diff --git a/kyverno.io/backgroundscanreport_v2.json b/crds/kyverno.io/backgroundscanreport_v2.json similarity index 100% rename from kyverno.io/backgroundscanreport_v2.json rename to crds/kyverno.io/backgroundscanreport_v2.json diff --git a/kyverno.io/cleanuppolicy_v2.json b/crds/kyverno.io/cleanuppolicy_v2.json similarity index 100% rename from kyverno.io/cleanuppolicy_v2.json rename to crds/kyverno.io/cleanuppolicy_v2.json diff --git a/kyverno.io/cleanuppolicy_v2alpha1.json b/crds/kyverno.io/cleanuppolicy_v2alpha1.json similarity index 100% rename from kyverno.io/cleanuppolicy_v2alpha1.json rename to crds/kyverno.io/cleanuppolicy_v2alpha1.json diff --git a/kyverno.io/cleanuppolicy_v2beta1.json b/crds/kyverno.io/cleanuppolicy_v2beta1.json similarity index 100% rename from kyverno.io/cleanuppolicy_v2beta1.json rename to crds/kyverno.io/cleanuppolicy_v2beta1.json diff --git a/kyverno.io/clusteradmissionreport_v1alpha2.json b/crds/kyverno.io/clusteradmissionreport_v1alpha2.json similarity index 100% rename from kyverno.io/clusteradmissionreport_v1alpha2.json rename to crds/kyverno.io/clusteradmissionreport_v1alpha2.json diff --git a/kyverno.io/clusteradmissionreport_v2.json b/crds/kyverno.io/clusteradmissionreport_v2.json similarity index 100% rename from kyverno.io/clusteradmissionreport_v2.json rename to crds/kyverno.io/clusteradmissionreport_v2.json diff --git a/kyverno.io/clusterbackgroundscanreport_v1alpha2.json b/crds/kyverno.io/clusterbackgroundscanreport_v1alpha2.json similarity index 100% rename from kyverno.io/clusterbackgroundscanreport_v1alpha2.json rename to crds/kyverno.io/clusterbackgroundscanreport_v1alpha2.json diff --git a/kyverno.io/clusterbackgroundscanreport_v2.json b/crds/kyverno.io/clusterbackgroundscanreport_v2.json similarity index 100% rename from kyverno.io/clusterbackgroundscanreport_v2.json rename to crds/kyverno.io/clusterbackgroundscanreport_v2.json diff --git a/kyverno.io/clustercleanuppolicy_v2.json b/crds/kyverno.io/clustercleanuppolicy_v2.json similarity index 100% rename from kyverno.io/clustercleanuppolicy_v2.json rename to crds/kyverno.io/clustercleanuppolicy_v2.json diff --git a/kyverno.io/clustercleanuppolicy_v2alpha1.json b/crds/kyverno.io/clustercleanuppolicy_v2alpha1.json similarity index 100% rename from kyverno.io/clustercleanuppolicy_v2alpha1.json rename to crds/kyverno.io/clustercleanuppolicy_v2alpha1.json diff --git a/kyverno.io/clustercleanuppolicy_v2beta1.json b/crds/kyverno.io/clustercleanuppolicy_v2beta1.json similarity index 100% rename from kyverno.io/clustercleanuppolicy_v2beta1.json rename to crds/kyverno.io/clustercleanuppolicy_v2beta1.json diff --git a/kyverno.io/clusterephemeralreport_v1.json b/crds/kyverno.io/clusterephemeralreport_v1.json similarity index 100% rename from kyverno.io/clusterephemeralreport_v1.json rename to crds/kyverno.io/clusterephemeralreport_v1.json diff --git a/kyverno.io/clusterpolicy_v1.json b/crds/kyverno.io/clusterpolicy_v1.json similarity index 100% rename from kyverno.io/clusterpolicy_v1.json rename to crds/kyverno.io/clusterpolicy_v1.json diff --git a/kyverno.io/clusterpolicy_v2beta1.json b/crds/kyverno.io/clusterpolicy_v2beta1.json similarity index 100% rename from kyverno.io/clusterpolicy_v2beta1.json rename to crds/kyverno.io/clusterpolicy_v2beta1.json diff --git a/kyverno.io/clusterpolicyreport_v1alpha2.json b/crds/kyverno.io/clusterpolicyreport_v1alpha2.json similarity index 100% rename from kyverno.io/clusterpolicyreport_v1alpha2.json rename to crds/kyverno.io/clusterpolicyreport_v1alpha2.json diff --git a/kyverno.io/clusterreportchangerequest_v1alpha2.json b/crds/kyverno.io/clusterreportchangerequest_v1alpha2.json similarity index 100% rename from kyverno.io/clusterreportchangerequest_v1alpha2.json rename to crds/kyverno.io/clusterreportchangerequest_v1alpha2.json diff --git a/kyverno.io/ephemeralreport_v1.json b/crds/kyverno.io/ephemeralreport_v1.json similarity index 100% rename from kyverno.io/ephemeralreport_v1.json rename to crds/kyverno.io/ephemeralreport_v1.json diff --git a/kyverno.io/generaterequest_v1.json b/crds/kyverno.io/generaterequest_v1.json similarity index 100% rename from kyverno.io/generaterequest_v1.json rename to crds/kyverno.io/generaterequest_v1.json diff --git a/kyverno.io/globalcontextentry_v2alpha1.json b/crds/kyverno.io/globalcontextentry_v2alpha1.json similarity index 100% rename from kyverno.io/globalcontextentry_v2alpha1.json rename to crds/kyverno.io/globalcontextentry_v2alpha1.json diff --git a/kyverno.io/policy_v1.json b/crds/kyverno.io/policy_v1.json similarity index 100% rename from kyverno.io/policy_v1.json rename to crds/kyverno.io/policy_v1.json diff --git a/kyverno.io/policy_v2beta1.json b/crds/kyverno.io/policy_v2beta1.json similarity index 100% rename from kyverno.io/policy_v2beta1.json rename to crds/kyverno.io/policy_v2beta1.json diff --git a/kyverno.io/policyexception_v2.json b/crds/kyverno.io/policyexception_v2.json similarity index 100% rename from kyverno.io/policyexception_v2.json rename to crds/kyverno.io/policyexception_v2.json diff --git a/kyverno.io/policyexception_v2alpha1.json b/crds/kyverno.io/policyexception_v2alpha1.json similarity index 100% rename from kyverno.io/policyexception_v2alpha1.json rename to crds/kyverno.io/policyexception_v2alpha1.json diff --git a/kyverno.io/policyexception_v2beta1.json b/crds/kyverno.io/policyexception_v2beta1.json similarity index 100% rename from kyverno.io/policyexception_v2beta1.json rename to crds/kyverno.io/policyexception_v2beta1.json diff --git a/kyverno.io/policyreport_v1alpha2.json b/crds/kyverno.io/policyreport_v1alpha2.json similarity index 100% rename from kyverno.io/policyreport_v1alpha2.json rename to crds/kyverno.io/policyreport_v1alpha2.json diff --git a/kyverno.io/reportchangerequest_v1alpha2.json b/crds/kyverno.io/reportchangerequest_v1alpha2.json similarity index 100% rename from kyverno.io/reportchangerequest_v1alpha2.json rename to crds/kyverno.io/reportchangerequest_v1alpha2.json diff --git a/kyverno.io/updaterequest_v1beta1.json b/crds/kyverno.io/updaterequest_v1beta1.json similarity index 100% rename from kyverno.io/updaterequest_v1beta1.json rename to crds/kyverno.io/updaterequest_v1beta1.json diff --git a/kyverno.io/updaterequest_v2.json b/crds/kyverno.io/updaterequest_v2.json similarity index 100% rename from kyverno.io/updaterequest_v2.json rename to crds/kyverno.io/updaterequest_v2.json diff --git a/lambda.services.k8s.aws/alias_v1alpha1.json b/crds/lambda.services.k8s.aws/alias_v1alpha1.json similarity index 100% rename from lambda.services.k8s.aws/alias_v1alpha1.json rename to crds/lambda.services.k8s.aws/alias_v1alpha1.json diff --git a/lambda.services.k8s.aws/codesigningconfig_v1alpha1.json b/crds/lambda.services.k8s.aws/codesigningconfig_v1alpha1.json similarity index 100% rename from lambda.services.k8s.aws/codesigningconfig_v1alpha1.json rename to crds/lambda.services.k8s.aws/codesigningconfig_v1alpha1.json diff --git a/lambda.services.k8s.aws/eventsourcemapping_v1alpha1.json b/crds/lambda.services.k8s.aws/eventsourcemapping_v1alpha1.json similarity index 100% rename from lambda.services.k8s.aws/eventsourcemapping_v1alpha1.json rename to crds/lambda.services.k8s.aws/eventsourcemapping_v1alpha1.json diff --git a/lambda.services.k8s.aws/function_v1alpha1.json b/crds/lambda.services.k8s.aws/function_v1alpha1.json similarity index 100% rename from lambda.services.k8s.aws/function_v1alpha1.json rename to crds/lambda.services.k8s.aws/function_v1alpha1.json diff --git a/lambda.services.k8s.aws/functionurlconfig_v1alpha1.json b/crds/lambda.services.k8s.aws/functionurlconfig_v1alpha1.json similarity index 100% rename from lambda.services.k8s.aws/functionurlconfig_v1alpha1.json rename to crds/lambda.services.k8s.aws/functionurlconfig_v1alpha1.json diff --git a/lambda.services.k8s.aws/layerversion_v1alpha1.json b/crds/lambda.services.k8s.aws/layerversion_v1alpha1.json similarity index 100% rename from lambda.services.k8s.aws/layerversion_v1alpha1.json rename to crds/lambda.services.k8s.aws/layerversion_v1alpha1.json diff --git a/linkerd.io/serviceprofile_v1alpha1.json b/crds/linkerd.io/serviceprofile_v1alpha1.json similarity index 100% rename from linkerd.io/serviceprofile_v1alpha1.json rename to crds/linkerd.io/serviceprofile_v1alpha1.json diff --git a/linkerd.io/serviceprofile_v1alpha2.json b/crds/linkerd.io/serviceprofile_v1alpha2.json similarity index 100% rename from linkerd.io/serviceprofile_v1alpha2.json rename to crds/linkerd.io/serviceprofile_v1alpha2.json diff --git a/logging-extensions.banzaicloud.io/eventtailer_v1alpha1.json b/crds/logging-extensions.banzaicloud.io/eventtailer_v1alpha1.json similarity index 100% rename from logging-extensions.banzaicloud.io/eventtailer_v1alpha1.json rename to crds/logging-extensions.banzaicloud.io/eventtailer_v1alpha1.json diff --git a/logging-extensions.banzaicloud.io/hosttailer_v1alpha1.json b/crds/logging-extensions.banzaicloud.io/hosttailer_v1alpha1.json similarity index 100% rename from logging-extensions.banzaicloud.io/hosttailer_v1alpha1.json rename to crds/logging-extensions.banzaicloud.io/hosttailer_v1alpha1.json diff --git a/logging.banzaicloud.io/clusterflow_v1alpha1.json b/crds/logging.banzaicloud.io/clusterflow_v1alpha1.json similarity index 100% rename from logging.banzaicloud.io/clusterflow_v1alpha1.json rename to crds/logging.banzaicloud.io/clusterflow_v1alpha1.json diff --git a/logging.banzaicloud.io/clusterflow_v1beta1.json b/crds/logging.banzaicloud.io/clusterflow_v1beta1.json similarity index 100% rename from logging.banzaicloud.io/clusterflow_v1beta1.json rename to crds/logging.banzaicloud.io/clusterflow_v1beta1.json diff --git a/logging.banzaicloud.io/clusteroutput_v1alpha1.json b/crds/logging.banzaicloud.io/clusteroutput_v1alpha1.json similarity index 100% rename from logging.banzaicloud.io/clusteroutput_v1alpha1.json rename to crds/logging.banzaicloud.io/clusteroutput_v1alpha1.json diff --git a/logging.banzaicloud.io/clusteroutput_v1beta1.json b/crds/logging.banzaicloud.io/clusteroutput_v1beta1.json similarity index 100% rename from logging.banzaicloud.io/clusteroutput_v1beta1.json rename to crds/logging.banzaicloud.io/clusteroutput_v1beta1.json diff --git a/logging.banzaicloud.io/flow_v1alpha1.json b/crds/logging.banzaicloud.io/flow_v1alpha1.json similarity index 100% rename from logging.banzaicloud.io/flow_v1alpha1.json rename to crds/logging.banzaicloud.io/flow_v1alpha1.json diff --git a/logging.banzaicloud.io/flow_v1beta1.json b/crds/logging.banzaicloud.io/flow_v1beta1.json similarity index 100% rename from logging.banzaicloud.io/flow_v1beta1.json rename to crds/logging.banzaicloud.io/flow_v1beta1.json diff --git a/logging.banzaicloud.io/fluentbitagent_v1beta1.json b/crds/logging.banzaicloud.io/fluentbitagent_v1beta1.json similarity index 100% rename from logging.banzaicloud.io/fluentbitagent_v1beta1.json rename to crds/logging.banzaicloud.io/fluentbitagent_v1beta1.json diff --git a/logging.banzaicloud.io/fluentdconfig_v1beta1.json b/crds/logging.banzaicloud.io/fluentdconfig_v1beta1.json similarity index 100% rename from logging.banzaicloud.io/fluentdconfig_v1beta1.json rename to crds/logging.banzaicloud.io/fluentdconfig_v1beta1.json diff --git a/logging.banzaicloud.io/logging_v1alpha1.json b/crds/logging.banzaicloud.io/logging_v1alpha1.json similarity index 100% rename from logging.banzaicloud.io/logging_v1alpha1.json rename to crds/logging.banzaicloud.io/logging_v1alpha1.json diff --git a/logging.banzaicloud.io/logging_v1beta1.json b/crds/logging.banzaicloud.io/logging_v1beta1.json similarity index 100% rename from logging.banzaicloud.io/logging_v1beta1.json rename to crds/logging.banzaicloud.io/logging_v1beta1.json diff --git a/logging.banzaicloud.io/loggingroute_v1beta1.json b/crds/logging.banzaicloud.io/loggingroute_v1beta1.json similarity index 100% rename from logging.banzaicloud.io/loggingroute_v1beta1.json rename to crds/logging.banzaicloud.io/loggingroute_v1beta1.json diff --git a/logging.banzaicloud.io/nodeagent_v1beta1.json b/crds/logging.banzaicloud.io/nodeagent_v1beta1.json similarity index 100% rename from logging.banzaicloud.io/nodeagent_v1beta1.json rename to crds/logging.banzaicloud.io/nodeagent_v1beta1.json diff --git a/logging.banzaicloud.io/output_v1alpha1.json b/crds/logging.banzaicloud.io/output_v1alpha1.json similarity index 100% rename from logging.banzaicloud.io/output_v1alpha1.json rename to crds/logging.banzaicloud.io/output_v1alpha1.json diff --git a/logging.banzaicloud.io/output_v1beta1.json b/crds/logging.banzaicloud.io/output_v1beta1.json similarity index 100% rename from logging.banzaicloud.io/output_v1beta1.json rename to crds/logging.banzaicloud.io/output_v1beta1.json diff --git a/logging.banzaicloud.io/syslogngclusterflow_v1beta1.json b/crds/logging.banzaicloud.io/syslogngclusterflow_v1beta1.json similarity index 100% rename from logging.banzaicloud.io/syslogngclusterflow_v1beta1.json rename to crds/logging.banzaicloud.io/syslogngclusterflow_v1beta1.json diff --git a/logging.banzaicloud.io/syslogngclusteroutput_v1beta1.json b/crds/logging.banzaicloud.io/syslogngclusteroutput_v1beta1.json similarity index 100% rename from logging.banzaicloud.io/syslogngclusteroutput_v1beta1.json rename to crds/logging.banzaicloud.io/syslogngclusteroutput_v1beta1.json diff --git a/logging.banzaicloud.io/syslogngconfig_v1beta1.json b/crds/logging.banzaicloud.io/syslogngconfig_v1beta1.json similarity index 100% rename from logging.banzaicloud.io/syslogngconfig_v1beta1.json rename to crds/logging.banzaicloud.io/syslogngconfig_v1beta1.json diff --git a/logging.banzaicloud.io/syslogngflow_v1beta1.json b/crds/logging.banzaicloud.io/syslogngflow_v1beta1.json similarity index 100% rename from logging.banzaicloud.io/syslogngflow_v1beta1.json rename to crds/logging.banzaicloud.io/syslogngflow_v1beta1.json diff --git a/logging.banzaicloud.io/syslogngoutput_v1beta1.json b/crds/logging.banzaicloud.io/syslogngoutput_v1beta1.json similarity index 100% rename from logging.banzaicloud.io/syslogngoutput_v1beta1.json rename to crds/logging.banzaicloud.io/syslogngoutput_v1beta1.json diff --git a/logging.cnrm.cloud.google.com/logginglogbucket_v1beta1.json b/crds/logging.cnrm.cloud.google.com/logginglogbucket_v1beta1.json similarity index 100% rename from logging.cnrm.cloud.google.com/logginglogbucket_v1beta1.json rename to crds/logging.cnrm.cloud.google.com/logginglogbucket_v1beta1.json diff --git a/logging.cnrm.cloud.google.com/logginglogexclusion_v1beta1.json b/crds/logging.cnrm.cloud.google.com/logginglogexclusion_v1beta1.json similarity index 100% rename from logging.cnrm.cloud.google.com/logginglogexclusion_v1beta1.json rename to crds/logging.cnrm.cloud.google.com/logginglogexclusion_v1beta1.json diff --git a/logging.cnrm.cloud.google.com/logginglogmetric_v1beta1.json b/crds/logging.cnrm.cloud.google.com/logginglogmetric_v1beta1.json similarity index 100% rename from logging.cnrm.cloud.google.com/logginglogmetric_v1beta1.json rename to crds/logging.cnrm.cloud.google.com/logginglogmetric_v1beta1.json diff --git a/logging.cnrm.cloud.google.com/logginglogsink_v1beta1.json b/crds/logging.cnrm.cloud.google.com/logginglogsink_v1beta1.json similarity index 100% rename from logging.cnrm.cloud.google.com/logginglogsink_v1beta1.json rename to crds/logging.cnrm.cloud.google.com/logginglogsink_v1beta1.json diff --git a/logging.cnrm.cloud.google.com/logginglogview_v1beta1.json b/crds/logging.cnrm.cloud.google.com/logginglogview_v1beta1.json similarity index 100% rename from logging.cnrm.cloud.google.com/logginglogview_v1beta1.json rename to crds/logging.cnrm.cloud.google.com/logginglogview_v1beta1.json diff --git a/logging.openshift.io/clusterlogforwarder_v1.json b/crds/logging.openshift.io/clusterlogforwarder_v1.json similarity index 100% rename from logging.openshift.io/clusterlogforwarder_v1.json rename to crds/logging.openshift.io/clusterlogforwarder_v1.json diff --git a/logging.openshift.io/clusterlogging_v1.json b/crds/logging.openshift.io/clusterlogging_v1.json similarity index 100% rename from logging.openshift.io/clusterlogging_v1.json rename to crds/logging.openshift.io/clusterlogging_v1.json diff --git a/logstash.k8s.elastic.co/logstash_v1alpha1.json b/crds/logstash.k8s.elastic.co/logstash_v1alpha1.json similarity index 100% rename from logstash.k8s.elastic.co/logstash_v1alpha1.json rename to crds/logstash.k8s.elastic.co/logstash_v1alpha1.json diff --git a/longhorn.io/backingimage_v1beta1.json b/crds/longhorn.io/backingimage_v1beta1.json similarity index 100% rename from longhorn.io/backingimage_v1beta1.json rename to crds/longhorn.io/backingimage_v1beta1.json diff --git a/longhorn.io/backingimage_v1beta2.json b/crds/longhorn.io/backingimage_v1beta2.json similarity index 100% rename from longhorn.io/backingimage_v1beta2.json rename to crds/longhorn.io/backingimage_v1beta2.json diff --git a/longhorn.io/backingimagedatasource_v1beta1.json b/crds/longhorn.io/backingimagedatasource_v1beta1.json similarity index 100% rename from longhorn.io/backingimagedatasource_v1beta1.json rename to crds/longhorn.io/backingimagedatasource_v1beta1.json diff --git a/longhorn.io/backingimagedatasource_v1beta2.json b/crds/longhorn.io/backingimagedatasource_v1beta2.json similarity index 100% rename from longhorn.io/backingimagedatasource_v1beta2.json rename to crds/longhorn.io/backingimagedatasource_v1beta2.json diff --git a/longhorn.io/backingimagemanager_v1beta1.json b/crds/longhorn.io/backingimagemanager_v1beta1.json similarity index 100% rename from longhorn.io/backingimagemanager_v1beta1.json rename to crds/longhorn.io/backingimagemanager_v1beta1.json diff --git a/longhorn.io/backingimagemanager_v1beta2.json b/crds/longhorn.io/backingimagemanager_v1beta2.json similarity index 100% rename from longhorn.io/backingimagemanager_v1beta2.json rename to crds/longhorn.io/backingimagemanager_v1beta2.json diff --git a/longhorn.io/backupbackingimage_v1beta2.json b/crds/longhorn.io/backupbackingimage_v1beta2.json similarity index 100% rename from longhorn.io/backupbackingimage_v1beta2.json rename to crds/longhorn.io/backupbackingimage_v1beta2.json diff --git a/longhorn.io/backuptarget_v1beta1.json b/crds/longhorn.io/backuptarget_v1beta1.json similarity index 100% rename from longhorn.io/backuptarget_v1beta1.json rename to crds/longhorn.io/backuptarget_v1beta1.json diff --git a/longhorn.io/backuptarget_v1beta2.json b/crds/longhorn.io/backuptarget_v1beta2.json similarity index 100% rename from longhorn.io/backuptarget_v1beta2.json rename to crds/longhorn.io/backuptarget_v1beta2.json diff --git a/longhorn.io/backupvolume_v1beta1.json b/crds/longhorn.io/backupvolume_v1beta1.json similarity index 100% rename from longhorn.io/backupvolume_v1beta1.json rename to crds/longhorn.io/backupvolume_v1beta1.json diff --git a/longhorn.io/backupvolume_v1beta2.json b/crds/longhorn.io/backupvolume_v1beta2.json similarity index 100% rename from longhorn.io/backupvolume_v1beta2.json rename to crds/longhorn.io/backupvolume_v1beta2.json diff --git a/longhorn.io/engine_v1beta1.json b/crds/longhorn.io/engine_v1beta1.json similarity index 100% rename from longhorn.io/engine_v1beta1.json rename to crds/longhorn.io/engine_v1beta1.json diff --git a/longhorn.io/engine_v1beta2.json b/crds/longhorn.io/engine_v1beta2.json similarity index 100% rename from longhorn.io/engine_v1beta2.json rename to crds/longhorn.io/engine_v1beta2.json diff --git a/longhorn.io/engineimage_v1beta1.json b/crds/longhorn.io/engineimage_v1beta1.json similarity index 100% rename from longhorn.io/engineimage_v1beta1.json rename to crds/longhorn.io/engineimage_v1beta1.json diff --git a/longhorn.io/engineimage_v1beta2.json b/crds/longhorn.io/engineimage_v1beta2.json similarity index 100% rename from longhorn.io/engineimage_v1beta2.json rename to crds/longhorn.io/engineimage_v1beta2.json diff --git a/longhorn.io/instancemanager_v1beta1.json b/crds/longhorn.io/instancemanager_v1beta1.json similarity index 100% rename from longhorn.io/instancemanager_v1beta1.json rename to crds/longhorn.io/instancemanager_v1beta1.json diff --git a/longhorn.io/instancemanager_v1beta2.json b/crds/longhorn.io/instancemanager_v1beta2.json similarity index 100% rename from longhorn.io/instancemanager_v1beta2.json rename to crds/longhorn.io/instancemanager_v1beta2.json diff --git a/longhorn.io/node_v1beta1.json b/crds/longhorn.io/node_v1beta1.json similarity index 100% rename from longhorn.io/node_v1beta1.json rename to crds/longhorn.io/node_v1beta1.json diff --git a/longhorn.io/node_v1beta2.json b/crds/longhorn.io/node_v1beta2.json similarity index 100% rename from longhorn.io/node_v1beta2.json rename to crds/longhorn.io/node_v1beta2.json diff --git a/longhorn.io/orphan_v1beta2.json b/crds/longhorn.io/orphan_v1beta2.json similarity index 100% rename from longhorn.io/orphan_v1beta2.json rename to crds/longhorn.io/orphan_v1beta2.json diff --git a/longhorn.io/recurringjob_v1beta1.json b/crds/longhorn.io/recurringjob_v1beta1.json similarity index 100% rename from longhorn.io/recurringjob_v1beta1.json rename to crds/longhorn.io/recurringjob_v1beta1.json diff --git a/longhorn.io/recurringjob_v1beta2.json b/crds/longhorn.io/recurringjob_v1beta2.json similarity index 100% rename from longhorn.io/recurringjob_v1beta2.json rename to crds/longhorn.io/recurringjob_v1beta2.json diff --git a/longhorn.io/replica_v1beta1.json b/crds/longhorn.io/replica_v1beta1.json similarity index 100% rename from longhorn.io/replica_v1beta1.json rename to crds/longhorn.io/replica_v1beta1.json diff --git a/longhorn.io/replica_v1beta2.json b/crds/longhorn.io/replica_v1beta2.json similarity index 100% rename from longhorn.io/replica_v1beta2.json rename to crds/longhorn.io/replica_v1beta2.json diff --git a/longhorn.io/setting_v1beta1.json b/crds/longhorn.io/setting_v1beta1.json similarity index 100% rename from longhorn.io/setting_v1beta1.json rename to crds/longhorn.io/setting_v1beta1.json diff --git a/longhorn.io/setting_v1beta2.json b/crds/longhorn.io/setting_v1beta2.json similarity index 100% rename from longhorn.io/setting_v1beta2.json rename to crds/longhorn.io/setting_v1beta2.json diff --git a/longhorn.io/sharemanager_v1beta1.json b/crds/longhorn.io/sharemanager_v1beta1.json similarity index 100% rename from longhorn.io/sharemanager_v1beta1.json rename to crds/longhorn.io/sharemanager_v1beta1.json diff --git a/longhorn.io/sharemanager_v1beta2.json b/crds/longhorn.io/sharemanager_v1beta2.json similarity index 100% rename from longhorn.io/sharemanager_v1beta2.json rename to crds/longhorn.io/sharemanager_v1beta2.json diff --git a/longhorn.io/snapshot_v1beta2.json b/crds/longhorn.io/snapshot_v1beta2.json similarity index 100% rename from longhorn.io/snapshot_v1beta2.json rename to crds/longhorn.io/snapshot_v1beta2.json diff --git a/longhorn.io/supportbundle_v1beta2.json b/crds/longhorn.io/supportbundle_v1beta2.json similarity index 100% rename from longhorn.io/supportbundle_v1beta2.json rename to crds/longhorn.io/supportbundle_v1beta2.json diff --git a/longhorn.io/systembackup_v1beta2.json b/crds/longhorn.io/systembackup_v1beta2.json similarity index 100% rename from longhorn.io/systembackup_v1beta2.json rename to crds/longhorn.io/systembackup_v1beta2.json diff --git a/longhorn.io/systemrestore_v1beta2.json b/crds/longhorn.io/systemrestore_v1beta2.json similarity index 100% rename from longhorn.io/systemrestore_v1beta2.json rename to crds/longhorn.io/systemrestore_v1beta2.json diff --git a/longhorn.io/volume_v1beta1.json b/crds/longhorn.io/volume_v1beta1.json similarity index 100% rename from longhorn.io/volume_v1beta1.json rename to crds/longhorn.io/volume_v1beta1.json diff --git a/longhorn.io/volume_v1beta2.json b/crds/longhorn.io/volume_v1beta2.json similarity index 100% rename from longhorn.io/volume_v1beta2.json rename to crds/longhorn.io/volume_v1beta2.json diff --git a/longhorn.io/volumeattachment_v1beta2.json b/crds/longhorn.io/volumeattachment_v1beta2.json similarity index 100% rename from longhorn.io/volumeattachment_v1beta2.json rename to crds/longhorn.io/volumeattachment_v1beta2.json diff --git a/maps.k8s.elastic.co/elasticmapsserver_v1alpha1.json b/crds/maps.k8s.elastic.co/elasticmapsserver_v1alpha1.json similarity index 100% rename from maps.k8s.elastic.co/elasticmapsserver_v1alpha1.json rename to crds/maps.k8s.elastic.co/elasticmapsserver_v1alpha1.json diff --git a/memcache.cnrm.cloud.google.com/memcacheinstance_v1beta1.json b/crds/memcache.cnrm.cloud.google.com/memcacheinstance_v1beta1.json similarity index 100% rename from memcache.cnrm.cloud.google.com/memcacheinstance_v1beta1.json rename to crds/memcache.cnrm.cloud.google.com/memcacheinstance_v1beta1.json diff --git a/memorydb.services.k8s.aws/acl_v1alpha1.json b/crds/memorydb.services.k8s.aws/acl_v1alpha1.json similarity index 100% rename from memorydb.services.k8s.aws/acl_v1alpha1.json rename to crds/memorydb.services.k8s.aws/acl_v1alpha1.json diff --git a/memorydb.services.k8s.aws/cluster_v1alpha1.json b/crds/memorydb.services.k8s.aws/cluster_v1alpha1.json similarity index 100% rename from memorydb.services.k8s.aws/cluster_v1alpha1.json rename to crds/memorydb.services.k8s.aws/cluster_v1alpha1.json diff --git a/memorydb.services.k8s.aws/parametergroup_v1alpha1.json b/crds/memorydb.services.k8s.aws/parametergroup_v1alpha1.json similarity index 100% rename from memorydb.services.k8s.aws/parametergroup_v1alpha1.json rename to crds/memorydb.services.k8s.aws/parametergroup_v1alpha1.json diff --git a/memorydb.services.k8s.aws/snapshot_v1alpha1.json b/crds/memorydb.services.k8s.aws/snapshot_v1alpha1.json similarity index 100% rename from memorydb.services.k8s.aws/snapshot_v1alpha1.json rename to crds/memorydb.services.k8s.aws/snapshot_v1alpha1.json diff --git a/memorydb.services.k8s.aws/subnetgroup_v1alpha1.json b/crds/memorydb.services.k8s.aws/subnetgroup_v1alpha1.json similarity index 100% rename from memorydb.services.k8s.aws/subnetgroup_v1alpha1.json rename to crds/memorydb.services.k8s.aws/subnetgroup_v1alpha1.json diff --git a/memorydb.services.k8s.aws/user_v1alpha1.json b/crds/memorydb.services.k8s.aws/user_v1alpha1.json similarity index 100% rename from memorydb.services.k8s.aws/user_v1alpha1.json rename to crds/memorydb.services.k8s.aws/user_v1alpha1.json diff --git a/metallb.io/addresspool_v1alpha1.json b/crds/metallb.io/addresspool_v1alpha1.json similarity index 100% rename from metallb.io/addresspool_v1alpha1.json rename to crds/metallb.io/addresspool_v1alpha1.json diff --git a/metallb.io/addresspool_v1beta1.json b/crds/metallb.io/addresspool_v1beta1.json similarity index 100% rename from metallb.io/addresspool_v1beta1.json rename to crds/metallb.io/addresspool_v1beta1.json diff --git a/metallb.io/bfdprofile_v1beta1.json b/crds/metallb.io/bfdprofile_v1beta1.json similarity index 100% rename from metallb.io/bfdprofile_v1beta1.json rename to crds/metallb.io/bfdprofile_v1beta1.json diff --git a/metallb.io/bgpadvertisement_v1beta1.json b/crds/metallb.io/bgpadvertisement_v1beta1.json similarity index 100% rename from metallb.io/bgpadvertisement_v1beta1.json rename to crds/metallb.io/bgpadvertisement_v1beta1.json diff --git a/metallb.io/bgppeer_v1beta1.json b/crds/metallb.io/bgppeer_v1beta1.json similarity index 100% rename from metallb.io/bgppeer_v1beta1.json rename to crds/metallb.io/bgppeer_v1beta1.json diff --git a/metallb.io/bgppeer_v1beta2.json b/crds/metallb.io/bgppeer_v1beta2.json similarity index 100% rename from metallb.io/bgppeer_v1beta2.json rename to crds/metallb.io/bgppeer_v1beta2.json diff --git a/metallb.io/community_v1beta1.json b/crds/metallb.io/community_v1beta1.json similarity index 100% rename from metallb.io/community_v1beta1.json rename to crds/metallb.io/community_v1beta1.json diff --git a/metallb.io/ipaddresspool_v1beta1.json b/crds/metallb.io/ipaddresspool_v1beta1.json similarity index 100% rename from metallb.io/ipaddresspool_v1beta1.json rename to crds/metallb.io/ipaddresspool_v1beta1.json diff --git a/metallb.io/l2advertisement_v1beta1.json b/crds/metallb.io/l2advertisement_v1beta1.json similarity index 100% rename from metallb.io/l2advertisement_v1beta1.json rename to crds/metallb.io/l2advertisement_v1beta1.json diff --git a/minio.min.io/tenant_v2.json b/crds/minio.min.io/tenant_v2.json similarity index 100% rename from minio.min.io/tenant_v2.json rename to crds/minio.min.io/tenant_v2.json diff --git a/mlengine.cnrm.cloud.google.com/mlenginemodel_v1alpha1.json b/crds/mlengine.cnrm.cloud.google.com/mlenginemodel_v1alpha1.json similarity index 100% rename from mlengine.cnrm.cloud.google.com/mlenginemodel_v1alpha1.json rename to crds/mlengine.cnrm.cloud.google.com/mlenginemodel_v1alpha1.json diff --git a/mongodbcommunity.mongodb.com/mongodbcommunity_v1.json b/crds/mongodbcommunity.mongodb.com/mongodbcommunity_v1.json similarity index 100% rename from mongodbcommunity.mongodb.com/mongodbcommunity_v1.json rename to crds/mongodbcommunity.mongodb.com/mongodbcommunity_v1.json diff --git a/monitoring.cnrm.cloud.google.com/monitoringalertpolicy_v1beta1.json b/crds/monitoring.cnrm.cloud.google.com/monitoringalertpolicy_v1beta1.json similarity index 100% rename from monitoring.cnrm.cloud.google.com/monitoringalertpolicy_v1beta1.json rename to crds/monitoring.cnrm.cloud.google.com/monitoringalertpolicy_v1beta1.json diff --git a/monitoring.cnrm.cloud.google.com/monitoringdashboard_v1beta1.json b/crds/monitoring.cnrm.cloud.google.com/monitoringdashboard_v1beta1.json similarity index 100% rename from monitoring.cnrm.cloud.google.com/monitoringdashboard_v1beta1.json rename to crds/monitoring.cnrm.cloud.google.com/monitoringdashboard_v1beta1.json diff --git a/monitoring.cnrm.cloud.google.com/monitoringgroup_v1beta1.json b/crds/monitoring.cnrm.cloud.google.com/monitoringgroup_v1beta1.json similarity index 100% rename from monitoring.cnrm.cloud.google.com/monitoringgroup_v1beta1.json rename to crds/monitoring.cnrm.cloud.google.com/monitoringgroup_v1beta1.json diff --git a/monitoring.cnrm.cloud.google.com/monitoringmetricdescriptor_v1beta1.json b/crds/monitoring.cnrm.cloud.google.com/monitoringmetricdescriptor_v1beta1.json similarity index 100% rename from monitoring.cnrm.cloud.google.com/monitoringmetricdescriptor_v1beta1.json rename to crds/monitoring.cnrm.cloud.google.com/monitoringmetricdescriptor_v1beta1.json diff --git a/monitoring.cnrm.cloud.google.com/monitoringmonitoredproject_v1beta1.json b/crds/monitoring.cnrm.cloud.google.com/monitoringmonitoredproject_v1beta1.json similarity index 100% rename from monitoring.cnrm.cloud.google.com/monitoringmonitoredproject_v1beta1.json rename to crds/monitoring.cnrm.cloud.google.com/monitoringmonitoredproject_v1beta1.json diff --git a/monitoring.cnrm.cloud.google.com/monitoringnotificationchannel_v1beta1.json b/crds/monitoring.cnrm.cloud.google.com/monitoringnotificationchannel_v1beta1.json similarity index 100% rename from monitoring.cnrm.cloud.google.com/monitoringnotificationchannel_v1beta1.json rename to crds/monitoring.cnrm.cloud.google.com/monitoringnotificationchannel_v1beta1.json diff --git a/monitoring.cnrm.cloud.google.com/monitoringservice_v1beta1.json b/crds/monitoring.cnrm.cloud.google.com/monitoringservice_v1beta1.json similarity index 100% rename from monitoring.cnrm.cloud.google.com/monitoringservice_v1beta1.json rename to crds/monitoring.cnrm.cloud.google.com/monitoringservice_v1beta1.json diff --git a/monitoring.cnrm.cloud.google.com/monitoringservicelevelobjective_v1beta1.json b/crds/monitoring.cnrm.cloud.google.com/monitoringservicelevelobjective_v1beta1.json similarity index 100% rename from monitoring.cnrm.cloud.google.com/monitoringservicelevelobjective_v1beta1.json rename to crds/monitoring.cnrm.cloud.google.com/monitoringservicelevelobjective_v1beta1.json diff --git a/monitoring.cnrm.cloud.google.com/monitoringuptimecheckconfig_v1beta1.json b/crds/monitoring.cnrm.cloud.google.com/monitoringuptimecheckconfig_v1beta1.json similarity index 100% rename from monitoring.cnrm.cloud.google.com/monitoringuptimecheckconfig_v1beta1.json rename to crds/monitoring.cnrm.cloud.google.com/monitoringuptimecheckconfig_v1beta1.json diff --git a/monitoring.coreos.com/alertmanager_v1.json b/crds/monitoring.coreos.com/alertmanager_v1.json similarity index 100% rename from monitoring.coreos.com/alertmanager_v1.json rename to crds/monitoring.coreos.com/alertmanager_v1.json diff --git a/monitoring.coreos.com/alertmanagerconfig_v1alpha1.json b/crds/monitoring.coreos.com/alertmanagerconfig_v1alpha1.json similarity index 100% rename from monitoring.coreos.com/alertmanagerconfig_v1alpha1.json rename to crds/monitoring.coreos.com/alertmanagerconfig_v1alpha1.json diff --git a/monitoring.coreos.com/podmonitor_v1.json b/crds/monitoring.coreos.com/podmonitor_v1.json similarity index 100% rename from monitoring.coreos.com/podmonitor_v1.json rename to crds/monitoring.coreos.com/podmonitor_v1.json diff --git a/monitoring.coreos.com/probe_v1.json b/crds/monitoring.coreos.com/probe_v1.json similarity index 100% rename from monitoring.coreos.com/probe_v1.json rename to crds/monitoring.coreos.com/probe_v1.json diff --git a/monitoring.coreos.com/prometheus_v1.json b/crds/monitoring.coreos.com/prometheus_v1.json similarity index 100% rename from monitoring.coreos.com/prometheus_v1.json rename to crds/monitoring.coreos.com/prometheus_v1.json diff --git a/monitoring.coreos.com/prometheusagent_v1alpha1.json b/crds/monitoring.coreos.com/prometheusagent_v1alpha1.json similarity index 100% rename from monitoring.coreos.com/prometheusagent_v1alpha1.json rename to crds/monitoring.coreos.com/prometheusagent_v1alpha1.json diff --git a/monitoring.coreos.com/prometheusrule_v1.json b/crds/monitoring.coreos.com/prometheusrule_v1.json similarity index 100% rename from monitoring.coreos.com/prometheusrule_v1.json rename to crds/monitoring.coreos.com/prometheusrule_v1.json diff --git a/monitoring.coreos.com/scrapeconfig_v1alpha1.json b/crds/monitoring.coreos.com/scrapeconfig_v1alpha1.json similarity index 100% rename from monitoring.coreos.com/scrapeconfig_v1alpha1.json rename to crds/monitoring.coreos.com/scrapeconfig_v1alpha1.json diff --git a/monitoring.coreos.com/servicemonitor_v1.json b/crds/monitoring.coreos.com/servicemonitor_v1.json similarity index 100% rename from monitoring.coreos.com/servicemonitor_v1.json rename to crds/monitoring.coreos.com/servicemonitor_v1.json diff --git a/monitoring.coreos.com/thanosruler_v1.json b/crds/monitoring.coreos.com/thanosruler_v1.json similarity index 100% rename from monitoring.coreos.com/thanosruler_v1.json rename to crds/monitoring.coreos.com/thanosruler_v1.json diff --git a/monitoring.grafana.com/grafanaagent_v1alpha1.json b/crds/monitoring.grafana.com/grafanaagent_v1alpha1.json similarity index 100% rename from monitoring.grafana.com/grafanaagent_v1alpha1.json rename to crds/monitoring.grafana.com/grafanaagent_v1alpha1.json diff --git a/monitoring.grafana.com/integration_v1alpha1.json b/crds/monitoring.grafana.com/integration_v1alpha1.json similarity index 100% rename from monitoring.grafana.com/integration_v1alpha1.json rename to crds/monitoring.grafana.com/integration_v1alpha1.json diff --git a/monitoring.grafana.com/logsinstance_v1alpha1.json b/crds/monitoring.grafana.com/logsinstance_v1alpha1.json similarity index 100% rename from monitoring.grafana.com/logsinstance_v1alpha1.json rename to crds/monitoring.grafana.com/logsinstance_v1alpha1.json diff --git a/monitoring.grafana.com/metricsinstance_v1alpha1.json b/crds/monitoring.grafana.com/metricsinstance_v1alpha1.json similarity index 100% rename from monitoring.grafana.com/metricsinstance_v1alpha1.json rename to crds/monitoring.grafana.com/metricsinstance_v1alpha1.json diff --git a/monitoring.grafana.com/podlogs_v1alpha1.json b/crds/monitoring.grafana.com/podlogs_v1alpha1.json similarity index 100% rename from monitoring.grafana.com/podlogs_v1alpha1.json rename to crds/monitoring.grafana.com/podlogs_v1alpha1.json diff --git a/mq.services.k8s.aws/broker_v1alpha1.json b/crds/mq.services.k8s.aws/broker_v1alpha1.json similarity index 100% rename from mq.services.k8s.aws/broker_v1alpha1.json rename to crds/mq.services.k8s.aws/broker_v1alpha1.json diff --git a/mutations.gatekeeper.sh/assign_v1.json b/crds/mutations.gatekeeper.sh/assign_v1.json similarity index 100% rename from mutations.gatekeeper.sh/assign_v1.json rename to crds/mutations.gatekeeper.sh/assign_v1.json diff --git a/mutations.gatekeeper.sh/assign_v1alpha1.json b/crds/mutations.gatekeeper.sh/assign_v1alpha1.json similarity index 100% rename from mutations.gatekeeper.sh/assign_v1alpha1.json rename to crds/mutations.gatekeeper.sh/assign_v1alpha1.json diff --git a/mutations.gatekeeper.sh/assign_v1beta1.json b/crds/mutations.gatekeeper.sh/assign_v1beta1.json similarity index 100% rename from mutations.gatekeeper.sh/assign_v1beta1.json rename to crds/mutations.gatekeeper.sh/assign_v1beta1.json diff --git a/mutations.gatekeeper.sh/assignimage_v1alpha1.json b/crds/mutations.gatekeeper.sh/assignimage_v1alpha1.json similarity index 100% rename from mutations.gatekeeper.sh/assignimage_v1alpha1.json rename to crds/mutations.gatekeeper.sh/assignimage_v1alpha1.json diff --git a/mutations.gatekeeper.sh/assignmetadata_v1.json b/crds/mutations.gatekeeper.sh/assignmetadata_v1.json similarity index 100% rename from mutations.gatekeeper.sh/assignmetadata_v1.json rename to crds/mutations.gatekeeper.sh/assignmetadata_v1.json diff --git a/mutations.gatekeeper.sh/assignmetadata_v1alpha1.json b/crds/mutations.gatekeeper.sh/assignmetadata_v1alpha1.json similarity index 100% rename from mutations.gatekeeper.sh/assignmetadata_v1alpha1.json rename to crds/mutations.gatekeeper.sh/assignmetadata_v1alpha1.json diff --git a/mutations.gatekeeper.sh/assignmetadata_v1beta1.json b/crds/mutations.gatekeeper.sh/assignmetadata_v1beta1.json similarity index 100% rename from mutations.gatekeeper.sh/assignmetadata_v1beta1.json rename to crds/mutations.gatekeeper.sh/assignmetadata_v1beta1.json diff --git a/mutations.gatekeeper.sh/modifyset_v1.json b/crds/mutations.gatekeeper.sh/modifyset_v1.json similarity index 100% rename from mutations.gatekeeper.sh/modifyset_v1.json rename to crds/mutations.gatekeeper.sh/modifyset_v1.json diff --git a/mutations.gatekeeper.sh/modifyset_v1alpha1.json b/crds/mutations.gatekeeper.sh/modifyset_v1alpha1.json similarity index 100% rename from mutations.gatekeeper.sh/modifyset_v1alpha1.json rename to crds/mutations.gatekeeper.sh/modifyset_v1alpha1.json diff --git a/mutations.gatekeeper.sh/modifyset_v1beta1.json b/crds/mutations.gatekeeper.sh/modifyset_v1beta1.json similarity index 100% rename from mutations.gatekeeper.sh/modifyset_v1beta1.json rename to crds/mutations.gatekeeper.sh/modifyset_v1beta1.json diff --git a/mysql.oracle.com/innodbcluster_v2.json b/crds/mysql.oracle.com/innodbcluster_v2.json similarity index 100% rename from mysql.oracle.com/innodbcluster_v2.json rename to crds/mysql.oracle.com/innodbcluster_v2.json diff --git a/mysql.oracle.com/mysqlbackup_v2.json b/crds/mysql.oracle.com/mysqlbackup_v2.json similarity index 100% rename from mysql.oracle.com/mysqlbackup_v2.json rename to crds/mysql.oracle.com/mysqlbackup_v2.json diff --git a/mysql.presslabs.org/mysqlbackup_v1alpha1.json b/crds/mysql.presslabs.org/mysqlbackup_v1alpha1.json similarity index 100% rename from mysql.presslabs.org/mysqlbackup_v1alpha1.json rename to crds/mysql.presslabs.org/mysqlbackup_v1alpha1.json diff --git a/mysql.presslabs.org/mysqlbackup_v2.json b/crds/mysql.presslabs.org/mysqlbackup_v2.json similarity index 100% rename from mysql.presslabs.org/mysqlbackup_v2.json rename to crds/mysql.presslabs.org/mysqlbackup_v2.json diff --git a/mysql.presslabs.org/mysqlcluster_v1alpha1.json b/crds/mysql.presslabs.org/mysqlcluster_v1alpha1.json similarity index 100% rename from mysql.presslabs.org/mysqlcluster_v1alpha1.json rename to crds/mysql.presslabs.org/mysqlcluster_v1alpha1.json diff --git a/mysql.presslabs.org/mysqldatabase_v1alpha1.json b/crds/mysql.presslabs.org/mysqldatabase_v1alpha1.json similarity index 100% rename from mysql.presslabs.org/mysqldatabase_v1alpha1.json rename to crds/mysql.presslabs.org/mysqldatabase_v1alpha1.json diff --git a/mysql.presslabs.org/mysqluser_v1alpha1.json b/crds/mysql.presslabs.org/mysqluser_v1alpha1.json similarity index 100% rename from mysql.presslabs.org/mysqluser_v1alpha1.json rename to crds/mysql.presslabs.org/mysqluser_v1alpha1.json diff --git a/networkconnectivity.cnrm.cloud.google.com/networkconnectivityhub_v1beta1.json b/crds/networkconnectivity.cnrm.cloud.google.com/networkconnectivityhub_v1beta1.json similarity index 100% rename from networkconnectivity.cnrm.cloud.google.com/networkconnectivityhub_v1beta1.json rename to crds/networkconnectivity.cnrm.cloud.google.com/networkconnectivityhub_v1beta1.json diff --git a/networkconnectivity.cnrm.cloud.google.com/networkconnectivityserviceconnectionpolicy_v1alpha1.json b/crds/networkconnectivity.cnrm.cloud.google.com/networkconnectivityserviceconnectionpolicy_v1alpha1.json similarity index 100% rename from networkconnectivity.cnrm.cloud.google.com/networkconnectivityserviceconnectionpolicy_v1alpha1.json rename to crds/networkconnectivity.cnrm.cloud.google.com/networkconnectivityserviceconnectionpolicy_v1alpha1.json diff --git a/networkconnectivity.cnrm.cloud.google.com/networkconnectivityspoke_v1beta1.json b/crds/networkconnectivity.cnrm.cloud.google.com/networkconnectivityspoke_v1beta1.json similarity index 100% rename from networkconnectivity.cnrm.cloud.google.com/networkconnectivityspoke_v1beta1.json rename to crds/networkconnectivity.cnrm.cloud.google.com/networkconnectivityspoke_v1beta1.json diff --git a/networkfirewall.services.k8s.aws/firewall_v1alpha1.json b/crds/networkfirewall.services.k8s.aws/firewall_v1alpha1.json similarity index 100% rename from networkfirewall.services.k8s.aws/firewall_v1alpha1.json rename to crds/networkfirewall.services.k8s.aws/firewall_v1alpha1.json diff --git a/networkfirewall.services.k8s.aws/firewallpolicy_v1alpha1.json b/crds/networkfirewall.services.k8s.aws/firewallpolicy_v1alpha1.json similarity index 100% rename from networkfirewall.services.k8s.aws/firewallpolicy_v1alpha1.json rename to crds/networkfirewall.services.k8s.aws/firewallpolicy_v1alpha1.json diff --git a/networkfirewall.services.k8s.aws/rulegroup_v1alpha1.json b/crds/networkfirewall.services.k8s.aws/rulegroup_v1alpha1.json similarity index 100% rename from networkfirewall.services.k8s.aws/rulegroup_v1alpha1.json rename to crds/networkfirewall.services.k8s.aws/rulegroup_v1alpha1.json diff --git a/networking.gke.io/frontendconfig_v1beta1.json b/crds/networking.gke.io/frontendconfig_v1beta1.json similarity index 100% rename from networking.gke.io/frontendconfig_v1beta1.json rename to crds/networking.gke.io/frontendconfig_v1beta1.json diff --git a/networking.gke.io/gcpbackendpolicy_v1.json b/crds/networking.gke.io/gcpbackendpolicy_v1.json similarity index 100% rename from networking.gke.io/gcpbackendpolicy_v1.json rename to crds/networking.gke.io/gcpbackendpolicy_v1.json diff --git a/networking.gke.io/gcpgatewaypolicy_v1.json b/crds/networking.gke.io/gcpgatewaypolicy_v1.json similarity index 100% rename from networking.gke.io/gcpgatewaypolicy_v1.json rename to crds/networking.gke.io/gcpgatewaypolicy_v1.json diff --git a/networking.gke.io/gkenetworkparamset_v1.json b/crds/networking.gke.io/gkenetworkparamset_v1.json similarity index 100% rename from networking.gke.io/gkenetworkparamset_v1.json rename to crds/networking.gke.io/gkenetworkparamset_v1.json diff --git a/networking.gke.io/healthcheckpolicy_v1.json b/crds/networking.gke.io/healthcheckpolicy_v1.json similarity index 100% rename from networking.gke.io/healthcheckpolicy_v1.json rename to crds/networking.gke.io/healthcheckpolicy_v1.json diff --git a/networking.gke.io/lbpolicy_v1.json b/crds/networking.gke.io/lbpolicy_v1.json similarity index 100% rename from networking.gke.io/lbpolicy_v1.json rename to crds/networking.gke.io/lbpolicy_v1.json diff --git a/networking.gke.io/managedcertificate_v1.json b/crds/networking.gke.io/managedcertificate_v1.json similarity index 100% rename from networking.gke.io/managedcertificate_v1.json rename to crds/networking.gke.io/managedcertificate_v1.json diff --git a/networking.gke.io/managedcertificate_v1beta1.json b/crds/networking.gke.io/managedcertificate_v1beta1.json similarity index 100% rename from networking.gke.io/managedcertificate_v1beta1.json rename to crds/networking.gke.io/managedcertificate_v1beta1.json diff --git a/networking.gke.io/managedcertificate_v1beta2.json b/crds/networking.gke.io/managedcertificate_v1beta2.json similarity index 100% rename from networking.gke.io/managedcertificate_v1beta2.json rename to crds/networking.gke.io/managedcertificate_v1beta2.json diff --git a/networking.gke.io/network_v1.json b/crds/networking.gke.io/network_v1.json similarity index 100% rename from networking.gke.io/network_v1.json rename to crds/networking.gke.io/network_v1.json diff --git a/networking.gke.io/networklogging_v1alpha1.json b/crds/networking.gke.io/networklogging_v1alpha1.json similarity index 100% rename from networking.gke.io/networklogging_v1alpha1.json rename to crds/networking.gke.io/networklogging_v1alpha1.json diff --git a/networking.gke.io/serviceattachment_v1.json b/crds/networking.gke.io/serviceattachment_v1.json similarity index 100% rename from networking.gke.io/serviceattachment_v1.json rename to crds/networking.gke.io/serviceattachment_v1.json diff --git a/networking.gke.io/serviceattachment_v1beta1.json b/crds/networking.gke.io/serviceattachment_v1beta1.json similarity index 100% rename from networking.gke.io/serviceattachment_v1beta1.json rename to crds/networking.gke.io/serviceattachment_v1beta1.json diff --git a/networking.gke.io/servicenetworkendpointgroup_v1beta1.json b/crds/networking.gke.io/servicenetworkendpointgroup_v1beta1.json similarity index 100% rename from networking.gke.io/servicenetworkendpointgroup_v1beta1.json rename to crds/networking.gke.io/servicenetworkendpointgroup_v1beta1.json diff --git a/networking.istio.io/destinationrule_v1.json b/crds/networking.istio.io/destinationrule_v1.json similarity index 100% rename from networking.istio.io/destinationrule_v1.json rename to crds/networking.istio.io/destinationrule_v1.json diff --git a/networking.istio.io/destinationrule_v1alpha3.json b/crds/networking.istio.io/destinationrule_v1alpha3.json similarity index 100% rename from networking.istio.io/destinationrule_v1alpha3.json rename to crds/networking.istio.io/destinationrule_v1alpha3.json diff --git a/networking.istio.io/destinationrule_v1beta1.json b/crds/networking.istio.io/destinationrule_v1beta1.json similarity index 100% rename from networking.istio.io/destinationrule_v1beta1.json rename to crds/networking.istio.io/destinationrule_v1beta1.json diff --git a/networking.istio.io/envoyfilter_v1alpha3.json b/crds/networking.istio.io/envoyfilter_v1alpha3.json similarity index 100% rename from networking.istio.io/envoyfilter_v1alpha3.json rename to crds/networking.istio.io/envoyfilter_v1alpha3.json diff --git a/networking.istio.io/gateway_v1.json b/crds/networking.istio.io/gateway_v1.json similarity index 100% rename from networking.istio.io/gateway_v1.json rename to crds/networking.istio.io/gateway_v1.json diff --git a/networking.istio.io/gateway_v1alpha3.json b/crds/networking.istio.io/gateway_v1alpha3.json similarity index 100% rename from networking.istio.io/gateway_v1alpha3.json rename to crds/networking.istio.io/gateway_v1alpha3.json diff --git a/networking.istio.io/gateway_v1beta1.json b/crds/networking.istio.io/gateway_v1beta1.json similarity index 100% rename from networking.istio.io/gateway_v1beta1.json rename to crds/networking.istio.io/gateway_v1beta1.json diff --git a/networking.istio.io/proxyconfig_v1beta1.json b/crds/networking.istio.io/proxyconfig_v1beta1.json similarity index 100% rename from networking.istio.io/proxyconfig_v1beta1.json rename to crds/networking.istio.io/proxyconfig_v1beta1.json diff --git a/networking.istio.io/serviceentry_v1.json b/crds/networking.istio.io/serviceentry_v1.json similarity index 100% rename from networking.istio.io/serviceentry_v1.json rename to crds/networking.istio.io/serviceentry_v1.json diff --git a/networking.istio.io/serviceentry_v1alpha3.json b/crds/networking.istio.io/serviceentry_v1alpha3.json similarity index 100% rename from networking.istio.io/serviceentry_v1alpha3.json rename to crds/networking.istio.io/serviceentry_v1alpha3.json diff --git a/networking.istio.io/serviceentry_v1beta1.json b/crds/networking.istio.io/serviceentry_v1beta1.json similarity index 100% rename from networking.istio.io/serviceentry_v1beta1.json rename to crds/networking.istio.io/serviceentry_v1beta1.json diff --git a/networking.istio.io/sidecar_v1.json b/crds/networking.istio.io/sidecar_v1.json similarity index 100% rename from networking.istio.io/sidecar_v1.json rename to crds/networking.istio.io/sidecar_v1.json diff --git a/networking.istio.io/sidecar_v1alpha3.json b/crds/networking.istio.io/sidecar_v1alpha3.json similarity index 100% rename from networking.istio.io/sidecar_v1alpha3.json rename to crds/networking.istio.io/sidecar_v1alpha3.json diff --git a/networking.istio.io/sidecar_v1beta1.json b/crds/networking.istio.io/sidecar_v1beta1.json similarity index 100% rename from networking.istio.io/sidecar_v1beta1.json rename to crds/networking.istio.io/sidecar_v1beta1.json diff --git a/networking.istio.io/virtualservice_v1.json b/crds/networking.istio.io/virtualservice_v1.json similarity index 100% rename from networking.istio.io/virtualservice_v1.json rename to crds/networking.istio.io/virtualservice_v1.json diff --git a/networking.istio.io/virtualservice_v1alpha3.json b/crds/networking.istio.io/virtualservice_v1alpha3.json similarity index 100% rename from networking.istio.io/virtualservice_v1alpha3.json rename to crds/networking.istio.io/virtualservice_v1alpha3.json diff --git a/networking.istio.io/virtualservice_v1beta1.json b/crds/networking.istio.io/virtualservice_v1beta1.json similarity index 100% rename from networking.istio.io/virtualservice_v1beta1.json rename to crds/networking.istio.io/virtualservice_v1beta1.json diff --git a/networking.istio.io/workloadentry_v1.json b/crds/networking.istio.io/workloadentry_v1.json similarity index 100% rename from networking.istio.io/workloadentry_v1.json rename to crds/networking.istio.io/workloadentry_v1.json diff --git a/networking.istio.io/workloadentry_v1alpha3.json b/crds/networking.istio.io/workloadentry_v1alpha3.json similarity index 100% rename from networking.istio.io/workloadentry_v1alpha3.json rename to crds/networking.istio.io/workloadentry_v1alpha3.json diff --git a/networking.istio.io/workloadentry_v1beta1.json b/crds/networking.istio.io/workloadentry_v1beta1.json similarity index 100% rename from networking.istio.io/workloadentry_v1beta1.json rename to crds/networking.istio.io/workloadentry_v1beta1.json diff --git a/networking.istio.io/workloadgroup_v1.json b/crds/networking.istio.io/workloadgroup_v1.json similarity index 100% rename from networking.istio.io/workloadgroup_v1.json rename to crds/networking.istio.io/workloadgroup_v1.json diff --git a/networking.istio.io/workloadgroup_v1alpha3.json b/crds/networking.istio.io/workloadgroup_v1alpha3.json similarity index 100% rename from networking.istio.io/workloadgroup_v1alpha3.json rename to crds/networking.istio.io/workloadgroup_v1alpha3.json diff --git a/networking.istio.io/workloadgroup_v1beta1.json b/crds/networking.istio.io/workloadgroup_v1beta1.json similarity index 100% rename from networking.istio.io/workloadgroup_v1beta1.json rename to crds/networking.istio.io/workloadgroup_v1beta1.json diff --git a/networking.k8s.aws/policyendpoint_v1alpha1.json b/crds/networking.k8s.aws/policyendpoint_v1alpha1.json similarity index 100% rename from networking.k8s.aws/policyendpoint_v1alpha1.json rename to crds/networking.k8s.aws/policyendpoint_v1alpha1.json diff --git a/networkmanagement.cnrm.cloud.google.com/networkmanagementconnectivitytest_v1alpha1.json b/crds/networkmanagement.cnrm.cloud.google.com/networkmanagementconnectivitytest_v1alpha1.json similarity index 100% rename from networkmanagement.cnrm.cloud.google.com/networkmanagementconnectivitytest_v1alpha1.json rename to crds/networkmanagement.cnrm.cloud.google.com/networkmanagementconnectivitytest_v1alpha1.json diff --git a/networksecurity.cnrm.cloud.google.com/networksecurityauthorizationpolicy_v1beta1.json b/crds/networksecurity.cnrm.cloud.google.com/networksecurityauthorizationpolicy_v1beta1.json similarity index 100% rename from networksecurity.cnrm.cloud.google.com/networksecurityauthorizationpolicy_v1beta1.json rename to crds/networksecurity.cnrm.cloud.google.com/networksecurityauthorizationpolicy_v1beta1.json diff --git a/networksecurity.cnrm.cloud.google.com/networksecurityclienttlspolicy_v1beta1.json b/crds/networksecurity.cnrm.cloud.google.com/networksecurityclienttlspolicy_v1beta1.json similarity index 100% rename from networksecurity.cnrm.cloud.google.com/networksecurityclienttlspolicy_v1beta1.json rename to crds/networksecurity.cnrm.cloud.google.com/networksecurityclienttlspolicy_v1beta1.json diff --git a/networksecurity.cnrm.cloud.google.com/networksecurityservertlspolicy_v1beta1.json b/crds/networksecurity.cnrm.cloud.google.com/networksecurityservertlspolicy_v1beta1.json similarity index 100% rename from networksecurity.cnrm.cloud.google.com/networksecurityservertlspolicy_v1beta1.json rename to crds/networksecurity.cnrm.cloud.google.com/networksecurityservertlspolicy_v1beta1.json diff --git a/networkservices.cnrm.cloud.google.com/networkservicesedgecachekeyset_v1alpha1.json b/crds/networkservices.cnrm.cloud.google.com/networkservicesedgecachekeyset_v1alpha1.json similarity index 100% rename from networkservices.cnrm.cloud.google.com/networkservicesedgecachekeyset_v1alpha1.json rename to crds/networkservices.cnrm.cloud.google.com/networkservicesedgecachekeyset_v1alpha1.json diff --git a/networkservices.cnrm.cloud.google.com/networkservicesedgecacheorigin_v1alpha1.json b/crds/networkservices.cnrm.cloud.google.com/networkservicesedgecacheorigin_v1alpha1.json similarity index 100% rename from networkservices.cnrm.cloud.google.com/networkservicesedgecacheorigin_v1alpha1.json rename to crds/networkservices.cnrm.cloud.google.com/networkservicesedgecacheorigin_v1alpha1.json diff --git a/networkservices.cnrm.cloud.google.com/networkservicesedgecacheservice_v1alpha1.json b/crds/networkservices.cnrm.cloud.google.com/networkservicesedgecacheservice_v1alpha1.json similarity index 100% rename from networkservices.cnrm.cloud.google.com/networkservicesedgecacheservice_v1alpha1.json rename to crds/networkservices.cnrm.cloud.google.com/networkservicesedgecacheservice_v1alpha1.json diff --git a/networkservices.cnrm.cloud.google.com/networkservicesendpointpolicy_v1beta1.json b/crds/networkservices.cnrm.cloud.google.com/networkservicesendpointpolicy_v1beta1.json similarity index 100% rename from networkservices.cnrm.cloud.google.com/networkservicesendpointpolicy_v1beta1.json rename to crds/networkservices.cnrm.cloud.google.com/networkservicesendpointpolicy_v1beta1.json diff --git a/networkservices.cnrm.cloud.google.com/networkservicesgateway_v1beta1.json b/crds/networkservices.cnrm.cloud.google.com/networkservicesgateway_v1beta1.json similarity index 100% rename from networkservices.cnrm.cloud.google.com/networkservicesgateway_v1beta1.json rename to crds/networkservices.cnrm.cloud.google.com/networkservicesgateway_v1beta1.json diff --git a/networkservices.cnrm.cloud.google.com/networkservicesgrpcroute_v1beta1.json b/crds/networkservices.cnrm.cloud.google.com/networkservicesgrpcroute_v1beta1.json similarity index 100% rename from networkservices.cnrm.cloud.google.com/networkservicesgrpcroute_v1beta1.json rename to crds/networkservices.cnrm.cloud.google.com/networkservicesgrpcroute_v1beta1.json diff --git a/networkservices.cnrm.cloud.google.com/networkserviceshttproute_v1beta1.json b/crds/networkservices.cnrm.cloud.google.com/networkserviceshttproute_v1beta1.json similarity index 100% rename from networkservices.cnrm.cloud.google.com/networkserviceshttproute_v1beta1.json rename to crds/networkservices.cnrm.cloud.google.com/networkserviceshttproute_v1beta1.json diff --git a/networkservices.cnrm.cloud.google.com/networkservicesmesh_v1beta1.json b/crds/networkservices.cnrm.cloud.google.com/networkservicesmesh_v1beta1.json similarity index 100% rename from networkservices.cnrm.cloud.google.com/networkservicesmesh_v1beta1.json rename to crds/networkservices.cnrm.cloud.google.com/networkservicesmesh_v1beta1.json diff --git a/networkservices.cnrm.cloud.google.com/networkservicestcproute_v1beta1.json b/crds/networkservices.cnrm.cloud.google.com/networkservicestcproute_v1beta1.json similarity index 100% rename from networkservices.cnrm.cloud.google.com/networkservicestcproute_v1beta1.json rename to crds/networkservices.cnrm.cloud.google.com/networkservicestcproute_v1beta1.json diff --git a/networkservices.cnrm.cloud.google.com/networkservicestlsroute_v1beta1.json b/crds/networkservices.cnrm.cloud.google.com/networkservicestlsroute_v1beta1.json similarity index 100% rename from networkservices.cnrm.cloud.google.com/networkservicestlsroute_v1beta1.json rename to crds/networkservices.cnrm.cloud.google.com/networkservicestlsroute_v1beta1.json diff --git a/notebooks.cnrm.cloud.google.com/notebooksenvironment_v1alpha1.json b/crds/notebooks.cnrm.cloud.google.com/notebooksenvironment_v1alpha1.json similarity index 100% rename from notebooks.cnrm.cloud.google.com/notebooksenvironment_v1alpha1.json rename to crds/notebooks.cnrm.cloud.google.com/notebooksenvironment_v1alpha1.json diff --git a/notification.toolkit.fluxcd.io/alert_v1beta1.json b/crds/notification.toolkit.fluxcd.io/alert_v1beta1.json similarity index 100% rename from notification.toolkit.fluxcd.io/alert_v1beta1.json rename to crds/notification.toolkit.fluxcd.io/alert_v1beta1.json diff --git a/notification.toolkit.fluxcd.io/alert_v1beta2.json b/crds/notification.toolkit.fluxcd.io/alert_v1beta2.json similarity index 100% rename from notification.toolkit.fluxcd.io/alert_v1beta2.json rename to crds/notification.toolkit.fluxcd.io/alert_v1beta2.json diff --git a/notification.toolkit.fluxcd.io/alert_v1beta3.json b/crds/notification.toolkit.fluxcd.io/alert_v1beta3.json similarity index 100% rename from notification.toolkit.fluxcd.io/alert_v1beta3.json rename to crds/notification.toolkit.fluxcd.io/alert_v1beta3.json diff --git a/notification.toolkit.fluxcd.io/provider_v1beta1.json b/crds/notification.toolkit.fluxcd.io/provider_v1beta1.json similarity index 100% rename from notification.toolkit.fluxcd.io/provider_v1beta1.json rename to crds/notification.toolkit.fluxcd.io/provider_v1beta1.json diff --git a/notification.toolkit.fluxcd.io/provider_v1beta2.json b/crds/notification.toolkit.fluxcd.io/provider_v1beta2.json similarity index 100% rename from notification.toolkit.fluxcd.io/provider_v1beta2.json rename to crds/notification.toolkit.fluxcd.io/provider_v1beta2.json diff --git a/notification.toolkit.fluxcd.io/provider_v1beta3.json b/crds/notification.toolkit.fluxcd.io/provider_v1beta3.json similarity index 100% rename from notification.toolkit.fluxcd.io/provider_v1beta3.json rename to crds/notification.toolkit.fluxcd.io/provider_v1beta3.json diff --git a/notification.toolkit.fluxcd.io/receiver_v1.json b/crds/notification.toolkit.fluxcd.io/receiver_v1.json similarity index 100% rename from notification.toolkit.fluxcd.io/receiver_v1.json rename to crds/notification.toolkit.fluxcd.io/receiver_v1.json diff --git a/notification.toolkit.fluxcd.io/receiver_v1beta1.json b/crds/notification.toolkit.fluxcd.io/receiver_v1beta1.json similarity index 100% rename from notification.toolkit.fluxcd.io/receiver_v1beta1.json rename to crds/notification.toolkit.fluxcd.io/receiver_v1beta1.json diff --git a/notification.toolkit.fluxcd.io/receiver_v1beta2.json b/crds/notification.toolkit.fluxcd.io/receiver_v1beta2.json similarity index 100% rename from notification.toolkit.fluxcd.io/receiver_v1beta2.json rename to crds/notification.toolkit.fluxcd.io/receiver_v1beta2.json diff --git a/objectbucket.io/objectbucket_v1alpha1.json b/crds/objectbucket.io/objectbucket_v1alpha1.json similarity index 100% rename from objectbucket.io/objectbucket_v1alpha1.json rename to crds/objectbucket.io/objectbucket_v1alpha1.json diff --git a/objectbucket.io/objectbucketclaim_v1alpha1.json b/crds/objectbucket.io/objectbucketclaim_v1alpha1.json similarity index 100% rename from objectbucket.io/objectbucketclaim_v1alpha1.json rename to crds/objectbucket.io/objectbucketclaim_v1alpha1.json diff --git a/onepassword.com/onepassworditem_v1.json b/crds/onepassword.com/onepassworditem_v1.json similarity index 100% rename from onepassword.com/onepassworditem_v1.json rename to crds/onepassword.com/onepassworditem_v1.json diff --git a/openebs.io/blockdevice_v1alpha1.json b/crds/openebs.io/blockdevice_v1alpha1.json similarity index 100% rename from openebs.io/blockdevice_v1alpha1.json rename to crds/openebs.io/blockdevice_v1alpha1.json diff --git a/openebs.io/blockdeviceclaim_v1alpha1.json b/crds/openebs.io/blockdeviceclaim_v1alpha1.json similarity index 100% rename from openebs.io/blockdeviceclaim_v1alpha1.json rename to crds/openebs.io/blockdeviceclaim_v1alpha1.json diff --git a/openebs.io/diskpool_v1beta1.json b/crds/openebs.io/diskpool_v1beta1.json similarity index 100% rename from openebs.io/diskpool_v1beta1.json rename to crds/openebs.io/diskpool_v1beta1.json diff --git a/openebs.io/diskpool_v1beta2.json b/crds/openebs.io/diskpool_v1beta2.json similarity index 100% rename from openebs.io/diskpool_v1beta2.json rename to crds/openebs.io/diskpool_v1beta2.json diff --git a/opensearchservice.services.k8s.aws/domain_v1alpha1.json b/crds/opensearchservice.services.k8s.aws/domain_v1alpha1.json similarity index 100% rename from opensearchservice.services.k8s.aws/domain_v1alpha1.json rename to crds/opensearchservice.services.k8s.aws/domain_v1alpha1.json diff --git a/openshift/v4.11-strict/alertingrule_v1alpha1.json b/crds/openshift/v4.11-strict/alertingrule_v1alpha1.json similarity index 100% rename from openshift/v4.11-strict/alertingrule_v1alpha1.json rename to crds/openshift/v4.11-strict/alertingrule_v1alpha1.json diff --git a/openshift/v4.11-strict/alertrelabelconfig_v1alpha1.json b/crds/openshift/v4.11-strict/alertrelabelconfig_v1alpha1.json similarity index 100% rename from openshift/v4.11-strict/alertrelabelconfig_v1alpha1.json rename to crds/openshift/v4.11-strict/alertrelabelconfig_v1alpha1.json diff --git a/openshift/v4.11-strict/alibabacloudmachineproviderconfig_v1.json b/crds/openshift/v4.11-strict/alibabacloudmachineproviderconfig_v1.json similarity index 100% rename from openshift/v4.11-strict/alibabacloudmachineproviderconfig_v1.json rename to crds/openshift/v4.11-strict/alibabacloudmachineproviderconfig_v1.json diff --git a/openshift/v4.11-strict/alibabacloudmachineproviderstatus_v1.json b/crds/openshift/v4.11-strict/alibabacloudmachineproviderstatus_v1.json similarity index 100% rename from openshift/v4.11-strict/alibabacloudmachineproviderstatus_v1.json rename to crds/openshift/v4.11-strict/alibabacloudmachineproviderstatus_v1.json diff --git a/openshift/v4.11-strict/all.json b/crds/openshift/v4.11-strict/all.json similarity index 100% rename from openshift/v4.11-strict/all.json rename to crds/openshift/v4.11-strict/all.json diff --git a/openshift/v4.11-strict/apirequestcount_v1.json b/crds/openshift/v4.11-strict/apirequestcount_v1.json similarity index 100% rename from openshift/v4.11-strict/apirequestcount_v1.json rename to crds/openshift/v4.11-strict/apirequestcount_v1.json diff --git a/openshift/v4.11-strict/apiserver_v1.json b/crds/openshift/v4.11-strict/apiserver_v1.json similarity index 100% rename from openshift/v4.11-strict/apiserver_v1.json rename to crds/openshift/v4.11-strict/apiserver_v1.json diff --git a/openshift/v4.11-strict/appliedclusterresourcequota_v1.json b/crds/openshift/v4.11-strict/appliedclusterresourcequota_v1.json similarity index 100% rename from openshift/v4.11-strict/appliedclusterresourcequota_v1.json rename to crds/openshift/v4.11-strict/appliedclusterresourcequota_v1.json diff --git a/openshift/v4.11-strict/authentication_v1.json b/crds/openshift/v4.11-strict/authentication_v1.json similarity index 100% rename from openshift/v4.11-strict/authentication_v1.json rename to crds/openshift/v4.11-strict/authentication_v1.json diff --git a/openshift/v4.11-strict/awsmachineproviderconfig_v1beta1.json b/crds/openshift/v4.11-strict/awsmachineproviderconfig_v1beta1.json similarity index 100% rename from openshift/v4.11-strict/awsmachineproviderconfig_v1beta1.json rename to crds/openshift/v4.11-strict/awsmachineproviderconfig_v1beta1.json diff --git a/openshift/v4.11-strict/azuremachineproviderspec_v1beta1.json b/crds/openshift/v4.11-strict/azuremachineproviderspec_v1beta1.json similarity index 100% rename from openshift/v4.11-strict/azuremachineproviderspec_v1beta1.json rename to crds/openshift/v4.11-strict/azuremachineproviderspec_v1beta1.json diff --git a/openshift/v4.11-strict/azuremachineproviderstatus_v1beta1.json b/crds/openshift/v4.11-strict/azuremachineproviderstatus_v1beta1.json similarity index 100% rename from openshift/v4.11-strict/azuremachineproviderstatus_v1beta1.json rename to crds/openshift/v4.11-strict/azuremachineproviderstatus_v1beta1.json diff --git a/openshift/v4.11-strict/binarybuildrequestoptions_v1.json b/crds/openshift/v4.11-strict/binarybuildrequestoptions_v1.json similarity index 100% rename from openshift/v4.11-strict/binarybuildrequestoptions_v1.json rename to crds/openshift/v4.11-strict/binarybuildrequestoptions_v1.json diff --git a/openshift/v4.11-strict/brokertemplateinstance_v1.json b/crds/openshift/v4.11-strict/brokertemplateinstance_v1.json similarity index 100% rename from openshift/v4.11-strict/brokertemplateinstance_v1.json rename to crds/openshift/v4.11-strict/brokertemplateinstance_v1.json diff --git a/openshift/v4.11-strict/build_v1.json b/crds/openshift/v4.11-strict/build_v1.json similarity index 100% rename from openshift/v4.11-strict/build_v1.json rename to crds/openshift/v4.11-strict/build_v1.json diff --git a/openshift/v4.11-strict/buildconfig_v1.json b/crds/openshift/v4.11-strict/buildconfig_v1.json similarity index 100% rename from openshift/v4.11-strict/buildconfig_v1.json rename to crds/openshift/v4.11-strict/buildconfig_v1.json diff --git a/openshift/v4.11-strict/buildrequest_v1.json b/crds/openshift/v4.11-strict/buildrequest_v1.json similarity index 100% rename from openshift/v4.11-strict/buildrequest_v1.json rename to crds/openshift/v4.11-strict/buildrequest_v1.json diff --git a/openshift/v4.11-strict/cloudcredential_v1.json b/crds/openshift/v4.11-strict/cloudcredential_v1.json similarity index 100% rename from openshift/v4.11-strict/cloudcredential_v1.json rename to crds/openshift/v4.11-strict/cloudcredential_v1.json diff --git a/openshift/v4.11-strict/cloudprivateipconfig_v1.json b/crds/openshift/v4.11-strict/cloudprivateipconfig_v1.json similarity index 100% rename from openshift/v4.11-strict/cloudprivateipconfig_v1.json rename to crds/openshift/v4.11-strict/cloudprivateipconfig_v1.json diff --git a/openshift/v4.11-strict/clustercsidriver_v1.json b/crds/openshift/v4.11-strict/clustercsidriver_v1.json similarity index 100% rename from openshift/v4.11-strict/clustercsidriver_v1.json rename to crds/openshift/v4.11-strict/clustercsidriver_v1.json diff --git a/openshift/v4.11-strict/clusternetwork_v1.json b/crds/openshift/v4.11-strict/clusternetwork_v1.json similarity index 100% rename from openshift/v4.11-strict/clusternetwork_v1.json rename to crds/openshift/v4.11-strict/clusternetwork_v1.json diff --git a/openshift/v4.11-strict/clusteroperator_v1.json b/crds/openshift/v4.11-strict/clusteroperator_v1.json similarity index 100% rename from openshift/v4.11-strict/clusteroperator_v1.json rename to crds/openshift/v4.11-strict/clusteroperator_v1.json diff --git a/openshift/v4.11-strict/clusterresourcequota_v1.json b/crds/openshift/v4.11-strict/clusterresourcequota_v1.json similarity index 100% rename from openshift/v4.11-strict/clusterresourcequota_v1.json rename to crds/openshift/v4.11-strict/clusterresourcequota_v1.json diff --git a/openshift/v4.11-strict/clusterrole_v1.json b/crds/openshift/v4.11-strict/clusterrole_v1.json similarity index 100% rename from openshift/v4.11-strict/clusterrole_v1.json rename to crds/openshift/v4.11-strict/clusterrole_v1.json diff --git a/openshift/v4.11-strict/clusterrolebinding_v1.json b/crds/openshift/v4.11-strict/clusterrolebinding_v1.json similarity index 100% rename from openshift/v4.11-strict/clusterrolebinding_v1.json rename to crds/openshift/v4.11-strict/clusterrolebinding_v1.json diff --git a/openshift/v4.11-strict/clusterversion_v1.json b/crds/openshift/v4.11-strict/clusterversion_v1.json similarity index 100% rename from openshift/v4.11-strict/clusterversion_v1.json rename to crds/openshift/v4.11-strict/clusterversion_v1.json diff --git a/openshift/v4.11-strict/config_v1.json b/crds/openshift/v4.11-strict/config_v1.json similarity index 100% rename from openshift/v4.11-strict/config_v1.json rename to crds/openshift/v4.11-strict/config_v1.json diff --git a/openshift/v4.11-strict/console_v1.json b/crds/openshift/v4.11-strict/console_v1.json similarity index 100% rename from openshift/v4.11-strict/console_v1.json rename to crds/openshift/v4.11-strict/console_v1.json diff --git a/openshift/v4.11-strict/consoleclidownload_v1.json b/crds/openshift/v4.11-strict/consoleclidownload_v1.json similarity index 100% rename from openshift/v4.11-strict/consoleclidownload_v1.json rename to crds/openshift/v4.11-strict/consoleclidownload_v1.json diff --git a/openshift/v4.11-strict/consoleexternalloglink_v1.json b/crds/openshift/v4.11-strict/consoleexternalloglink_v1.json similarity index 100% rename from openshift/v4.11-strict/consoleexternalloglink_v1.json rename to crds/openshift/v4.11-strict/consoleexternalloglink_v1.json diff --git a/openshift/v4.11-strict/consolelink_v1.json b/crds/openshift/v4.11-strict/consolelink_v1.json similarity index 100% rename from openshift/v4.11-strict/consolelink_v1.json rename to crds/openshift/v4.11-strict/consolelink_v1.json diff --git a/openshift/v4.11-strict/consolenotification_v1.json b/crds/openshift/v4.11-strict/consolenotification_v1.json similarity index 100% rename from openshift/v4.11-strict/consolenotification_v1.json rename to crds/openshift/v4.11-strict/consolenotification_v1.json diff --git a/openshift/v4.11-strict/consoleplugin_v1alpha1.json b/crds/openshift/v4.11-strict/consoleplugin_v1alpha1.json similarity index 100% rename from openshift/v4.11-strict/consoleplugin_v1alpha1.json rename to crds/openshift/v4.11-strict/consoleplugin_v1alpha1.json diff --git a/openshift/v4.11-strict/consolequickstart_v1.json b/crds/openshift/v4.11-strict/consolequickstart_v1.json similarity index 100% rename from openshift/v4.11-strict/consolequickstart_v1.json rename to crds/openshift/v4.11-strict/consolequickstart_v1.json diff --git a/openshift/v4.11-strict/consoleyamlsample_v1.json b/crds/openshift/v4.11-strict/consoleyamlsample_v1.json similarity index 100% rename from openshift/v4.11-strict/consoleyamlsample_v1.json rename to crds/openshift/v4.11-strict/consoleyamlsample_v1.json diff --git a/openshift/v4.11-strict/containerruntimeconfig_v1.json b/crds/openshift/v4.11-strict/containerruntimeconfig_v1.json similarity index 100% rename from openshift/v4.11-strict/containerruntimeconfig_v1.json rename to crds/openshift/v4.11-strict/containerruntimeconfig_v1.json diff --git a/openshift/v4.11-strict/csisnapshotcontroller_v1.json b/crds/openshift/v4.11-strict/csisnapshotcontroller_v1.json similarity index 100% rename from openshift/v4.11-strict/csisnapshotcontroller_v1.json rename to crds/openshift/v4.11-strict/csisnapshotcontroller_v1.json diff --git a/openshift/v4.11-strict/deploymentconfig_v1.json b/crds/openshift/v4.11-strict/deploymentconfig_v1.json similarity index 100% rename from openshift/v4.11-strict/deploymentconfig_v1.json rename to crds/openshift/v4.11-strict/deploymentconfig_v1.json diff --git a/openshift/v4.11-strict/dns_v1.json b/crds/openshift/v4.11-strict/dns_v1.json similarity index 100% rename from openshift/v4.11-strict/dns_v1.json rename to crds/openshift/v4.11-strict/dns_v1.json diff --git a/openshift/v4.11-strict/dnsrecord_v1.json b/crds/openshift/v4.11-strict/dnsrecord_v1.json similarity index 100% rename from openshift/v4.11-strict/dnsrecord_v1.json rename to crds/openshift/v4.11-strict/dnsrecord_v1.json diff --git a/openshift/v4.11-strict/egressnetworkpolicy_v1.json b/crds/openshift/v4.11-strict/egressnetworkpolicy_v1.json similarity index 100% rename from openshift/v4.11-strict/egressnetworkpolicy_v1.json rename to crds/openshift/v4.11-strict/egressnetworkpolicy_v1.json diff --git a/openshift/v4.11-strict/egressrouter_v1.json b/crds/openshift/v4.11-strict/egressrouter_v1.json similarity index 100% rename from openshift/v4.11-strict/egressrouter_v1.json rename to crds/openshift/v4.11-strict/egressrouter_v1.json diff --git a/openshift/v4.11-strict/etcd_v1.json b/crds/openshift/v4.11-strict/etcd_v1.json similarity index 100% rename from openshift/v4.11-strict/etcd_v1.json rename to crds/openshift/v4.11-strict/etcd_v1.json diff --git a/openshift/v4.11-strict/featuregate_v1.json b/crds/openshift/v4.11-strict/featuregate_v1.json similarity index 100% rename from openshift/v4.11-strict/featuregate_v1.json rename to crds/openshift/v4.11-strict/featuregate_v1.json diff --git a/openshift/v4.11-strict/gcpmachineproviderspec_v1beta1.json b/crds/openshift/v4.11-strict/gcpmachineproviderspec_v1beta1.json similarity index 100% rename from openshift/v4.11-strict/gcpmachineproviderspec_v1beta1.json rename to crds/openshift/v4.11-strict/gcpmachineproviderspec_v1beta1.json diff --git a/openshift/v4.11-strict/gcpmachineproviderstatus_v1beta1.json b/crds/openshift/v4.11-strict/gcpmachineproviderstatus_v1beta1.json similarity index 100% rename from openshift/v4.11-strict/gcpmachineproviderstatus_v1beta1.json rename to crds/openshift/v4.11-strict/gcpmachineproviderstatus_v1beta1.json diff --git a/openshift/v4.11-strict/group_v1.json b/crds/openshift/v4.11-strict/group_v1.json similarity index 100% rename from openshift/v4.11-strict/group_v1.json rename to crds/openshift/v4.11-strict/group_v1.json diff --git a/openshift/v4.11-strict/helmchartrepository_v1beta1.json b/crds/openshift/v4.11-strict/helmchartrepository_v1beta1.json similarity index 100% rename from openshift/v4.11-strict/helmchartrepository_v1beta1.json rename to crds/openshift/v4.11-strict/helmchartrepository_v1beta1.json diff --git a/openshift/v4.11-strict/hostsubnet_v1.json b/crds/openshift/v4.11-strict/hostsubnet_v1.json similarity index 100% rename from openshift/v4.11-strict/hostsubnet_v1.json rename to crds/openshift/v4.11-strict/hostsubnet_v1.json diff --git a/openshift/v4.11-strict/identity_v1.json b/crds/openshift/v4.11-strict/identity_v1.json similarity index 100% rename from openshift/v4.11-strict/identity_v1.json rename to crds/openshift/v4.11-strict/identity_v1.json diff --git a/openshift/v4.11-strict/image_v1.json b/crds/openshift/v4.11-strict/image_v1.json similarity index 100% rename from openshift/v4.11-strict/image_v1.json rename to crds/openshift/v4.11-strict/image_v1.json diff --git a/openshift/v4.11-strict/imagecontentpolicy_v1.json b/crds/openshift/v4.11-strict/imagecontentpolicy_v1.json similarity index 100% rename from openshift/v4.11-strict/imagecontentpolicy_v1.json rename to crds/openshift/v4.11-strict/imagecontentpolicy_v1.json diff --git a/openshift/v4.11-strict/imagecontentsourcepolicy_v1alpha1.json b/crds/openshift/v4.11-strict/imagecontentsourcepolicy_v1alpha1.json similarity index 100% rename from openshift/v4.11-strict/imagecontentsourcepolicy_v1alpha1.json rename to crds/openshift/v4.11-strict/imagecontentsourcepolicy_v1alpha1.json diff --git a/openshift/v4.11-strict/imagedigestmirrorset_v1.json b/crds/openshift/v4.11-strict/imagedigestmirrorset_v1.json similarity index 100% rename from openshift/v4.11-strict/imagedigestmirrorset_v1.json rename to crds/openshift/v4.11-strict/imagedigestmirrorset_v1.json diff --git a/openshift/v4.11-strict/imagepruner_v1.json b/crds/openshift/v4.11-strict/imagepruner_v1.json similarity index 100% rename from openshift/v4.11-strict/imagepruner_v1.json rename to crds/openshift/v4.11-strict/imagepruner_v1.json diff --git a/openshift/v4.11-strict/imagesignature_v1.json b/crds/openshift/v4.11-strict/imagesignature_v1.json similarity index 100% rename from openshift/v4.11-strict/imagesignature_v1.json rename to crds/openshift/v4.11-strict/imagesignature_v1.json diff --git a/openshift/v4.11-strict/imagestream_v1.json b/crds/openshift/v4.11-strict/imagestream_v1.json similarity index 100% rename from openshift/v4.11-strict/imagestream_v1.json rename to crds/openshift/v4.11-strict/imagestream_v1.json diff --git a/openshift/v4.11-strict/imagestreamimage_v1.json b/crds/openshift/v4.11-strict/imagestreamimage_v1.json similarity index 100% rename from openshift/v4.11-strict/imagestreamimage_v1.json rename to crds/openshift/v4.11-strict/imagestreamimage_v1.json diff --git a/openshift/v4.11-strict/imagestreamimport_v1.json b/crds/openshift/v4.11-strict/imagestreamimport_v1.json similarity index 100% rename from openshift/v4.11-strict/imagestreamimport_v1.json rename to crds/openshift/v4.11-strict/imagestreamimport_v1.json diff --git a/openshift/v4.11-strict/imagestreamlayers_v1.json b/crds/openshift/v4.11-strict/imagestreamlayers_v1.json similarity index 100% rename from openshift/v4.11-strict/imagestreamlayers_v1.json rename to crds/openshift/v4.11-strict/imagestreamlayers_v1.json diff --git a/openshift/v4.11-strict/imagestreammapping_v1.json b/crds/openshift/v4.11-strict/imagestreammapping_v1.json similarity index 100% rename from openshift/v4.11-strict/imagestreammapping_v1.json rename to crds/openshift/v4.11-strict/imagestreammapping_v1.json diff --git a/openshift/v4.11-strict/imagestreamtag_v1.json b/crds/openshift/v4.11-strict/imagestreamtag_v1.json similarity index 100% rename from openshift/v4.11-strict/imagestreamtag_v1.json rename to crds/openshift/v4.11-strict/imagestreamtag_v1.json diff --git a/openshift/v4.11-strict/imagetag_v1.json b/crds/openshift/v4.11-strict/imagetag_v1.json similarity index 100% rename from openshift/v4.11-strict/imagetag_v1.json rename to crds/openshift/v4.11-strict/imagetag_v1.json diff --git a/openshift/v4.11-strict/imagetagmirrorset_v1.json b/crds/openshift/v4.11-strict/imagetagmirrorset_v1.json similarity index 100% rename from openshift/v4.11-strict/imagetagmirrorset_v1.json rename to crds/openshift/v4.11-strict/imagetagmirrorset_v1.json diff --git a/openshift/v4.11-strict/infrastructure_v1.json b/crds/openshift/v4.11-strict/infrastructure_v1.json similarity index 100% rename from openshift/v4.11-strict/infrastructure_v1.json rename to crds/openshift/v4.11-strict/infrastructure_v1.json diff --git a/openshift/v4.11-strict/ingress_v1.json b/crds/openshift/v4.11-strict/ingress_v1.json similarity index 100% rename from openshift/v4.11-strict/ingress_v1.json rename to crds/openshift/v4.11-strict/ingress_v1.json diff --git a/openshift/v4.11-strict/ingresscontroller_v1.json b/crds/openshift/v4.11-strict/ingresscontroller_v1.json similarity index 100% rename from openshift/v4.11-strict/ingresscontroller_v1.json rename to crds/openshift/v4.11-strict/ingresscontroller_v1.json diff --git a/openshift/v4.11-strict/kubeapiserver_v1.json b/crds/openshift/v4.11-strict/kubeapiserver_v1.json similarity index 100% rename from openshift/v4.11-strict/kubeapiserver_v1.json rename to crds/openshift/v4.11-strict/kubeapiserver_v1.json diff --git a/openshift/v4.11-strict/kubecontrollermanager_v1.json b/crds/openshift/v4.11-strict/kubecontrollermanager_v1.json similarity index 100% rename from openshift/v4.11-strict/kubecontrollermanager_v1.json rename to crds/openshift/v4.11-strict/kubecontrollermanager_v1.json diff --git a/openshift/v4.11-strict/kubeletconfig_v1.json b/crds/openshift/v4.11-strict/kubeletconfig_v1.json similarity index 100% rename from openshift/v4.11-strict/kubeletconfig_v1.json rename to crds/openshift/v4.11-strict/kubeletconfig_v1.json diff --git a/openshift/v4.11-strict/kubescheduler_v1.json b/crds/openshift/v4.11-strict/kubescheduler_v1.json similarity index 100% rename from openshift/v4.11-strict/kubescheduler_v1.json rename to crds/openshift/v4.11-strict/kubescheduler_v1.json diff --git a/openshift/v4.11-strict/kubestorageversionmigrator_v1.json b/crds/openshift/v4.11-strict/kubestorageversionmigrator_v1.json similarity index 100% rename from openshift/v4.11-strict/kubestorageversionmigrator_v1.json rename to crds/openshift/v4.11-strict/kubestorageversionmigrator_v1.json diff --git a/openshift/v4.11-strict/machine_v1beta1.json b/crds/openshift/v4.11-strict/machine_v1beta1.json similarity index 100% rename from openshift/v4.11-strict/machine_v1beta1.json rename to crds/openshift/v4.11-strict/machine_v1beta1.json diff --git a/openshift/v4.11-strict/machineconfig_v1.json b/crds/openshift/v4.11-strict/machineconfig_v1.json similarity index 100% rename from openshift/v4.11-strict/machineconfig_v1.json rename to crds/openshift/v4.11-strict/machineconfig_v1.json diff --git a/openshift/v4.11-strict/machineconfigpool_v1.json b/crds/openshift/v4.11-strict/machineconfigpool_v1.json similarity index 100% rename from openshift/v4.11-strict/machineconfigpool_v1.json rename to crds/openshift/v4.11-strict/machineconfigpool_v1.json diff --git a/openshift/v4.11-strict/machinehealthcheck_v1beta1.json b/crds/openshift/v4.11-strict/machinehealthcheck_v1beta1.json similarity index 100% rename from openshift/v4.11-strict/machinehealthcheck_v1beta1.json rename to crds/openshift/v4.11-strict/machinehealthcheck_v1beta1.json diff --git a/openshift/v4.11-strict/machineset_v1beta1.json b/crds/openshift/v4.11-strict/machineset_v1beta1.json similarity index 100% rename from openshift/v4.11-strict/machineset_v1beta1.json rename to crds/openshift/v4.11-strict/machineset_v1beta1.json diff --git a/openshift/v4.11-strict/myoperatorresource_v1.json b/crds/openshift/v4.11-strict/myoperatorresource_v1.json similarity index 100% rename from openshift/v4.11-strict/myoperatorresource_v1.json rename to crds/openshift/v4.11-strict/myoperatorresource_v1.json diff --git a/openshift/v4.11-strict/netnamespace_v1.json b/crds/openshift/v4.11-strict/netnamespace_v1.json similarity index 100% rename from openshift/v4.11-strict/netnamespace_v1.json rename to crds/openshift/v4.11-strict/netnamespace_v1.json diff --git a/openshift/v4.11-strict/network_v1.json b/crds/openshift/v4.11-strict/network_v1.json similarity index 100% rename from openshift/v4.11-strict/network_v1.json rename to crds/openshift/v4.11-strict/network_v1.json diff --git a/openshift/v4.11-strict/node_v1.json b/crds/openshift/v4.11-strict/node_v1.json similarity index 100% rename from openshift/v4.11-strict/node_v1.json rename to crds/openshift/v4.11-strict/node_v1.json diff --git a/openshift/v4.11-strict/nutanixmachineproviderconfig_v1.json b/crds/openshift/v4.11-strict/nutanixmachineproviderconfig_v1.json similarity index 100% rename from openshift/v4.11-strict/nutanixmachineproviderconfig_v1.json rename to crds/openshift/v4.11-strict/nutanixmachineproviderconfig_v1.json diff --git a/openshift/v4.11-strict/oauth_v1.json b/crds/openshift/v4.11-strict/oauth_v1.json similarity index 100% rename from openshift/v4.11-strict/oauth_v1.json rename to crds/openshift/v4.11-strict/oauth_v1.json diff --git a/openshift/v4.11-strict/oauthaccesstoken_v1.json b/crds/openshift/v4.11-strict/oauthaccesstoken_v1.json similarity index 100% rename from openshift/v4.11-strict/oauthaccesstoken_v1.json rename to crds/openshift/v4.11-strict/oauthaccesstoken_v1.json diff --git a/openshift/v4.11-strict/oauthauthorizetoken_v1.json b/crds/openshift/v4.11-strict/oauthauthorizetoken_v1.json similarity index 100% rename from openshift/v4.11-strict/oauthauthorizetoken_v1.json rename to crds/openshift/v4.11-strict/oauthauthorizetoken_v1.json diff --git a/openshift/v4.11-strict/oauthclient_v1.json b/crds/openshift/v4.11-strict/oauthclient_v1.json similarity index 100% rename from openshift/v4.11-strict/oauthclient_v1.json rename to crds/openshift/v4.11-strict/oauthclient_v1.json diff --git a/openshift/v4.11-strict/oauthclientauthorization_v1.json b/crds/openshift/v4.11-strict/oauthclientauthorization_v1.json similarity index 100% rename from openshift/v4.11-strict/oauthclientauthorization_v1.json rename to crds/openshift/v4.11-strict/oauthclientauthorization_v1.json diff --git a/openshift/v4.11-strict/oauthredirectreference_v1.json b/crds/openshift/v4.11-strict/oauthredirectreference_v1.json similarity index 100% rename from openshift/v4.11-strict/oauthredirectreference_v1.json rename to crds/openshift/v4.11-strict/oauthredirectreference_v1.json diff --git a/openshift/v4.11-strict/openshiftapiserver_v1.json b/crds/openshift/v4.11-strict/openshiftapiserver_v1.json similarity index 100% rename from openshift/v4.11-strict/openshiftapiserver_v1.json rename to crds/openshift/v4.11-strict/openshiftapiserver_v1.json diff --git a/openshift/v4.11-strict/openshiftcontrollermanager_v1.json b/crds/openshift/v4.11-strict/openshiftcontrollermanager_v1.json similarity index 100% rename from openshift/v4.11-strict/openshiftcontrollermanager_v1.json rename to crds/openshift/v4.11-strict/openshiftcontrollermanager_v1.json diff --git a/openshift/v4.11-strict/operatorhub_v1.json b/crds/openshift/v4.11-strict/operatorhub_v1.json similarity index 100% rename from openshift/v4.11-strict/operatorhub_v1.json rename to crds/openshift/v4.11-strict/operatorhub_v1.json diff --git a/openshift/v4.11-strict/podnetworkconnectivitycheck_v1alpha1.json b/crds/openshift/v4.11-strict/podnetworkconnectivitycheck_v1alpha1.json similarity index 100% rename from openshift/v4.11-strict/podnetworkconnectivitycheck_v1alpha1.json rename to crds/openshift/v4.11-strict/podnetworkconnectivitycheck_v1alpha1.json diff --git a/openshift/v4.11-strict/powervsmachineproviderconfig_v1.json b/crds/openshift/v4.11-strict/powervsmachineproviderconfig_v1.json similarity index 100% rename from openshift/v4.11-strict/powervsmachineproviderconfig_v1.json rename to crds/openshift/v4.11-strict/powervsmachineproviderconfig_v1.json diff --git a/openshift/v4.11-strict/project_v1.json b/crds/openshift/v4.11-strict/project_v1.json similarity index 100% rename from openshift/v4.11-strict/project_v1.json rename to crds/openshift/v4.11-strict/project_v1.json diff --git a/openshift/v4.11-strict/projecthelmchartrepository_v1beta1.json b/crds/openshift/v4.11-strict/projecthelmchartrepository_v1beta1.json similarity index 100% rename from openshift/v4.11-strict/projecthelmchartrepository_v1beta1.json rename to crds/openshift/v4.11-strict/projecthelmchartrepository_v1beta1.json diff --git a/openshift/v4.11-strict/projectrequest_v1.json b/crds/openshift/v4.11-strict/projectrequest_v1.json similarity index 100% rename from openshift/v4.11-strict/projectrequest_v1.json rename to crds/openshift/v4.11-strict/projectrequest_v1.json diff --git a/openshift/v4.11-strict/proxy_v1.json b/crds/openshift/v4.11-strict/proxy_v1.json similarity index 100% rename from openshift/v4.11-strict/proxy_v1.json rename to crds/openshift/v4.11-strict/proxy_v1.json diff --git a/openshift/v4.11-strict/rangeallocation_v1.json b/crds/openshift/v4.11-strict/rangeallocation_v1.json similarity index 100% rename from openshift/v4.11-strict/rangeallocation_v1.json rename to crds/openshift/v4.11-strict/rangeallocation_v1.json diff --git a/openshift/v4.11-strict/role_v1.json b/crds/openshift/v4.11-strict/role_v1.json similarity index 100% rename from openshift/v4.11-strict/role_v1.json rename to crds/openshift/v4.11-strict/role_v1.json diff --git a/openshift/v4.11-strict/rolebinding_v1.json b/crds/openshift/v4.11-strict/rolebinding_v1.json similarity index 100% rename from openshift/v4.11-strict/rolebinding_v1.json rename to crds/openshift/v4.11-strict/rolebinding_v1.json diff --git a/openshift/v4.11-strict/rolebindingrestriction_v1.json b/crds/openshift/v4.11-strict/rolebindingrestriction_v1.json similarity index 100% rename from openshift/v4.11-strict/rolebindingrestriction_v1.json rename to crds/openshift/v4.11-strict/rolebindingrestriction_v1.json diff --git a/openshift/v4.11-strict/route_v1.json b/crds/openshift/v4.11-strict/route_v1.json similarity index 100% rename from openshift/v4.11-strict/route_v1.json rename to crds/openshift/v4.11-strict/route_v1.json diff --git a/openshift/v4.11-strict/scheduler_v1.json b/crds/openshift/v4.11-strict/scheduler_v1.json similarity index 100% rename from openshift/v4.11-strict/scheduler_v1.json rename to crds/openshift/v4.11-strict/scheduler_v1.json diff --git a/openshift/v4.11-strict/securitycontextconstraints_v1.json b/crds/openshift/v4.11-strict/securitycontextconstraints_v1.json similarity index 100% rename from openshift/v4.11-strict/securitycontextconstraints_v1.json rename to crds/openshift/v4.11-strict/securitycontextconstraints_v1.json diff --git a/openshift/v4.11-strict/serviceca_v1.json b/crds/openshift/v4.11-strict/serviceca_v1.json similarity index 100% rename from openshift/v4.11-strict/serviceca_v1.json rename to crds/openshift/v4.11-strict/serviceca_v1.json diff --git a/openshift/v4.11-strict/servicecatalogapiserver_v1.json b/crds/openshift/v4.11-strict/servicecatalogapiserver_v1.json similarity index 100% rename from openshift/v4.11-strict/servicecatalogapiserver_v1.json rename to crds/openshift/v4.11-strict/servicecatalogapiserver_v1.json diff --git a/openshift/v4.11-strict/servicecatalogcontrollermanager_v1.json b/crds/openshift/v4.11-strict/servicecatalogcontrollermanager_v1.json similarity index 100% rename from openshift/v4.11-strict/servicecatalogcontrollermanager_v1.json rename to crds/openshift/v4.11-strict/servicecatalogcontrollermanager_v1.json diff --git a/openshift/v4.11-strict/servicecertsigneroperatorconfig_v1alpha1.json b/crds/openshift/v4.11-strict/servicecertsigneroperatorconfig_v1alpha1.json similarity index 100% rename from openshift/v4.11-strict/servicecertsigneroperatorconfig_v1alpha1.json rename to crds/openshift/v4.11-strict/servicecertsigneroperatorconfig_v1alpha1.json diff --git a/openshift/v4.11-strict/sharedconfigmap_v1alpha1.json b/crds/openshift/v4.11-strict/sharedconfigmap_v1alpha1.json similarity index 100% rename from openshift/v4.11-strict/sharedconfigmap_v1alpha1.json rename to crds/openshift/v4.11-strict/sharedconfigmap_v1alpha1.json diff --git a/openshift/v4.11-strict/sharedsecret_v1alpha1.json b/crds/openshift/v4.11-strict/sharedsecret_v1alpha1.json similarity index 100% rename from openshift/v4.11-strict/sharedsecret_v1alpha1.json rename to crds/openshift/v4.11-strict/sharedsecret_v1alpha1.json diff --git a/openshift/v4.11-strict/storage_v1.json b/crds/openshift/v4.11-strict/storage_v1.json similarity index 100% rename from openshift/v4.11-strict/storage_v1.json rename to crds/openshift/v4.11-strict/storage_v1.json diff --git a/openshift/v4.11-strict/template_v1.json b/crds/openshift/v4.11-strict/template_v1.json similarity index 100% rename from openshift/v4.11-strict/template_v1.json rename to crds/openshift/v4.11-strict/template_v1.json diff --git a/openshift/v4.11-strict/templateinstance_v1.json b/crds/openshift/v4.11-strict/templateinstance_v1.json similarity index 100% rename from openshift/v4.11-strict/templateinstance_v1.json rename to crds/openshift/v4.11-strict/templateinstance_v1.json diff --git a/openshift/v4.11-strict/user_v1.json b/crds/openshift/v4.11-strict/user_v1.json similarity index 100% rename from openshift/v4.11-strict/user_v1.json rename to crds/openshift/v4.11-strict/user_v1.json diff --git a/openshift/v4.11-strict/useridentitymapping_v1.json b/crds/openshift/v4.11-strict/useridentitymapping_v1.json similarity index 100% rename from openshift/v4.11-strict/useridentitymapping_v1.json rename to crds/openshift/v4.11-strict/useridentitymapping_v1.json diff --git a/openshift/v4.11-strict/vspheremachineproviderspec_v1beta1.json b/crds/openshift/v4.11-strict/vspheremachineproviderspec_v1beta1.json similarity index 100% rename from openshift/v4.11-strict/vspheremachineproviderspec_v1beta1.json rename to crds/openshift/v4.11-strict/vspheremachineproviderspec_v1beta1.json diff --git a/openshift/v4.15-strict/alertingrule_monitoring.openshift.io_v1.json b/crds/openshift/v4.15-strict/alertingrule_monitoring.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/alertingrule_monitoring.openshift.io_v1.json rename to crds/openshift/v4.15-strict/alertingrule_monitoring.openshift.io_v1.json diff --git a/openshift/v4.15-strict/alertrelabelconfig_monitoring.openshift.io_v1.json b/crds/openshift/v4.15-strict/alertrelabelconfig_monitoring.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/alertrelabelconfig_monitoring.openshift.io_v1.json rename to crds/openshift/v4.15-strict/alertrelabelconfig_monitoring.openshift.io_v1.json diff --git a/openshift/v4.15-strict/alibabacloudmachineproviderconfig_machine.openshift.io_v1.json b/crds/openshift/v4.15-strict/alibabacloudmachineproviderconfig_machine.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/alibabacloudmachineproviderconfig_machine.openshift.io_v1.json rename to crds/openshift/v4.15-strict/alibabacloudmachineproviderconfig_machine.openshift.io_v1.json diff --git a/openshift/v4.15-strict/alibabacloudmachineproviderstatus_machine.openshift.io_v1.json b/crds/openshift/v4.15-strict/alibabacloudmachineproviderstatus_machine.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/alibabacloudmachineproviderstatus_machine.openshift.io_v1.json rename to crds/openshift/v4.15-strict/alibabacloudmachineproviderstatus_machine.openshift.io_v1.json diff --git a/openshift/v4.15-strict/all.json b/crds/openshift/v4.15-strict/all.json similarity index 100% rename from openshift/v4.15-strict/all.json rename to crds/openshift/v4.15-strict/all.json diff --git a/openshift/v4.15-strict/apirequestcount_apiserver.openshift.io_v1.json b/crds/openshift/v4.15-strict/apirequestcount_apiserver.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/apirequestcount_apiserver.openshift.io_v1.json rename to crds/openshift/v4.15-strict/apirequestcount_apiserver.openshift.io_v1.json diff --git a/openshift/v4.15-strict/apiserver_config.openshift.io_v1.json b/crds/openshift/v4.15-strict/apiserver_config.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/apiserver_config.openshift.io_v1.json rename to crds/openshift/v4.15-strict/apiserver_config.openshift.io_v1.json diff --git a/openshift/v4.15-strict/appliedclusterresourcequota_quota.openshift.io_v1.json b/crds/openshift/v4.15-strict/appliedclusterresourcequota_quota.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/appliedclusterresourcequota_quota.openshift.io_v1.json rename to crds/openshift/v4.15-strict/appliedclusterresourcequota_quota.openshift.io_v1.json diff --git a/openshift/v4.15-strict/authentication_config.openshift.io_v1.json b/crds/openshift/v4.15-strict/authentication_config.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/authentication_config.openshift.io_v1.json rename to crds/openshift/v4.15-strict/authentication_config.openshift.io_v1.json diff --git a/openshift/v4.15-strict/authentication_operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/authentication_operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/authentication_operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/authentication_operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/awsmachineproviderconfig_machine.openshift.io_v1beta1.json b/crds/openshift/v4.15-strict/awsmachineproviderconfig_machine.openshift.io_v1beta1.json similarity index 100% rename from openshift/v4.15-strict/awsmachineproviderconfig_machine.openshift.io_v1beta1.json rename to crds/openshift/v4.15-strict/awsmachineproviderconfig_machine.openshift.io_v1beta1.json diff --git a/openshift/v4.15-strict/azuremachineproviderspec_machine.openshift.io_v1beta1.json b/crds/openshift/v4.15-strict/azuremachineproviderspec_machine.openshift.io_v1beta1.json similarity index 100% rename from openshift/v4.15-strict/azuremachineproviderspec_machine.openshift.io_v1beta1.json rename to crds/openshift/v4.15-strict/azuremachineproviderspec_machine.openshift.io_v1beta1.json diff --git a/openshift/v4.15-strict/azuremachineproviderstatus_machine.openshift.io_v1beta1.json b/crds/openshift/v4.15-strict/azuremachineproviderstatus_machine.openshift.io_v1beta1.json similarity index 100% rename from openshift/v4.15-strict/azuremachineproviderstatus_machine.openshift.io_v1beta1.json rename to crds/openshift/v4.15-strict/azuremachineproviderstatus_machine.openshift.io_v1beta1.json diff --git a/openshift/v4.15-strict/backup_config.openshift.io_v1alpha1.json b/crds/openshift/v4.15-strict/backup_config.openshift.io_v1alpha1.json similarity index 100% rename from openshift/v4.15-strict/backup_config.openshift.io_v1alpha1.json rename to crds/openshift/v4.15-strict/backup_config.openshift.io_v1alpha1.json diff --git a/openshift/v4.15-strict/binarybuildrequestoptions_build.openshift.io_v1.json b/crds/openshift/v4.15-strict/binarybuildrequestoptions_build.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/binarybuildrequestoptions_build.openshift.io_v1.json rename to crds/openshift/v4.15-strict/binarybuildrequestoptions_build.openshift.io_v1.json diff --git a/openshift/v4.15-strict/brokertemplateinstance_template.openshift.io_v1.json b/crds/openshift/v4.15-strict/brokertemplateinstance_template.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/brokertemplateinstance_template.openshift.io_v1.json rename to crds/openshift/v4.15-strict/brokertemplateinstance_template.openshift.io_v1.json diff --git a/openshift/v4.15-strict/build_build.openshift.io_v1.json b/crds/openshift/v4.15-strict/build_build.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/build_build.openshift.io_v1.json rename to crds/openshift/v4.15-strict/build_build.openshift.io_v1.json diff --git a/openshift/v4.15-strict/build_config.openshift.io_v1.json b/crds/openshift/v4.15-strict/build_config.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/build_config.openshift.io_v1.json rename to crds/openshift/v4.15-strict/build_config.openshift.io_v1.json diff --git a/openshift/v4.15-strict/buildconfig_build.openshift.io_v1.json b/crds/openshift/v4.15-strict/buildconfig_build.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/buildconfig_build.openshift.io_v1.json rename to crds/openshift/v4.15-strict/buildconfig_build.openshift.io_v1.json diff --git a/openshift/v4.15-strict/buildrequest_build.openshift.io_v1.json b/crds/openshift/v4.15-strict/buildrequest_build.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/buildrequest_build.openshift.io_v1.json rename to crds/openshift/v4.15-strict/buildrequest_build.openshift.io_v1.json diff --git a/openshift/v4.15-strict/cloudcredential_operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/cloudcredential_operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/cloudcredential_operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/cloudcredential_operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/cloudprivateipconfig_cloud.network.openshift.io_v1.json b/crds/openshift/v4.15-strict/cloudprivateipconfig_cloud.network.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/cloudprivateipconfig_cloud.network.openshift.io_v1.json rename to crds/openshift/v4.15-strict/cloudprivateipconfig_cloud.network.openshift.io_v1.json diff --git a/openshift/v4.15-strict/clustercsidriver_operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/clustercsidriver_operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/clustercsidriver_operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/clustercsidriver_operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/clusternetwork_network.openshift.io_v1.json b/crds/openshift/v4.15-strict/clusternetwork_network.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/clusternetwork_network.openshift.io_v1.json rename to crds/openshift/v4.15-strict/clusternetwork_network.openshift.io_v1.json diff --git a/openshift/v4.15-strict/clusteroperator_config.openshift.io_v1.json b/crds/openshift/v4.15-strict/clusteroperator_config.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/clusteroperator_config.openshift.io_v1.json rename to crds/openshift/v4.15-strict/clusteroperator_config.openshift.io_v1.json diff --git a/openshift/v4.15-strict/clusterresourcequota_quota.openshift.io_v1.json b/crds/openshift/v4.15-strict/clusterresourcequota_quota.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/clusterresourcequota_quota.openshift.io_v1.json rename to crds/openshift/v4.15-strict/clusterresourcequota_quota.openshift.io_v1.json diff --git a/openshift/v4.15-strict/clusterrole_authorization.openshift.io_v1.json b/crds/openshift/v4.15-strict/clusterrole_authorization.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/clusterrole_authorization.openshift.io_v1.json rename to crds/openshift/v4.15-strict/clusterrole_authorization.openshift.io_v1.json diff --git a/openshift/v4.15-strict/clusterrolebinding_authorization.openshift.io_v1.json b/crds/openshift/v4.15-strict/clusterrolebinding_authorization.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/clusterrolebinding_authorization.openshift.io_v1.json rename to crds/openshift/v4.15-strict/clusterrolebinding_authorization.openshift.io_v1.json diff --git a/openshift/v4.15-strict/clusterversion_config.openshift.io_v1.json b/crds/openshift/v4.15-strict/clusterversion_config.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/clusterversion_config.openshift.io_v1.json rename to crds/openshift/v4.15-strict/clusterversion_config.openshift.io_v1.json diff --git a/openshift/v4.15-strict/config_imageregistry.operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/config_imageregistry.operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/config_imageregistry.operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/config_imageregistry.operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/config_operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/config_operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/config_operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/config_operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/config_samples.operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/config_samples.operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/config_samples.operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/config_samples.operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/console_config.openshift.io_v1.json b/crds/openshift/v4.15-strict/console_config.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/console_config.openshift.io_v1.json rename to crds/openshift/v4.15-strict/console_config.openshift.io_v1.json diff --git a/openshift/v4.15-strict/console_operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/console_operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/console_operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/console_operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/consoleclidownload_console.openshift.io_v1.json b/crds/openshift/v4.15-strict/consoleclidownload_console.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/consoleclidownload_console.openshift.io_v1.json rename to crds/openshift/v4.15-strict/consoleclidownload_console.openshift.io_v1.json diff --git a/openshift/v4.15-strict/consoleexternalloglink_console.openshift.io_v1.json b/crds/openshift/v4.15-strict/consoleexternalloglink_console.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/consoleexternalloglink_console.openshift.io_v1.json rename to crds/openshift/v4.15-strict/consoleexternalloglink_console.openshift.io_v1.json diff --git a/openshift/v4.15-strict/consolelink_console.openshift.io_v1.json b/crds/openshift/v4.15-strict/consolelink_console.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/consolelink_console.openshift.io_v1.json rename to crds/openshift/v4.15-strict/consolelink_console.openshift.io_v1.json diff --git a/openshift/v4.15-strict/consolenotification_console.openshift.io_v1.json b/crds/openshift/v4.15-strict/consolenotification_console.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/consolenotification_console.openshift.io_v1.json rename to crds/openshift/v4.15-strict/consolenotification_console.openshift.io_v1.json diff --git a/openshift/v4.15-strict/consoleplugin_console.openshift.io_v1.json b/crds/openshift/v4.15-strict/consoleplugin_console.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/consoleplugin_console.openshift.io_v1.json rename to crds/openshift/v4.15-strict/consoleplugin_console.openshift.io_v1.json diff --git a/openshift/v4.15-strict/consolequickstart_console.openshift.io_v1.json b/crds/openshift/v4.15-strict/consolequickstart_console.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/consolequickstart_console.openshift.io_v1.json rename to crds/openshift/v4.15-strict/consolequickstart_console.openshift.io_v1.json diff --git a/openshift/v4.15-strict/consolesample_console.openshift.io_v1.json b/crds/openshift/v4.15-strict/consolesample_console.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/consolesample_console.openshift.io_v1.json rename to crds/openshift/v4.15-strict/consolesample_console.openshift.io_v1.json diff --git a/openshift/v4.15-strict/consoleyamlsample_console.openshift.io_v1.json b/crds/openshift/v4.15-strict/consoleyamlsample_console.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/consoleyamlsample_console.openshift.io_v1.json rename to crds/openshift/v4.15-strict/consoleyamlsample_console.openshift.io_v1.json diff --git a/openshift/v4.15-strict/containerruntimeconfig_machineconfiguration.openshift.io_v1.json b/crds/openshift/v4.15-strict/containerruntimeconfig_machineconfiguration.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/containerruntimeconfig_machineconfiguration.openshift.io_v1.json rename to crds/openshift/v4.15-strict/containerruntimeconfig_machineconfiguration.openshift.io_v1.json diff --git a/openshift/v4.15-strict/controllerconfig_machineconfiguration.openshift.io_v1.json b/crds/openshift/v4.15-strict/controllerconfig_machineconfiguration.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/controllerconfig_machineconfiguration.openshift.io_v1.json rename to crds/openshift/v4.15-strict/controllerconfig_machineconfiguration.openshift.io_v1.json diff --git a/openshift/v4.15-strict/controlplanemachineset_machine.openshift.io_v1.json b/crds/openshift/v4.15-strict/controlplanemachineset_machine.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/controlplanemachineset_machine.openshift.io_v1.json rename to crds/openshift/v4.15-strict/controlplanemachineset_machine.openshift.io_v1.json diff --git a/openshift/v4.15-strict/csisnapshotcontroller_operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/csisnapshotcontroller_operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/csisnapshotcontroller_operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/csisnapshotcontroller_operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/datagather_insights.openshift.io_v1alpha1.json b/crds/openshift/v4.15-strict/datagather_insights.openshift.io_v1alpha1.json similarity index 100% rename from openshift/v4.15-strict/datagather_insights.openshift.io_v1alpha1.json rename to crds/openshift/v4.15-strict/datagather_insights.openshift.io_v1alpha1.json diff --git a/openshift/v4.15-strict/deploymentconfig_apps.openshift.io_v1.json b/crds/openshift/v4.15-strict/deploymentconfig_apps.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/deploymentconfig_apps.openshift.io_v1.json rename to crds/openshift/v4.15-strict/deploymentconfig_apps.openshift.io_v1.json diff --git a/openshift/v4.15-strict/dns_config.openshift.io_v1.json b/crds/openshift/v4.15-strict/dns_config.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/dns_config.openshift.io_v1.json rename to crds/openshift/v4.15-strict/dns_config.openshift.io_v1.json diff --git a/openshift/v4.15-strict/dns_operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/dns_operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/dns_operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/dns_operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/dnsnameresolver_network.openshift.io_v1alpha1.json b/crds/openshift/v4.15-strict/dnsnameresolver_network.openshift.io_v1alpha1.json similarity index 100% rename from openshift/v4.15-strict/dnsnameresolver_network.openshift.io_v1alpha1.json rename to crds/openshift/v4.15-strict/dnsnameresolver_network.openshift.io_v1alpha1.json diff --git a/openshift/v4.15-strict/dnsrecord_ingress.operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/dnsrecord_ingress.operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/dnsrecord_ingress.operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/dnsrecord_ingress.operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/egressnetworkpolicy_network.openshift.io_v1.json b/crds/openshift/v4.15-strict/egressnetworkpolicy_network.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/egressnetworkpolicy_network.openshift.io_v1.json rename to crds/openshift/v4.15-strict/egressnetworkpolicy_network.openshift.io_v1.json diff --git a/openshift/v4.15-strict/egressrouter_network.operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/egressrouter_network.operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/egressrouter_network.operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/egressrouter_network.operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/etcd_operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/etcd_operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/etcd_operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/etcd_operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/etcdbackup_operator.openshift.io_v1alpha1.json b/crds/openshift/v4.15-strict/etcdbackup_operator.openshift.io_v1alpha1.json similarity index 100% rename from openshift/v4.15-strict/etcdbackup_operator.openshift.io_v1alpha1.json rename to crds/openshift/v4.15-strict/etcdbackup_operator.openshift.io_v1alpha1.json diff --git a/openshift/v4.15-strict/featuregate_config.openshift.io_v1.json b/crds/openshift/v4.15-strict/featuregate_config.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/featuregate_config.openshift.io_v1.json rename to crds/openshift/v4.15-strict/featuregate_config.openshift.io_v1.json diff --git a/openshift/v4.15-strict/gcpmachineproviderspec_machine.openshift.io_v1beta1.json b/crds/openshift/v4.15-strict/gcpmachineproviderspec_machine.openshift.io_v1beta1.json similarity index 100% rename from openshift/v4.15-strict/gcpmachineproviderspec_machine.openshift.io_v1beta1.json rename to crds/openshift/v4.15-strict/gcpmachineproviderspec_machine.openshift.io_v1beta1.json diff --git a/openshift/v4.15-strict/gcpmachineproviderstatus_machine.openshift.io_v1beta1.json b/crds/openshift/v4.15-strict/gcpmachineproviderstatus_machine.openshift.io_v1beta1.json similarity index 100% rename from openshift/v4.15-strict/gcpmachineproviderstatus_machine.openshift.io_v1beta1.json rename to crds/openshift/v4.15-strict/gcpmachineproviderstatus_machine.openshift.io_v1beta1.json diff --git a/openshift/v4.15-strict/group_user.openshift.io_v1.json b/crds/openshift/v4.15-strict/group_user.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/group_user.openshift.io_v1.json rename to crds/openshift/v4.15-strict/group_user.openshift.io_v1.json diff --git a/openshift/v4.15-strict/helmchartrepository_helm.openshift.io_v1beta1.json b/crds/openshift/v4.15-strict/helmchartrepository_helm.openshift.io_v1beta1.json similarity index 100% rename from openshift/v4.15-strict/helmchartrepository_helm.openshift.io_v1beta1.json rename to crds/openshift/v4.15-strict/helmchartrepository_helm.openshift.io_v1beta1.json diff --git a/openshift/v4.15-strict/hostsubnet_network.openshift.io_v1.json b/crds/openshift/v4.15-strict/hostsubnet_network.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/hostsubnet_network.openshift.io_v1.json rename to crds/openshift/v4.15-strict/hostsubnet_network.openshift.io_v1.json diff --git a/openshift/v4.15-strict/identity_user.openshift.io_v1.json b/crds/openshift/v4.15-strict/identity_user.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/identity_user.openshift.io_v1.json rename to crds/openshift/v4.15-strict/identity_user.openshift.io_v1.json diff --git a/openshift/v4.15-strict/image_config.openshift.io_v1.json b/crds/openshift/v4.15-strict/image_config.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/image_config.openshift.io_v1.json rename to crds/openshift/v4.15-strict/image_config.openshift.io_v1.json diff --git a/openshift/v4.15-strict/image_image.openshift.io_v1.json b/crds/openshift/v4.15-strict/image_image.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/image_image.openshift.io_v1.json rename to crds/openshift/v4.15-strict/image_image.openshift.io_v1.json diff --git a/openshift/v4.15-strict/imagecontentpolicy_config.openshift.io_v1.json b/crds/openshift/v4.15-strict/imagecontentpolicy_config.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/imagecontentpolicy_config.openshift.io_v1.json rename to crds/openshift/v4.15-strict/imagecontentpolicy_config.openshift.io_v1.json diff --git a/openshift/v4.15-strict/imagecontentsourcepolicy_operator.openshift.io_v1alpha1.json b/crds/openshift/v4.15-strict/imagecontentsourcepolicy_operator.openshift.io_v1alpha1.json similarity index 100% rename from openshift/v4.15-strict/imagecontentsourcepolicy_operator.openshift.io_v1alpha1.json rename to crds/openshift/v4.15-strict/imagecontentsourcepolicy_operator.openshift.io_v1alpha1.json diff --git a/openshift/v4.15-strict/imagedigestmirrorset_config.openshift.io_v1.json b/crds/openshift/v4.15-strict/imagedigestmirrorset_config.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/imagedigestmirrorset_config.openshift.io_v1.json rename to crds/openshift/v4.15-strict/imagedigestmirrorset_config.openshift.io_v1.json diff --git a/openshift/v4.15-strict/imagepruner_imageregistry.operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/imagepruner_imageregistry.operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/imagepruner_imageregistry.operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/imagepruner_imageregistry.operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/imagesignature_image.openshift.io_v1.json b/crds/openshift/v4.15-strict/imagesignature_image.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/imagesignature_image.openshift.io_v1.json rename to crds/openshift/v4.15-strict/imagesignature_image.openshift.io_v1.json diff --git a/openshift/v4.15-strict/imagestream_image.openshift.io_v1.json b/crds/openshift/v4.15-strict/imagestream_image.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/imagestream_image.openshift.io_v1.json rename to crds/openshift/v4.15-strict/imagestream_image.openshift.io_v1.json diff --git a/openshift/v4.15-strict/imagestreamimage_image.openshift.io_v1.json b/crds/openshift/v4.15-strict/imagestreamimage_image.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/imagestreamimage_image.openshift.io_v1.json rename to crds/openshift/v4.15-strict/imagestreamimage_image.openshift.io_v1.json diff --git a/openshift/v4.15-strict/imagestreamimport_image.openshift.io_v1.json b/crds/openshift/v4.15-strict/imagestreamimport_image.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/imagestreamimport_image.openshift.io_v1.json rename to crds/openshift/v4.15-strict/imagestreamimport_image.openshift.io_v1.json diff --git a/openshift/v4.15-strict/imagestreamlayers_image.openshift.io_v1.json b/crds/openshift/v4.15-strict/imagestreamlayers_image.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/imagestreamlayers_image.openshift.io_v1.json rename to crds/openshift/v4.15-strict/imagestreamlayers_image.openshift.io_v1.json diff --git a/openshift/v4.15-strict/imagestreammapping_image.openshift.io_v1.json b/crds/openshift/v4.15-strict/imagestreammapping_image.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/imagestreammapping_image.openshift.io_v1.json rename to crds/openshift/v4.15-strict/imagestreammapping_image.openshift.io_v1.json diff --git a/openshift/v4.15-strict/imagestreamtag_image.openshift.io_v1.json b/crds/openshift/v4.15-strict/imagestreamtag_image.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/imagestreamtag_image.openshift.io_v1.json rename to crds/openshift/v4.15-strict/imagestreamtag_image.openshift.io_v1.json diff --git a/openshift/v4.15-strict/imagetag_image.openshift.io_v1.json b/crds/openshift/v4.15-strict/imagetag_image.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/imagetag_image.openshift.io_v1.json rename to crds/openshift/v4.15-strict/imagetag_image.openshift.io_v1.json diff --git a/openshift/v4.15-strict/imagetagmirrorset_config.openshift.io_v1.json b/crds/openshift/v4.15-strict/imagetagmirrorset_config.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/imagetagmirrorset_config.openshift.io_v1.json rename to crds/openshift/v4.15-strict/imagetagmirrorset_config.openshift.io_v1.json diff --git a/openshift/v4.15-strict/infrastructure_config.openshift.io_v1.json b/crds/openshift/v4.15-strict/infrastructure_config.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/infrastructure_config.openshift.io_v1.json rename to crds/openshift/v4.15-strict/infrastructure_config.openshift.io_v1.json diff --git a/openshift/v4.15-strict/ingress_config.openshift.io_v1.json b/crds/openshift/v4.15-strict/ingress_config.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/ingress_config.openshift.io_v1.json rename to crds/openshift/v4.15-strict/ingress_config.openshift.io_v1.json diff --git a/openshift/v4.15-strict/ingresscontroller_operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/ingresscontroller_operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/ingresscontroller_operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/ingresscontroller_operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/insightsdatagather_config.openshift.io_v1alpha1.json b/crds/openshift/v4.15-strict/insightsdatagather_config.openshift.io_v1alpha1.json similarity index 100% rename from openshift/v4.15-strict/insightsdatagather_config.openshift.io_v1alpha1.json rename to crds/openshift/v4.15-strict/insightsdatagather_config.openshift.io_v1alpha1.json diff --git a/openshift/v4.15-strict/insightsoperator_operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/insightsoperator_operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/insightsoperator_operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/insightsoperator_operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/kubeapiserver_operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/kubeapiserver_operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/kubeapiserver_operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/kubeapiserver_operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/kubecontrollermanager_operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/kubecontrollermanager_operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/kubecontrollermanager_operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/kubecontrollermanager_operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/kubeletconfig_machineconfiguration.openshift.io_v1.json b/crds/openshift/v4.15-strict/kubeletconfig_machineconfiguration.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/kubeletconfig_machineconfiguration.openshift.io_v1.json rename to crds/openshift/v4.15-strict/kubeletconfig_machineconfiguration.openshift.io_v1.json diff --git a/openshift/v4.15-strict/kubescheduler_operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/kubescheduler_operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/kubescheduler_operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/kubescheduler_operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/kubestorageversionmigrator_operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/kubestorageversionmigrator_operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/kubestorageversionmigrator_operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/kubestorageversionmigrator_operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/machine_machine.openshift.io_v1beta1.json b/crds/openshift/v4.15-strict/machine_machine.openshift.io_v1beta1.json similarity index 100% rename from openshift/v4.15-strict/machine_machine.openshift.io_v1beta1.json rename to crds/openshift/v4.15-strict/machine_machine.openshift.io_v1beta1.json diff --git a/openshift/v4.15-strict/machineconfig_machineconfiguration.openshift.io_v1.json b/crds/openshift/v4.15-strict/machineconfig_machineconfiguration.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/machineconfig_machineconfiguration.openshift.io_v1.json rename to crds/openshift/v4.15-strict/machineconfig_machineconfiguration.openshift.io_v1.json diff --git a/openshift/v4.15-strict/machineconfignode_machineconfiguration.openshift.io_v1alpha1.json b/crds/openshift/v4.15-strict/machineconfignode_machineconfiguration.openshift.io_v1alpha1.json similarity index 100% rename from openshift/v4.15-strict/machineconfignode_machineconfiguration.openshift.io_v1alpha1.json rename to crds/openshift/v4.15-strict/machineconfignode_machineconfiguration.openshift.io_v1alpha1.json diff --git a/openshift/v4.15-strict/machineconfigpool_machineconfiguration.openshift.io_v1.json b/crds/openshift/v4.15-strict/machineconfigpool_machineconfiguration.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/machineconfigpool_machineconfiguration.openshift.io_v1.json rename to crds/openshift/v4.15-strict/machineconfigpool_machineconfiguration.openshift.io_v1.json diff --git a/openshift/v4.15-strict/machineconfiguration_operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/machineconfiguration_operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/machineconfiguration_operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/machineconfiguration_operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/machinehealthcheck_machine.openshift.io_v1beta1.json b/crds/openshift/v4.15-strict/machinehealthcheck_machine.openshift.io_v1beta1.json similarity index 100% rename from openshift/v4.15-strict/machinehealthcheck_machine.openshift.io_v1beta1.json rename to crds/openshift/v4.15-strict/machinehealthcheck_machine.openshift.io_v1beta1.json diff --git a/openshift/v4.15-strict/machineset_machine.openshift.io_v1beta1.json b/crds/openshift/v4.15-strict/machineset_machine.openshift.io_v1beta1.json similarity index 100% rename from openshift/v4.15-strict/machineset_machine.openshift.io_v1beta1.json rename to crds/openshift/v4.15-strict/machineset_machine.openshift.io_v1beta1.json diff --git a/openshift/v4.15-strict/myoperatorresource_operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/myoperatorresource_operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/myoperatorresource_operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/myoperatorresource_operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/netnamespace_network.openshift.io_v1.json b/crds/openshift/v4.15-strict/netnamespace_network.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/netnamespace_network.openshift.io_v1.json rename to crds/openshift/v4.15-strict/netnamespace_network.openshift.io_v1.json diff --git a/openshift/v4.15-strict/network_config.openshift.io_v1.json b/crds/openshift/v4.15-strict/network_config.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/network_config.openshift.io_v1.json rename to crds/openshift/v4.15-strict/network_config.openshift.io_v1.json diff --git a/openshift/v4.15-strict/network_operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/network_operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/network_operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/network_operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/node_config.openshift.io_v1.json b/crds/openshift/v4.15-strict/node_config.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/node_config.openshift.io_v1.json rename to crds/openshift/v4.15-strict/node_config.openshift.io_v1.json diff --git a/openshift/v4.15-strict/notstableconfigtype_example.openshift.io_v1alpha1.json b/crds/openshift/v4.15-strict/notstableconfigtype_example.openshift.io_v1alpha1.json similarity index 100% rename from openshift/v4.15-strict/notstableconfigtype_example.openshift.io_v1alpha1.json rename to crds/openshift/v4.15-strict/notstableconfigtype_example.openshift.io_v1alpha1.json diff --git a/openshift/v4.15-strict/nutanixmachineproviderconfig_machine.openshift.io_v1.json b/crds/openshift/v4.15-strict/nutanixmachineproviderconfig_machine.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/nutanixmachineproviderconfig_machine.openshift.io_v1.json rename to crds/openshift/v4.15-strict/nutanixmachineproviderconfig_machine.openshift.io_v1.json diff --git a/openshift/v4.15-strict/oauth_config.openshift.io_v1.json b/crds/openshift/v4.15-strict/oauth_config.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/oauth_config.openshift.io_v1.json rename to crds/openshift/v4.15-strict/oauth_config.openshift.io_v1.json diff --git a/openshift/v4.15-strict/oauthaccesstoken_oauth.openshift.io_v1.json b/crds/openshift/v4.15-strict/oauthaccesstoken_oauth.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/oauthaccesstoken_oauth.openshift.io_v1.json rename to crds/openshift/v4.15-strict/oauthaccesstoken_oauth.openshift.io_v1.json diff --git a/openshift/v4.15-strict/oauthauthorizetoken_oauth.openshift.io_v1.json b/crds/openshift/v4.15-strict/oauthauthorizetoken_oauth.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/oauthauthorizetoken_oauth.openshift.io_v1.json rename to crds/openshift/v4.15-strict/oauthauthorizetoken_oauth.openshift.io_v1.json diff --git a/openshift/v4.15-strict/oauthclient_oauth.openshift.io_v1.json b/crds/openshift/v4.15-strict/oauthclient_oauth.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/oauthclient_oauth.openshift.io_v1.json rename to crds/openshift/v4.15-strict/oauthclient_oauth.openshift.io_v1.json diff --git a/openshift/v4.15-strict/oauthclientauthorization_oauth.openshift.io_v1.json b/crds/openshift/v4.15-strict/oauthclientauthorization_oauth.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/oauthclientauthorization_oauth.openshift.io_v1.json rename to crds/openshift/v4.15-strict/oauthclientauthorization_oauth.openshift.io_v1.json diff --git a/openshift/v4.15-strict/oauthredirectreference_oauth.openshift.io_v1.json b/crds/openshift/v4.15-strict/oauthredirectreference_oauth.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/oauthredirectreference_oauth.openshift.io_v1.json rename to crds/openshift/v4.15-strict/oauthredirectreference_oauth.openshift.io_v1.json diff --git a/openshift/v4.15-strict/olm_operator.openshift.io_v1alpha1.json b/crds/openshift/v4.15-strict/olm_operator.openshift.io_v1alpha1.json similarity index 100% rename from openshift/v4.15-strict/olm_operator.openshift.io_v1alpha1.json rename to crds/openshift/v4.15-strict/olm_operator.openshift.io_v1alpha1.json diff --git a/openshift/v4.15-strict/openshiftapiserver_operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/openshiftapiserver_operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/openshiftapiserver_operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/openshiftapiserver_operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/openshiftcontrollermanager_operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/openshiftcontrollermanager_operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/openshiftcontrollermanager_operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/openshiftcontrollermanager_operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/openstackproviderspec_machine.openshift.io_v1alpha1.json b/crds/openshift/v4.15-strict/openstackproviderspec_machine.openshift.io_v1alpha1.json similarity index 100% rename from openshift/v4.15-strict/openstackproviderspec_machine.openshift.io_v1alpha1.json rename to crds/openshift/v4.15-strict/openstackproviderspec_machine.openshift.io_v1alpha1.json diff --git a/openshift/v4.15-strict/operatorhub_config.openshift.io_v1.json b/crds/openshift/v4.15-strict/operatorhub_config.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/operatorhub_config.openshift.io_v1.json rename to crds/openshift/v4.15-strict/operatorhub_config.openshift.io_v1.json diff --git a/openshift/v4.15-strict/platformoperator_platform.openshift.io_v1alpha1.json b/crds/openshift/v4.15-strict/platformoperator_platform.openshift.io_v1alpha1.json similarity index 100% rename from openshift/v4.15-strict/platformoperator_platform.openshift.io_v1alpha1.json rename to crds/openshift/v4.15-strict/platformoperator_platform.openshift.io_v1alpha1.json diff --git a/openshift/v4.15-strict/podnetworkconnectivitycheck_controlplane.operator.openshift.io_v1alpha1.json b/crds/openshift/v4.15-strict/podnetworkconnectivitycheck_controlplane.operator.openshift.io_v1alpha1.json similarity index 100% rename from openshift/v4.15-strict/podnetworkconnectivitycheck_controlplane.operator.openshift.io_v1alpha1.json rename to crds/openshift/v4.15-strict/podnetworkconnectivitycheck_controlplane.operator.openshift.io_v1alpha1.json diff --git a/openshift/v4.15-strict/powervsmachineproviderconfig_machine.openshift.io_v1.json b/crds/openshift/v4.15-strict/powervsmachineproviderconfig_machine.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/powervsmachineproviderconfig_machine.openshift.io_v1.json rename to crds/openshift/v4.15-strict/powervsmachineproviderconfig_machine.openshift.io_v1.json diff --git a/openshift/v4.15-strict/project_config.openshift.io_v1.json b/crds/openshift/v4.15-strict/project_config.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/project_config.openshift.io_v1.json rename to crds/openshift/v4.15-strict/project_config.openshift.io_v1.json diff --git a/openshift/v4.15-strict/project_project.openshift.io_v1.json b/crds/openshift/v4.15-strict/project_project.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/project_project.openshift.io_v1.json rename to crds/openshift/v4.15-strict/project_project.openshift.io_v1.json diff --git a/openshift/v4.15-strict/projecthelmchartrepository_helm.openshift.io_v1beta1.json b/crds/openshift/v4.15-strict/projecthelmchartrepository_helm.openshift.io_v1beta1.json similarity index 100% rename from openshift/v4.15-strict/projecthelmchartrepository_helm.openshift.io_v1beta1.json rename to crds/openshift/v4.15-strict/projecthelmchartrepository_helm.openshift.io_v1beta1.json diff --git a/openshift/v4.15-strict/projectrequest_project.openshift.io_v1.json b/crds/openshift/v4.15-strict/projectrequest_project.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/projectrequest_project.openshift.io_v1.json rename to crds/openshift/v4.15-strict/projectrequest_project.openshift.io_v1.json diff --git a/openshift/v4.15-strict/proxy_config.openshift.io_v1.json b/crds/openshift/v4.15-strict/proxy_config.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/proxy_config.openshift.io_v1.json rename to crds/openshift/v4.15-strict/proxy_config.openshift.io_v1.json diff --git a/openshift/v4.15-strict/rangeallocation_security.internal.openshift.io_v1.json b/crds/openshift/v4.15-strict/rangeallocation_security.internal.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/rangeallocation_security.internal.openshift.io_v1.json rename to crds/openshift/v4.15-strict/rangeallocation_security.internal.openshift.io_v1.json diff --git a/openshift/v4.15-strict/rangeallocation_security.openshift.io_v1.json b/crds/openshift/v4.15-strict/rangeallocation_security.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/rangeallocation_security.openshift.io_v1.json rename to crds/openshift/v4.15-strict/rangeallocation_security.openshift.io_v1.json diff --git a/openshift/v4.15-strict/role_authorization.openshift.io_v1.json b/crds/openshift/v4.15-strict/role_authorization.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/role_authorization.openshift.io_v1.json rename to crds/openshift/v4.15-strict/role_authorization.openshift.io_v1.json diff --git a/openshift/v4.15-strict/rolebinding_authorization.openshift.io_v1.json b/crds/openshift/v4.15-strict/rolebinding_authorization.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/rolebinding_authorization.openshift.io_v1.json rename to crds/openshift/v4.15-strict/rolebinding_authorization.openshift.io_v1.json diff --git a/openshift/v4.15-strict/rolebindingrestriction_authorization.openshift.io_v1.json b/crds/openshift/v4.15-strict/rolebindingrestriction_authorization.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/rolebindingrestriction_authorization.openshift.io_v1.json rename to crds/openshift/v4.15-strict/rolebindingrestriction_authorization.openshift.io_v1.json diff --git a/openshift/v4.15-strict/route_route.openshift.io_v1.json b/crds/openshift/v4.15-strict/route_route.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/route_route.openshift.io_v1.json rename to crds/openshift/v4.15-strict/route_route.openshift.io_v1.json diff --git a/openshift/v4.15-strict/scheduler_config.openshift.io_v1.json b/crds/openshift/v4.15-strict/scheduler_config.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/scheduler_config.openshift.io_v1.json rename to crds/openshift/v4.15-strict/scheduler_config.openshift.io_v1.json diff --git a/openshift/v4.15-strict/securitycontextconstraints_security.openshift.io_v1.json b/crds/openshift/v4.15-strict/securitycontextconstraints_security.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/securitycontextconstraints_security.openshift.io_v1.json rename to crds/openshift/v4.15-strict/securitycontextconstraints_security.openshift.io_v1.json diff --git a/openshift/v4.15-strict/serviceca_operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/serviceca_operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/serviceca_operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/serviceca_operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/servicecatalogapiserver_operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/servicecatalogapiserver_operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/servicecatalogapiserver_operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/servicecatalogapiserver_operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/servicecatalogcontrollermanager_operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/servicecatalogcontrollermanager_operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/servicecatalogcontrollermanager_operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/servicecatalogcontrollermanager_operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/servicecertsigneroperatorconfig_servicecertsigner.config.openshift.io_v1alpha1.json b/crds/openshift/v4.15-strict/servicecertsigneroperatorconfig_servicecertsigner.config.openshift.io_v1alpha1.json similarity index 100% rename from openshift/v4.15-strict/servicecertsigneroperatorconfig_servicecertsigner.config.openshift.io_v1alpha1.json rename to crds/openshift/v4.15-strict/servicecertsigneroperatorconfig_servicecertsigner.config.openshift.io_v1alpha1.json diff --git a/openshift/v4.15-strict/sharedconfigmap_sharedresource.openshift.io_v1alpha1.json b/crds/openshift/v4.15-strict/sharedconfigmap_sharedresource.openshift.io_v1alpha1.json similarity index 100% rename from openshift/v4.15-strict/sharedconfigmap_sharedresource.openshift.io_v1alpha1.json rename to crds/openshift/v4.15-strict/sharedconfigmap_sharedresource.openshift.io_v1alpha1.json diff --git a/openshift/v4.15-strict/sharedsecret_sharedresource.openshift.io_v1alpha1.json b/crds/openshift/v4.15-strict/sharedsecret_sharedresource.openshift.io_v1alpha1.json similarity index 100% rename from openshift/v4.15-strict/sharedsecret_sharedresource.openshift.io_v1alpha1.json rename to crds/openshift/v4.15-strict/sharedsecret_sharedresource.openshift.io_v1alpha1.json diff --git a/openshift/v4.15-strict/stableconfigtype_example.openshift.io_v1.json b/crds/openshift/v4.15-strict/stableconfigtype_example.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/stableconfigtype_example.openshift.io_v1.json rename to crds/openshift/v4.15-strict/stableconfigtype_example.openshift.io_v1.json diff --git a/openshift/v4.15-strict/storage_operator.openshift.io_v1.json b/crds/openshift/v4.15-strict/storage_operator.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/storage_operator.openshift.io_v1.json rename to crds/openshift/v4.15-strict/storage_operator.openshift.io_v1.json diff --git a/openshift/v4.15-strict/template_template.openshift.io_v1.json b/crds/openshift/v4.15-strict/template_template.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/template_template.openshift.io_v1.json rename to crds/openshift/v4.15-strict/template_template.openshift.io_v1.json diff --git a/openshift/v4.15-strict/templateinstance_template.openshift.io_v1.json b/crds/openshift/v4.15-strict/templateinstance_template.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/templateinstance_template.openshift.io_v1.json rename to crds/openshift/v4.15-strict/templateinstance_template.openshift.io_v1.json diff --git a/openshift/v4.15-strict/user_user.openshift.io_v1.json b/crds/openshift/v4.15-strict/user_user.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/user_user.openshift.io_v1.json rename to crds/openshift/v4.15-strict/user_user.openshift.io_v1.json diff --git a/openshift/v4.15-strict/useridentitymapping_user.openshift.io_v1.json b/crds/openshift/v4.15-strict/useridentitymapping_user.openshift.io_v1.json similarity index 100% rename from openshift/v4.15-strict/useridentitymapping_user.openshift.io_v1.json rename to crds/openshift/v4.15-strict/useridentitymapping_user.openshift.io_v1.json diff --git a/openshift/v4.15-strict/vspheremachineproviderspec_machine.openshift.io_v1beta1.json b/crds/openshift/v4.15-strict/vspheremachineproviderspec_machine.openshift.io_v1beta1.json similarity index 100% rename from openshift/v4.15-strict/vspheremachineproviderspec_machine.openshift.io_v1beta1.json rename to crds/openshift/v4.15-strict/vspheremachineproviderspec_machine.openshift.io_v1beta1.json diff --git a/opentelemetry.io/instrumentation_v1alpha1.json b/crds/opentelemetry.io/instrumentation_v1alpha1.json similarity index 100% rename from opentelemetry.io/instrumentation_v1alpha1.json rename to crds/opentelemetry.io/instrumentation_v1alpha1.json diff --git a/opentelemetry.io/opampbridge_v1alpha1.json b/crds/opentelemetry.io/opampbridge_v1alpha1.json similarity index 100% rename from opentelemetry.io/opampbridge_v1alpha1.json rename to crds/opentelemetry.io/opampbridge_v1alpha1.json diff --git a/opentelemetry.io/opentelemetrycollector_v1alpha1.json b/crds/opentelemetry.io/opentelemetrycollector_v1alpha1.json similarity index 100% rename from opentelemetry.io/opentelemetrycollector_v1alpha1.json rename to crds/opentelemetry.io/opentelemetrycollector_v1alpha1.json diff --git a/opentelemetry.io/opentelemetrycollector_v1beta1.json b/crds/opentelemetry.io/opentelemetrycollector_v1beta1.json similarity index 100% rename from opentelemetry.io/opentelemetrycollector_v1beta1.json rename to crds/opentelemetry.io/opentelemetrycollector_v1beta1.json diff --git a/operator.cluster.x-k8s.io/addonprovider_v1alpha2.json b/crds/operator.cluster.x-k8s.io/addonprovider_v1alpha2.json similarity index 100% rename from operator.cluster.x-k8s.io/addonprovider_v1alpha2.json rename to crds/operator.cluster.x-k8s.io/addonprovider_v1alpha2.json diff --git a/operator.cluster.x-k8s.io/bootstrapprovider_v1alpha1.json b/crds/operator.cluster.x-k8s.io/bootstrapprovider_v1alpha1.json similarity index 100% rename from operator.cluster.x-k8s.io/bootstrapprovider_v1alpha1.json rename to crds/operator.cluster.x-k8s.io/bootstrapprovider_v1alpha1.json diff --git a/operator.cluster.x-k8s.io/bootstrapprovider_v1alpha2.json b/crds/operator.cluster.x-k8s.io/bootstrapprovider_v1alpha2.json similarity index 100% rename from operator.cluster.x-k8s.io/bootstrapprovider_v1alpha2.json rename to crds/operator.cluster.x-k8s.io/bootstrapprovider_v1alpha2.json diff --git a/operator.cluster.x-k8s.io/controlplaneprovider_v1alpha1.json b/crds/operator.cluster.x-k8s.io/controlplaneprovider_v1alpha1.json similarity index 100% rename from operator.cluster.x-k8s.io/controlplaneprovider_v1alpha1.json rename to crds/operator.cluster.x-k8s.io/controlplaneprovider_v1alpha1.json diff --git a/operator.cluster.x-k8s.io/controlplaneprovider_v1alpha2.json b/crds/operator.cluster.x-k8s.io/controlplaneprovider_v1alpha2.json similarity index 100% rename from operator.cluster.x-k8s.io/controlplaneprovider_v1alpha2.json rename to crds/operator.cluster.x-k8s.io/controlplaneprovider_v1alpha2.json diff --git a/operator.cluster.x-k8s.io/coreprovider_v1alpha1.json b/crds/operator.cluster.x-k8s.io/coreprovider_v1alpha1.json similarity index 100% rename from operator.cluster.x-k8s.io/coreprovider_v1alpha1.json rename to crds/operator.cluster.x-k8s.io/coreprovider_v1alpha1.json diff --git a/operator.cluster.x-k8s.io/coreprovider_v1alpha2.json b/crds/operator.cluster.x-k8s.io/coreprovider_v1alpha2.json similarity index 100% rename from operator.cluster.x-k8s.io/coreprovider_v1alpha2.json rename to crds/operator.cluster.x-k8s.io/coreprovider_v1alpha2.json diff --git a/operator.cluster.x-k8s.io/infrastructureprovider_v1alpha1.json b/crds/operator.cluster.x-k8s.io/infrastructureprovider_v1alpha1.json similarity index 100% rename from operator.cluster.x-k8s.io/infrastructureprovider_v1alpha1.json rename to crds/operator.cluster.x-k8s.io/infrastructureprovider_v1alpha1.json diff --git a/operator.cluster.x-k8s.io/infrastructureprovider_v1alpha2.json b/crds/operator.cluster.x-k8s.io/infrastructureprovider_v1alpha2.json similarity index 100% rename from operator.cluster.x-k8s.io/infrastructureprovider_v1alpha2.json rename to crds/operator.cluster.x-k8s.io/infrastructureprovider_v1alpha2.json diff --git a/operator.cluster.x-k8s.io/ipamprovider_v1alpha2.json b/crds/operator.cluster.x-k8s.io/ipamprovider_v1alpha2.json similarity index 100% rename from operator.cluster.x-k8s.io/ipamprovider_v1alpha2.json rename to crds/operator.cluster.x-k8s.io/ipamprovider_v1alpha2.json diff --git a/operator.tigera.io/apiserver_v1.json b/crds/operator.tigera.io/apiserver_v1.json similarity index 100% rename from operator.tigera.io/apiserver_v1.json rename to crds/operator.tigera.io/apiserver_v1.json diff --git a/operator.tigera.io/imageset_v1.json b/crds/operator.tigera.io/imageset_v1.json similarity index 100% rename from operator.tigera.io/imageset_v1.json rename to crds/operator.tigera.io/imageset_v1.json diff --git a/operator.tigera.io/installation_v1.json b/crds/operator.tigera.io/installation_v1.json similarity index 100% rename from operator.tigera.io/installation_v1.json rename to crds/operator.tigera.io/installation_v1.json diff --git a/operator.tigera.io/tigerastatus_v1.json b/crds/operator.tigera.io/tigerastatus_v1.json similarity index 100% rename from operator.tigera.io/tigerastatus_v1.json rename to crds/operator.tigera.io/tigerastatus_v1.json diff --git a/operator.victoriametrics.com/vlogs_v1beta1.json b/crds/operator.victoriametrics.com/vlogs_v1beta1.json similarity index 100% rename from operator.victoriametrics.com/vlogs_v1beta1.json rename to crds/operator.victoriametrics.com/vlogs_v1beta1.json diff --git a/operator.victoriametrics.com/vmagent_v1beta1.json b/crds/operator.victoriametrics.com/vmagent_v1beta1.json similarity index 100% rename from operator.victoriametrics.com/vmagent_v1beta1.json rename to crds/operator.victoriametrics.com/vmagent_v1beta1.json diff --git a/operator.victoriametrics.com/vmalert_v1beta1.json b/crds/operator.victoriametrics.com/vmalert_v1beta1.json similarity index 100% rename from operator.victoriametrics.com/vmalert_v1beta1.json rename to crds/operator.victoriametrics.com/vmalert_v1beta1.json diff --git a/operator.victoriametrics.com/vmalertmanager_v1beta1.json b/crds/operator.victoriametrics.com/vmalertmanager_v1beta1.json similarity index 100% rename from operator.victoriametrics.com/vmalertmanager_v1beta1.json rename to crds/operator.victoriametrics.com/vmalertmanager_v1beta1.json diff --git a/operator.victoriametrics.com/vmalertmanagerconfig_v1beta1.json b/crds/operator.victoriametrics.com/vmalertmanagerconfig_v1beta1.json similarity index 100% rename from operator.victoriametrics.com/vmalertmanagerconfig_v1beta1.json rename to crds/operator.victoriametrics.com/vmalertmanagerconfig_v1beta1.json diff --git a/operator.victoriametrics.com/vmauth_v1beta1.json b/crds/operator.victoriametrics.com/vmauth_v1beta1.json similarity index 100% rename from operator.victoriametrics.com/vmauth_v1beta1.json rename to crds/operator.victoriametrics.com/vmauth_v1beta1.json diff --git a/operator.victoriametrics.com/vmcluster_v1beta1.json b/crds/operator.victoriametrics.com/vmcluster_v1beta1.json similarity index 100% rename from operator.victoriametrics.com/vmcluster_v1beta1.json rename to crds/operator.victoriametrics.com/vmcluster_v1beta1.json diff --git a/operator.victoriametrics.com/vmnodescrape_v1beta1.json b/crds/operator.victoriametrics.com/vmnodescrape_v1beta1.json similarity index 100% rename from operator.victoriametrics.com/vmnodescrape_v1beta1.json rename to crds/operator.victoriametrics.com/vmnodescrape_v1beta1.json diff --git a/operator.victoriametrics.com/vmpodscrape_v1beta1.json b/crds/operator.victoriametrics.com/vmpodscrape_v1beta1.json similarity index 100% rename from operator.victoriametrics.com/vmpodscrape_v1beta1.json rename to crds/operator.victoriametrics.com/vmpodscrape_v1beta1.json diff --git a/operator.victoriametrics.com/vmprobe_v1beta1.json b/crds/operator.victoriametrics.com/vmprobe_v1beta1.json similarity index 100% rename from operator.victoriametrics.com/vmprobe_v1beta1.json rename to crds/operator.victoriametrics.com/vmprobe_v1beta1.json diff --git a/operator.victoriametrics.com/vmrule_v1beta1.json b/crds/operator.victoriametrics.com/vmrule_v1beta1.json similarity index 100% rename from operator.victoriametrics.com/vmrule_v1beta1.json rename to crds/operator.victoriametrics.com/vmrule_v1beta1.json diff --git a/operator.victoriametrics.com/vmscrapeconfig_v1beta1.json b/crds/operator.victoriametrics.com/vmscrapeconfig_v1beta1.json similarity index 100% rename from operator.victoriametrics.com/vmscrapeconfig_v1beta1.json rename to crds/operator.victoriametrics.com/vmscrapeconfig_v1beta1.json diff --git a/operator.victoriametrics.com/vmservicescrape_v1beta1.json b/crds/operator.victoriametrics.com/vmservicescrape_v1beta1.json similarity index 100% rename from operator.victoriametrics.com/vmservicescrape_v1beta1.json rename to crds/operator.victoriametrics.com/vmservicescrape_v1beta1.json diff --git a/operator.victoriametrics.com/vmsingle_v1beta1.json b/crds/operator.victoriametrics.com/vmsingle_v1beta1.json similarity index 100% rename from operator.victoriametrics.com/vmsingle_v1beta1.json rename to crds/operator.victoriametrics.com/vmsingle_v1beta1.json diff --git a/operator.victoriametrics.com/vmstaticscrape_v1beta1.json b/crds/operator.victoriametrics.com/vmstaticscrape_v1beta1.json similarity index 100% rename from operator.victoriametrics.com/vmstaticscrape_v1beta1.json rename to crds/operator.victoriametrics.com/vmstaticscrape_v1beta1.json diff --git a/operator.victoriametrics.com/vmuser_v1beta1.json b/crds/operator.victoriametrics.com/vmuser_v1beta1.json similarity index 100% rename from operator.victoriametrics.com/vmuser_v1beta1.json rename to crds/operator.victoriametrics.com/vmuser_v1beta1.json diff --git a/operators.coreos.com/catalogsource_v1alpha1.json b/crds/operators.coreos.com/catalogsource_v1alpha1.json similarity index 100% rename from operators.coreos.com/catalogsource_v1alpha1.json rename to crds/operators.coreos.com/catalogsource_v1alpha1.json diff --git a/operators.coreos.com/clusterserviceversion_v1alpha1.json b/crds/operators.coreos.com/clusterserviceversion_v1alpha1.json similarity index 100% rename from operators.coreos.com/clusterserviceversion_v1alpha1.json rename to crds/operators.coreos.com/clusterserviceversion_v1alpha1.json diff --git a/operators.coreos.com/installplan_v1alpha1.json b/crds/operators.coreos.com/installplan_v1alpha1.json similarity index 100% rename from operators.coreos.com/installplan_v1alpha1.json rename to crds/operators.coreos.com/installplan_v1alpha1.json diff --git a/operators.coreos.com/olmconfig_v1.json b/crds/operators.coreos.com/olmconfig_v1.json similarity index 100% rename from operators.coreos.com/olmconfig_v1.json rename to crds/operators.coreos.com/olmconfig_v1.json diff --git a/operators.coreos.com/operator_v1.json b/crds/operators.coreos.com/operator_v1.json similarity index 100% rename from operators.coreos.com/operator_v1.json rename to crds/operators.coreos.com/operator_v1.json diff --git a/operators.coreos.com/operatorcondition_v1.json b/crds/operators.coreos.com/operatorcondition_v1.json similarity index 100% rename from operators.coreos.com/operatorcondition_v1.json rename to crds/operators.coreos.com/operatorcondition_v1.json diff --git a/operators.coreos.com/operatorcondition_v2.json b/crds/operators.coreos.com/operatorcondition_v2.json similarity index 100% rename from operators.coreos.com/operatorcondition_v2.json rename to crds/operators.coreos.com/operatorcondition_v2.json diff --git a/operators.coreos.com/operatorgroup_v1.json b/crds/operators.coreos.com/operatorgroup_v1.json similarity index 100% rename from operators.coreos.com/operatorgroup_v1.json rename to crds/operators.coreos.com/operatorgroup_v1.json diff --git a/operators.coreos.com/operatorgroup_v1alpha2.json b/crds/operators.coreos.com/operatorgroup_v1alpha2.json similarity index 100% rename from operators.coreos.com/operatorgroup_v1alpha2.json rename to crds/operators.coreos.com/operatorgroup_v1alpha2.json diff --git a/operators.coreos.com/subscription_v1alpha1.json b/crds/operators.coreos.com/subscription_v1alpha1.json similarity index 100% rename from operators.coreos.com/subscription_v1alpha1.json rename to crds/operators.coreos.com/subscription_v1alpha1.json diff --git a/organizations.services.k8s.aws/organizationalunit_v1alpha1.json b/crds/organizations.services.k8s.aws/organizationalunit_v1alpha1.json similarity index 100% rename from organizations.services.k8s.aws/organizationalunit_v1alpha1.json rename to crds/organizations.services.k8s.aws/organizationalunit_v1alpha1.json diff --git a/orgpolicy.cnrm.cloud.google.com/orgpolicycustomconstraint_v1alpha1.json b/crds/orgpolicy.cnrm.cloud.google.com/orgpolicycustomconstraint_v1alpha1.json similarity index 100% rename from orgpolicy.cnrm.cloud.google.com/orgpolicycustomconstraint_v1alpha1.json rename to crds/orgpolicy.cnrm.cloud.google.com/orgpolicycustomconstraint_v1alpha1.json diff --git a/osconfig.cnrm.cloud.google.com/osconfigguestpolicy_v1beta1.json b/crds/osconfig.cnrm.cloud.google.com/osconfigguestpolicy_v1beta1.json similarity index 100% rename from osconfig.cnrm.cloud.google.com/osconfigguestpolicy_v1beta1.json rename to crds/osconfig.cnrm.cloud.google.com/osconfigguestpolicy_v1beta1.json diff --git a/osconfig.cnrm.cloud.google.com/osconfigospolicyassignment_v1beta1.json b/crds/osconfig.cnrm.cloud.google.com/osconfigospolicyassignment_v1beta1.json similarity index 100% rename from osconfig.cnrm.cloud.google.com/osconfigospolicyassignment_v1beta1.json rename to crds/osconfig.cnrm.cloud.google.com/osconfigospolicyassignment_v1beta1.json diff --git a/osconfig.cnrm.cloud.google.com/osconfigpatchdeployment_v1alpha1.json b/crds/osconfig.cnrm.cloud.google.com/osconfigpatchdeployment_v1alpha1.json similarity index 100% rename from osconfig.cnrm.cloud.google.com/osconfigpatchdeployment_v1alpha1.json rename to crds/osconfig.cnrm.cloud.google.com/osconfigpatchdeployment_v1alpha1.json diff --git a/oslogin.cnrm.cloud.google.com/osloginsshpublickey_v1alpha1.json b/crds/oslogin.cnrm.cloud.google.com/osloginsshpublickey_v1alpha1.json similarity index 100% rename from oslogin.cnrm.cloud.google.com/osloginsshpublickey_v1alpha1.json rename to crds/oslogin.cnrm.cloud.google.com/osloginsshpublickey_v1alpha1.json diff --git a/packages.eks.amazonaws.com/package_v1alpha1.json b/crds/packages.eks.amazonaws.com/package_v1alpha1.json similarity index 100% rename from packages.eks.amazonaws.com/package_v1alpha1.json rename to crds/packages.eks.amazonaws.com/package_v1alpha1.json diff --git a/packages.eks.amazonaws.com/packagebundle_v1alpha1.json b/crds/packages.eks.amazonaws.com/packagebundle_v1alpha1.json similarity index 100% rename from packages.eks.amazonaws.com/packagebundle_v1alpha1.json rename to crds/packages.eks.amazonaws.com/packagebundle_v1alpha1.json diff --git a/packages.eks.amazonaws.com/packagebundlecontroller_v1alpha1.json b/crds/packages.eks.amazonaws.com/packagebundlecontroller_v1alpha1.json similarity index 100% rename from packages.eks.amazonaws.com/packagebundlecontroller_v1alpha1.json rename to crds/packages.eks.amazonaws.com/packagebundlecontroller_v1alpha1.json diff --git a/pg.percona.com/perconapgbackup_v2beta1.json b/crds/pg.percona.com/perconapgbackup_v2beta1.json similarity index 100% rename from pg.percona.com/perconapgbackup_v2beta1.json rename to crds/pg.percona.com/perconapgbackup_v2beta1.json diff --git a/pg.percona.com/perconapgcluster_v1.json b/crds/pg.percona.com/perconapgcluster_v1.json similarity index 100% rename from pg.percona.com/perconapgcluster_v1.json rename to crds/pg.percona.com/perconapgcluster_v1.json diff --git a/pg.percona.com/perconapgcluster_v2beta1.json b/crds/pg.percona.com/perconapgcluster_v2beta1.json similarity index 100% rename from pg.percona.com/perconapgcluster_v2beta1.json rename to crds/pg.percona.com/perconapgcluster_v2beta1.json diff --git a/pg.percona.com/perconapgrestore_v2beta1.json b/crds/pg.percona.com/perconapgrestore_v2beta1.json similarity index 100% rename from pg.percona.com/perconapgrestore_v2beta1.json rename to crds/pg.percona.com/perconapgrestore_v2beta1.json diff --git a/pg.percona.com/postgrescluster_v1beta1.json b/crds/pg.percona.com/postgrescluster_v1beta1.json similarity index 100% rename from pg.percona.com/postgrescluster_v1beta1.json rename to crds/pg.percona.com/postgrescluster_v1beta1.json diff --git a/pingcap.com/backup_v1alpha1.json b/crds/pingcap.com/backup_v1alpha1.json similarity index 100% rename from pingcap.com/backup_v1alpha1.json rename to crds/pingcap.com/backup_v1alpha1.json diff --git a/pingcap.com/backupschedule_v1alpha1.json b/crds/pingcap.com/backupschedule_v1alpha1.json similarity index 100% rename from pingcap.com/backupschedule_v1alpha1.json rename to crds/pingcap.com/backupschedule_v1alpha1.json diff --git a/pingcap.com/dmcluster_v1alpha1.json b/crds/pingcap.com/dmcluster_v1alpha1.json similarity index 100% rename from pingcap.com/dmcluster_v1alpha1.json rename to crds/pingcap.com/dmcluster_v1alpha1.json diff --git a/pingcap.com/restore_v1alpha1.json b/crds/pingcap.com/restore_v1alpha1.json similarity index 100% rename from pingcap.com/restore_v1alpha1.json rename to crds/pingcap.com/restore_v1alpha1.json diff --git a/pingcap.com/tidbcluster_v1alpha1.json b/crds/pingcap.com/tidbcluster_v1alpha1.json similarity index 100% rename from pingcap.com/tidbcluster_v1alpha1.json rename to crds/pingcap.com/tidbcluster_v1alpha1.json diff --git a/pingcap.com/tidbclusterautoscaler_v1alpha1.json b/crds/pingcap.com/tidbclusterautoscaler_v1alpha1.json similarity index 100% rename from pingcap.com/tidbclusterautoscaler_v1alpha1.json rename to crds/pingcap.com/tidbclusterautoscaler_v1alpha1.json diff --git a/pingcap.com/tidbdashboard_v1alpha1.json b/crds/pingcap.com/tidbdashboard_v1alpha1.json similarity index 100% rename from pingcap.com/tidbdashboard_v1alpha1.json rename to crds/pingcap.com/tidbdashboard_v1alpha1.json diff --git a/pingcap.com/tidbinitializer_v1alpha1.json b/crds/pingcap.com/tidbinitializer_v1alpha1.json similarity index 100% rename from pingcap.com/tidbinitializer_v1alpha1.json rename to crds/pingcap.com/tidbinitializer_v1alpha1.json diff --git a/pingcap.com/tidbmonitor_v1alpha1.json b/crds/pingcap.com/tidbmonitor_v1alpha1.json similarity index 100% rename from pingcap.com/tidbmonitor_v1alpha1.json rename to crds/pingcap.com/tidbmonitor_v1alpha1.json diff --git a/pingcap.com/tidbngmonitoring_v1alpha1.json b/crds/pingcap.com/tidbngmonitoring_v1alpha1.json similarity index 100% rename from pingcap.com/tidbngmonitoring_v1alpha1.json rename to crds/pingcap.com/tidbngmonitoring_v1alpha1.json diff --git a/pipes.services.k8s.aws/pipe_v1alpha1.json b/crds/pipes.services.k8s.aws/pipe_v1alpha1.json similarity index 100% rename from pipes.services.k8s.aws/pipe_v1alpha1.json rename to crds/pipes.services.k8s.aws/pipe_v1alpha1.json diff --git a/pkg.crossplane.io/configuration_v1.json b/crds/pkg.crossplane.io/configuration_v1.json similarity index 100% rename from pkg.crossplane.io/configuration_v1.json rename to crds/pkg.crossplane.io/configuration_v1.json diff --git a/pkg.crossplane.io/configurationrevision_v1.json b/crds/pkg.crossplane.io/configurationrevision_v1.json similarity index 100% rename from pkg.crossplane.io/configurationrevision_v1.json rename to crds/pkg.crossplane.io/configurationrevision_v1.json diff --git a/pkg.crossplane.io/controllerconfig_v1alpha1.json b/crds/pkg.crossplane.io/controllerconfig_v1alpha1.json similarity index 100% rename from pkg.crossplane.io/controllerconfig_v1alpha1.json rename to crds/pkg.crossplane.io/controllerconfig_v1alpha1.json diff --git a/pkg.crossplane.io/deploymentruntimeconfig_v1beta1.json b/crds/pkg.crossplane.io/deploymentruntimeconfig_v1beta1.json similarity index 100% rename from pkg.crossplane.io/deploymentruntimeconfig_v1beta1.json rename to crds/pkg.crossplane.io/deploymentruntimeconfig_v1beta1.json diff --git a/pkg.crossplane.io/function_v1.json b/crds/pkg.crossplane.io/function_v1.json similarity index 100% rename from pkg.crossplane.io/function_v1.json rename to crds/pkg.crossplane.io/function_v1.json diff --git a/pkg.crossplane.io/function_v1beta1.json b/crds/pkg.crossplane.io/function_v1beta1.json similarity index 100% rename from pkg.crossplane.io/function_v1beta1.json rename to crds/pkg.crossplane.io/function_v1beta1.json diff --git a/pkg.crossplane.io/functionrevision_v1.json b/crds/pkg.crossplane.io/functionrevision_v1.json similarity index 100% rename from pkg.crossplane.io/functionrevision_v1.json rename to crds/pkg.crossplane.io/functionrevision_v1.json diff --git a/pkg.crossplane.io/functionrevision_v1beta1.json b/crds/pkg.crossplane.io/functionrevision_v1beta1.json similarity index 100% rename from pkg.crossplane.io/functionrevision_v1beta1.json rename to crds/pkg.crossplane.io/functionrevision_v1beta1.json diff --git a/pkg.crossplane.io/imageconfig_v1beta1.json b/crds/pkg.crossplane.io/imageconfig_v1beta1.json similarity index 100% rename from pkg.crossplane.io/imageconfig_v1beta1.json rename to crds/pkg.crossplane.io/imageconfig_v1beta1.json diff --git a/pkg.crossplane.io/lock_v1alpha1.json b/crds/pkg.crossplane.io/lock_v1alpha1.json similarity index 100% rename from pkg.crossplane.io/lock_v1alpha1.json rename to crds/pkg.crossplane.io/lock_v1alpha1.json diff --git a/pkg.crossplane.io/lock_v1beta1.json b/crds/pkg.crossplane.io/lock_v1beta1.json similarity index 100% rename from pkg.crossplane.io/lock_v1beta1.json rename to crds/pkg.crossplane.io/lock_v1beta1.json diff --git a/pkg.crossplane.io/provider_v1.json b/crds/pkg.crossplane.io/provider_v1.json similarity index 100% rename from pkg.crossplane.io/provider_v1.json rename to crds/pkg.crossplane.io/provider_v1.json diff --git a/pkg.crossplane.io/providerrevision_v1.json b/crds/pkg.crossplane.io/providerrevision_v1.json similarity index 100% rename from pkg.crossplane.io/providerrevision_v1.json rename to crds/pkg.crossplane.io/providerrevision_v1.json diff --git a/platform.confluent.io/clusterlink_v1beta1.json b/crds/platform.confluent.io/clusterlink_v1beta1.json similarity index 100% rename from platform.confluent.io/clusterlink_v1beta1.json rename to crds/platform.confluent.io/clusterlink_v1beta1.json diff --git a/platform.confluent.io/confluentrolebinding_v1beta1.json b/crds/platform.confluent.io/confluentrolebinding_v1beta1.json similarity index 100% rename from platform.confluent.io/confluentrolebinding_v1beta1.json rename to crds/platform.confluent.io/confluentrolebinding_v1beta1.json diff --git a/platform.confluent.io/connect_v1beta1.json b/crds/platform.confluent.io/connect_v1beta1.json similarity index 100% rename from platform.confluent.io/connect_v1beta1.json rename to crds/platform.confluent.io/connect_v1beta1.json diff --git a/platform.confluent.io/connector_v1beta1.json b/crds/platform.confluent.io/connector_v1beta1.json similarity index 100% rename from platform.confluent.io/connector_v1beta1.json rename to crds/platform.confluent.io/connector_v1beta1.json diff --git a/platform.confluent.io/controlcenter_v1beta1.json b/crds/platform.confluent.io/controlcenter_v1beta1.json similarity index 100% rename from platform.confluent.io/controlcenter_v1beta1.json rename to crds/platform.confluent.io/controlcenter_v1beta1.json diff --git a/platform.confluent.io/kafka_v1beta1.json b/crds/platform.confluent.io/kafka_v1beta1.json similarity index 100% rename from platform.confluent.io/kafka_v1beta1.json rename to crds/platform.confluent.io/kafka_v1beta1.json diff --git a/platform.confluent.io/kafkarestclass_v1beta1.json b/crds/platform.confluent.io/kafkarestclass_v1beta1.json similarity index 100% rename from platform.confluent.io/kafkarestclass_v1beta1.json rename to crds/platform.confluent.io/kafkarestclass_v1beta1.json diff --git a/platform.confluent.io/kafkarestproxy_v1beta1.json b/crds/platform.confluent.io/kafkarestproxy_v1beta1.json similarity index 100% rename from platform.confluent.io/kafkarestproxy_v1beta1.json rename to crds/platform.confluent.io/kafkarestproxy_v1beta1.json diff --git a/platform.confluent.io/kafkatopic_v1beta1.json b/crds/platform.confluent.io/kafkatopic_v1beta1.json similarity index 100% rename from platform.confluent.io/kafkatopic_v1beta1.json rename to crds/platform.confluent.io/kafkatopic_v1beta1.json diff --git a/platform.confluent.io/kraftcontroller_v1beta1.json b/crds/platform.confluent.io/kraftcontroller_v1beta1.json similarity index 100% rename from platform.confluent.io/kraftcontroller_v1beta1.json rename to crds/platform.confluent.io/kraftcontroller_v1beta1.json diff --git a/platform.confluent.io/ksqldb_v1beta1.json b/crds/platform.confluent.io/ksqldb_v1beta1.json similarity index 100% rename from platform.confluent.io/ksqldb_v1beta1.json rename to crds/platform.confluent.io/ksqldb_v1beta1.json diff --git a/platform.confluent.io/schema_v1beta1.json b/crds/platform.confluent.io/schema_v1beta1.json similarity index 100% rename from platform.confluent.io/schema_v1beta1.json rename to crds/platform.confluent.io/schema_v1beta1.json diff --git a/platform.confluent.io/schemaexporter_v1beta1.json b/crds/platform.confluent.io/schemaexporter_v1beta1.json similarity index 100% rename from platform.confluent.io/schemaexporter_v1beta1.json rename to crds/platform.confluent.io/schemaexporter_v1beta1.json diff --git a/platform.confluent.io/schemaregistry_v1beta1.json b/crds/platform.confluent.io/schemaregistry_v1beta1.json similarity index 100% rename from platform.confluent.io/schemaregistry_v1beta1.json rename to crds/platform.confluent.io/schemaregistry_v1beta1.json diff --git a/platform.confluent.io/zookeeper_v1beta1.json b/crds/platform.confluent.io/zookeeper_v1beta1.json similarity index 100% rename from platform.confluent.io/zookeeper_v1beta1.json rename to crds/platform.confluent.io/zookeeper_v1beta1.json diff --git a/policy.cert-manager.io/certificaterequestpolicy_v1alpha1.json b/crds/policy.cert-manager.io/certificaterequestpolicy_v1alpha1.json similarity index 100% rename from policy.cert-manager.io/certificaterequestpolicy_v1alpha1.json rename to crds/policy.cert-manager.io/certificaterequestpolicy_v1alpha1.json diff --git a/policy.linkerd.io/authorizationpolicy_v1alpha1.json b/crds/policy.linkerd.io/authorizationpolicy_v1alpha1.json similarity index 100% rename from policy.linkerd.io/authorizationpolicy_v1alpha1.json rename to crds/policy.linkerd.io/authorizationpolicy_v1alpha1.json diff --git a/policy.linkerd.io/httproute_v1.json b/crds/policy.linkerd.io/httproute_v1.json similarity index 100% rename from policy.linkerd.io/httproute_v1.json rename to crds/policy.linkerd.io/httproute_v1.json diff --git a/policy.linkerd.io/httproute_v1alpha1.json b/crds/policy.linkerd.io/httproute_v1alpha1.json similarity index 100% rename from policy.linkerd.io/httproute_v1alpha1.json rename to crds/policy.linkerd.io/httproute_v1alpha1.json diff --git a/policy.linkerd.io/httproute_v1beta1.json b/crds/policy.linkerd.io/httproute_v1beta1.json similarity index 100% rename from policy.linkerd.io/httproute_v1beta1.json rename to crds/policy.linkerd.io/httproute_v1beta1.json diff --git a/policy.linkerd.io/httproute_v1beta2.json b/crds/policy.linkerd.io/httproute_v1beta2.json similarity index 100% rename from policy.linkerd.io/httproute_v1beta2.json rename to crds/policy.linkerd.io/httproute_v1beta2.json diff --git a/policy.linkerd.io/httproute_v1beta3.json b/crds/policy.linkerd.io/httproute_v1beta3.json similarity index 100% rename from policy.linkerd.io/httproute_v1beta3.json rename to crds/policy.linkerd.io/httproute_v1beta3.json diff --git a/policy.linkerd.io/meshtlsauthentication_v1alpha1.json b/crds/policy.linkerd.io/meshtlsauthentication_v1alpha1.json similarity index 100% rename from policy.linkerd.io/meshtlsauthentication_v1alpha1.json rename to crds/policy.linkerd.io/meshtlsauthentication_v1alpha1.json diff --git a/policy.linkerd.io/networkauthentication_v1alpha1.json b/crds/policy.linkerd.io/networkauthentication_v1alpha1.json similarity index 100% rename from policy.linkerd.io/networkauthentication_v1alpha1.json rename to crds/policy.linkerd.io/networkauthentication_v1alpha1.json diff --git a/policy.linkerd.io/server_v1alpha1.json b/crds/policy.linkerd.io/server_v1alpha1.json similarity index 100% rename from policy.linkerd.io/server_v1alpha1.json rename to crds/policy.linkerd.io/server_v1alpha1.json diff --git a/policy.linkerd.io/server_v1beta1.json b/crds/policy.linkerd.io/server_v1beta1.json similarity index 100% rename from policy.linkerd.io/server_v1beta1.json rename to crds/policy.linkerd.io/server_v1beta1.json diff --git a/policy.linkerd.io/serverauthorization_v1alpha1.json b/crds/policy.linkerd.io/serverauthorization_v1alpha1.json similarity index 100% rename from policy.linkerd.io/serverauthorization_v1alpha1.json rename to crds/policy.linkerd.io/serverauthorization_v1alpha1.json diff --git a/policy.linkerd.io/serverauthorization_v1beta1.json b/crds/policy.linkerd.io/serverauthorization_v1beta1.json similarity index 100% rename from policy.linkerd.io/serverauthorization_v1beta1.json rename to crds/policy.linkerd.io/serverauthorization_v1beta1.json diff --git a/policy.sigstore.dev/clusterimagepolicy_v1alpha1.json b/crds/policy.sigstore.dev/clusterimagepolicy_v1alpha1.json similarity index 100% rename from policy.sigstore.dev/clusterimagepolicy_v1alpha1.json rename to crds/policy.sigstore.dev/clusterimagepolicy_v1alpha1.json diff --git a/policy.sigstore.dev/clusterimagepolicy_v1beta1.json b/crds/policy.sigstore.dev/clusterimagepolicy_v1beta1.json similarity index 100% rename from policy.sigstore.dev/clusterimagepolicy_v1beta1.json rename to crds/policy.sigstore.dev/clusterimagepolicy_v1beta1.json diff --git a/policy.sigstore.dev/trustroot_v1alpha1.json b/crds/policy.sigstore.dev/trustroot_v1alpha1.json similarity index 100% rename from policy.sigstore.dev/trustroot_v1alpha1.json rename to crds/policy.sigstore.dev/trustroot_v1alpha1.json diff --git a/postgres-operator.crunchydata.com/pgadmin_v1beta1.json b/crds/postgres-operator.crunchydata.com/pgadmin_v1beta1.json similarity index 100% rename from postgres-operator.crunchydata.com/pgadmin_v1beta1.json rename to crds/postgres-operator.crunchydata.com/pgadmin_v1beta1.json diff --git a/postgres-operator.crunchydata.com/pgupgrade_v1beta1.json b/crds/postgres-operator.crunchydata.com/pgupgrade_v1beta1.json similarity index 100% rename from postgres-operator.crunchydata.com/pgupgrade_v1beta1.json rename to crds/postgres-operator.crunchydata.com/pgupgrade_v1beta1.json diff --git a/postgres-operator.crunchydata.com/postgrescluster_v1beta1.json b/crds/postgres-operator.crunchydata.com/postgrescluster_v1beta1.json similarity index 100% rename from postgres-operator.crunchydata.com/postgrescluster_v1beta1.json rename to crds/postgres-operator.crunchydata.com/postgrescluster_v1beta1.json diff --git a/postgresql.cnpg.io/backup_v1.json b/crds/postgresql.cnpg.io/backup_v1.json similarity index 100% rename from postgresql.cnpg.io/backup_v1.json rename to crds/postgresql.cnpg.io/backup_v1.json diff --git a/postgresql.cnpg.io/cluster_v1.json b/crds/postgresql.cnpg.io/cluster_v1.json similarity index 100% rename from postgresql.cnpg.io/cluster_v1.json rename to crds/postgresql.cnpg.io/cluster_v1.json diff --git a/postgresql.cnpg.io/cluster_v3.json b/crds/postgresql.cnpg.io/cluster_v3.json similarity index 100% rename from postgresql.cnpg.io/cluster_v3.json rename to crds/postgresql.cnpg.io/cluster_v3.json diff --git a/postgresql.cnpg.io/clusterimagecatalog_v1.json b/crds/postgresql.cnpg.io/clusterimagecatalog_v1.json similarity index 100% rename from postgresql.cnpg.io/clusterimagecatalog_v1.json rename to crds/postgresql.cnpg.io/clusterimagecatalog_v1.json diff --git a/postgresql.cnpg.io/database_v1.json b/crds/postgresql.cnpg.io/database_v1.json similarity index 100% rename from postgresql.cnpg.io/database_v1.json rename to crds/postgresql.cnpg.io/database_v1.json diff --git a/postgresql.cnpg.io/imagecatalog_v1.json b/crds/postgresql.cnpg.io/imagecatalog_v1.json similarity index 100% rename from postgresql.cnpg.io/imagecatalog_v1.json rename to crds/postgresql.cnpg.io/imagecatalog_v1.json diff --git a/postgresql.cnpg.io/pooler_v1.json b/crds/postgresql.cnpg.io/pooler_v1.json similarity index 100% rename from postgresql.cnpg.io/pooler_v1.json rename to crds/postgresql.cnpg.io/pooler_v1.json diff --git a/postgresql.cnpg.io/publication_v1.json b/crds/postgresql.cnpg.io/publication_v1.json similarity index 100% rename from postgresql.cnpg.io/publication_v1.json rename to crds/postgresql.cnpg.io/publication_v1.json diff --git a/postgresql.cnpg.io/scheduledbackup_v1.json b/crds/postgresql.cnpg.io/scheduledbackup_v1.json similarity index 100% rename from postgresql.cnpg.io/scheduledbackup_v1.json rename to crds/postgresql.cnpg.io/scheduledbackup_v1.json diff --git a/postgresql.cnpg.io/subscription_v1.json b/crds/postgresql.cnpg.io/subscription_v1.json similarity index 100% rename from postgresql.cnpg.io/subscription_v1.json rename to crds/postgresql.cnpg.io/subscription_v1.json diff --git a/privateca.cnrm.cloud.google.com/privatecacapool_v1beta1.json b/crds/privateca.cnrm.cloud.google.com/privatecacapool_v1beta1.json similarity index 100% rename from privateca.cnrm.cloud.google.com/privatecacapool_v1beta1.json rename to crds/privateca.cnrm.cloud.google.com/privatecacapool_v1beta1.json diff --git a/privateca.cnrm.cloud.google.com/privatecacertificate_v1beta1.json b/crds/privateca.cnrm.cloud.google.com/privatecacertificate_v1beta1.json similarity index 100% rename from privateca.cnrm.cloud.google.com/privatecacertificate_v1beta1.json rename to crds/privateca.cnrm.cloud.google.com/privatecacertificate_v1beta1.json diff --git a/privateca.cnrm.cloud.google.com/privatecacertificateauthority_v1beta1.json b/crds/privateca.cnrm.cloud.google.com/privatecacertificateauthority_v1beta1.json similarity index 100% rename from privateca.cnrm.cloud.google.com/privatecacertificateauthority_v1beta1.json rename to crds/privateca.cnrm.cloud.google.com/privatecacertificateauthority_v1beta1.json diff --git a/privateca.cnrm.cloud.google.com/privatecacertificatetemplate_v1beta1.json b/crds/privateca.cnrm.cloud.google.com/privatecacertificatetemplate_v1beta1.json similarity index 100% rename from privateca.cnrm.cloud.google.com/privatecacertificatetemplate_v1beta1.json rename to crds/privateca.cnrm.cloud.google.com/privatecacertificatetemplate_v1beta1.json diff --git a/privilegedaccessmanager.cnrm.cloud.google.com/privilegedaccessmanagerentitlement_v1alpha1.json b/crds/privilegedaccessmanager.cnrm.cloud.google.com/privilegedaccessmanagerentitlement_v1alpha1.json similarity index 100% rename from privilegedaccessmanager.cnrm.cloud.google.com/privilegedaccessmanagerentitlement_v1alpha1.json rename to crds/privilegedaccessmanager.cnrm.cloud.google.com/privilegedaccessmanagerentitlement_v1alpha1.json diff --git a/privilegedaccessmanager.cnrm.cloud.google.com/privilegedaccessmanagerentitlement_v1beta1.json b/crds/privilegedaccessmanager.cnrm.cloud.google.com/privilegedaccessmanagerentitlement_v1beta1.json similarity index 100% rename from privilegedaccessmanager.cnrm.cloud.google.com/privilegedaccessmanagerentitlement_v1beta1.json rename to crds/privilegedaccessmanager.cnrm.cloud.google.com/privilegedaccessmanagerentitlement_v1beta1.json diff --git a/projectcontour.io/contourconfiguration_v1alpha1.json b/crds/projectcontour.io/contourconfiguration_v1alpha1.json similarity index 100% rename from projectcontour.io/contourconfiguration_v1alpha1.json rename to crds/projectcontour.io/contourconfiguration_v1alpha1.json diff --git a/projectcontour.io/contourdeployment_v1alpha1.json b/crds/projectcontour.io/contourdeployment_v1alpha1.json similarity index 100% rename from projectcontour.io/contourdeployment_v1alpha1.json rename to crds/projectcontour.io/contourdeployment_v1alpha1.json diff --git a/projectcontour.io/extensionservice_v1alpha1.json b/crds/projectcontour.io/extensionservice_v1alpha1.json similarity index 100% rename from projectcontour.io/extensionservice_v1alpha1.json rename to crds/projectcontour.io/extensionservice_v1alpha1.json diff --git a/projectcontour.io/httpproxy_v1.json b/crds/projectcontour.io/httpproxy_v1.json similarity index 100% rename from projectcontour.io/httpproxy_v1.json rename to crds/projectcontour.io/httpproxy_v1.json diff --git a/projectcontour.io/tlscertificatedelegation_v1.json b/crds/projectcontour.io/tlscertificatedelegation_v1.json similarity index 100% rename from projectcontour.io/tlscertificatedelegation_v1.json rename to crds/projectcontour.io/tlscertificatedelegation_v1.json diff --git a/prometheusservice.services.k8s.aws/alertmanagerdefinition_v1alpha1.json b/crds/prometheusservice.services.k8s.aws/alertmanagerdefinition_v1alpha1.json similarity index 100% rename from prometheusservice.services.k8s.aws/alertmanagerdefinition_v1alpha1.json rename to crds/prometheusservice.services.k8s.aws/alertmanagerdefinition_v1alpha1.json diff --git a/prometheusservice.services.k8s.aws/loggingconfiguration_v1alpha1.json b/crds/prometheusservice.services.k8s.aws/loggingconfiguration_v1alpha1.json similarity index 100% rename from prometheusservice.services.k8s.aws/loggingconfiguration_v1alpha1.json rename to crds/prometheusservice.services.k8s.aws/loggingconfiguration_v1alpha1.json diff --git a/prometheusservice.services.k8s.aws/rulegroupsnamespace_v1alpha1.json b/crds/prometheusservice.services.k8s.aws/rulegroupsnamespace_v1alpha1.json similarity index 100% rename from prometheusservice.services.k8s.aws/rulegroupsnamespace_v1alpha1.json rename to crds/prometheusservice.services.k8s.aws/rulegroupsnamespace_v1alpha1.json diff --git a/prometheusservice.services.k8s.aws/workspace_v1alpha1.json b/crds/prometheusservice.services.k8s.aws/workspace_v1alpha1.json similarity index 100% rename from prometheusservice.services.k8s.aws/workspace_v1alpha1.json rename to crds/prometheusservice.services.k8s.aws/workspace_v1alpha1.json diff --git a/ps.percona.com/perconaservermysql_v1alpha1.json b/crds/ps.percona.com/perconaservermysql_v1alpha1.json similarity index 100% rename from ps.percona.com/perconaservermysql_v1alpha1.json rename to crds/ps.percona.com/perconaservermysql_v1alpha1.json diff --git a/ps.percona.com/perconaservermysqlbackup_v1alpha1.json b/crds/ps.percona.com/perconaservermysqlbackup_v1alpha1.json similarity index 100% rename from ps.percona.com/perconaservermysqlbackup_v1alpha1.json rename to crds/ps.percona.com/perconaservermysqlbackup_v1alpha1.json diff --git a/ps.percona.com/perconaservermysqlrestore_v1alpha1.json b/crds/ps.percona.com/perconaservermysqlrestore_v1alpha1.json similarity index 100% rename from ps.percona.com/perconaservermysqlrestore_v1alpha1.json rename to crds/ps.percona.com/perconaservermysqlrestore_v1alpha1.json diff --git a/psmdb.percona.com/perconaservermongodb_v1.json b/crds/psmdb.percona.com/perconaservermongodb_v1.json similarity index 100% rename from psmdb.percona.com/perconaservermongodb_v1.json rename to crds/psmdb.percona.com/perconaservermongodb_v1.json diff --git a/psmdb.percona.com/perconaservermongodbbackup_v1.json b/crds/psmdb.percona.com/perconaservermongodbbackup_v1.json similarity index 100% rename from psmdb.percona.com/perconaservermongodbbackup_v1.json rename to crds/psmdb.percona.com/perconaservermongodbbackup_v1.json diff --git a/psmdb.percona.com/perconaservermongodbrestore_v1.json b/crds/psmdb.percona.com/perconaservermongodbrestore_v1.json similarity index 100% rename from psmdb.percona.com/perconaservermongodbrestore_v1.json rename to crds/psmdb.percona.com/perconaservermongodbrestore_v1.json diff --git a/pubsub.cnrm.cloud.google.com/pubsubschema_v1beta1.json b/crds/pubsub.cnrm.cloud.google.com/pubsubschema_v1beta1.json similarity index 100% rename from pubsub.cnrm.cloud.google.com/pubsubschema_v1beta1.json rename to crds/pubsub.cnrm.cloud.google.com/pubsubschema_v1beta1.json diff --git a/pubsub.cnrm.cloud.google.com/pubsubsubscription_v1beta1.json b/crds/pubsub.cnrm.cloud.google.com/pubsubsubscription_v1beta1.json similarity index 100% rename from pubsub.cnrm.cloud.google.com/pubsubsubscription_v1beta1.json rename to crds/pubsub.cnrm.cloud.google.com/pubsubsubscription_v1beta1.json diff --git a/pubsub.cnrm.cloud.google.com/pubsubtopic_v1beta1.json b/crds/pubsub.cnrm.cloud.google.com/pubsubtopic_v1beta1.json similarity index 100% rename from pubsub.cnrm.cloud.google.com/pubsubtopic_v1beta1.json rename to crds/pubsub.cnrm.cloud.google.com/pubsubtopic_v1beta1.json diff --git a/pubsublite.cnrm.cloud.google.com/pubsublitereservation_v1beta1.json b/crds/pubsublite.cnrm.cloud.google.com/pubsublitereservation_v1beta1.json similarity index 100% rename from pubsublite.cnrm.cloud.google.com/pubsublitereservation_v1beta1.json rename to crds/pubsublite.cnrm.cloud.google.com/pubsublitereservation_v1beta1.json diff --git a/pubsublite.cnrm.cloud.google.com/pubsublitesubscription_v1alpha1.json b/crds/pubsublite.cnrm.cloud.google.com/pubsublitesubscription_v1alpha1.json similarity index 100% rename from pubsublite.cnrm.cloud.google.com/pubsublitesubscription_v1alpha1.json rename to crds/pubsublite.cnrm.cloud.google.com/pubsublitesubscription_v1alpha1.json diff --git a/pubsublite.cnrm.cloud.google.com/pubsublitetopic_v1alpha1.json b/crds/pubsublite.cnrm.cloud.google.com/pubsublitetopic_v1alpha1.json similarity index 100% rename from pubsublite.cnrm.cloud.google.com/pubsublitetopic_v1alpha1.json rename to crds/pubsublite.cnrm.cloud.google.com/pubsublitetopic_v1alpha1.json diff --git a/pxc.percona.com/perconaxtradbcluster_v1.json b/crds/pxc.percona.com/perconaxtradbcluster_v1.json similarity index 100% rename from pxc.percona.com/perconaxtradbcluster_v1.json rename to crds/pxc.percona.com/perconaxtradbcluster_v1.json diff --git a/pxc.percona.com/perconaxtradbclusterbackup_v1.json b/crds/pxc.percona.com/perconaxtradbclusterbackup_v1.json similarity index 100% rename from pxc.percona.com/perconaxtradbclusterbackup_v1.json rename to crds/pxc.percona.com/perconaxtradbclusterbackup_v1.json diff --git a/pxc.percona.com/perconaxtradbclusterrestore_v1.json b/crds/pxc.percona.com/perconaxtradbclusterrestore_v1.json similarity index 100% rename from pxc.percona.com/perconaxtradbclusterrestore_v1.json rename to crds/pxc.percona.com/perconaxtradbclusterrestore_v1.json diff --git a/pyrra.dev/servicelevelobjective_v1alpha1.json b/crds/pyrra.dev/servicelevelobjective_v1alpha1.json similarity index 100% rename from pyrra.dev/servicelevelobjective_v1alpha1.json rename to crds/pyrra.dev/servicelevelobjective_v1alpha1.json diff --git a/rabbitmq.com/binding_v1beta1.json b/crds/rabbitmq.com/binding_v1beta1.json similarity index 100% rename from rabbitmq.com/binding_v1beta1.json rename to crds/rabbitmq.com/binding_v1beta1.json diff --git a/rabbitmq.com/exchange_v1beta1.json b/crds/rabbitmq.com/exchange_v1beta1.json similarity index 100% rename from rabbitmq.com/exchange_v1beta1.json rename to crds/rabbitmq.com/exchange_v1beta1.json diff --git a/rabbitmq.com/federation_v1beta1.json b/crds/rabbitmq.com/federation_v1beta1.json similarity index 100% rename from rabbitmq.com/federation_v1beta1.json rename to crds/rabbitmq.com/federation_v1beta1.json diff --git a/rabbitmq.com/permission_v1beta1.json b/crds/rabbitmq.com/permission_v1beta1.json similarity index 100% rename from rabbitmq.com/permission_v1beta1.json rename to crds/rabbitmq.com/permission_v1beta1.json diff --git a/rabbitmq.com/policy_v1beta1.json b/crds/rabbitmq.com/policy_v1beta1.json similarity index 100% rename from rabbitmq.com/policy_v1beta1.json rename to crds/rabbitmq.com/policy_v1beta1.json diff --git a/rabbitmq.com/queue_v1beta1.json b/crds/rabbitmq.com/queue_v1beta1.json similarity index 100% rename from rabbitmq.com/queue_v1beta1.json rename to crds/rabbitmq.com/queue_v1beta1.json diff --git a/rabbitmq.com/rabbitmqcluster_v1beta1.json b/crds/rabbitmq.com/rabbitmqcluster_v1beta1.json similarity index 100% rename from rabbitmq.com/rabbitmqcluster_v1beta1.json rename to crds/rabbitmq.com/rabbitmqcluster_v1beta1.json diff --git a/rabbitmq.com/schemareplication_v1beta1.json b/crds/rabbitmq.com/schemareplication_v1beta1.json similarity index 100% rename from rabbitmq.com/schemareplication_v1beta1.json rename to crds/rabbitmq.com/schemareplication_v1beta1.json diff --git a/rabbitmq.com/shovel_v1beta1.json b/crds/rabbitmq.com/shovel_v1beta1.json similarity index 100% rename from rabbitmq.com/shovel_v1beta1.json rename to crds/rabbitmq.com/shovel_v1beta1.json diff --git a/rabbitmq.com/superstream_v1alpha1.json b/crds/rabbitmq.com/superstream_v1alpha1.json similarity index 100% rename from rabbitmq.com/superstream_v1alpha1.json rename to crds/rabbitmq.com/superstream_v1alpha1.json diff --git a/rabbitmq.com/topicpermission_v1beta1.json b/crds/rabbitmq.com/topicpermission_v1beta1.json similarity index 100% rename from rabbitmq.com/topicpermission_v1beta1.json rename to crds/rabbitmq.com/topicpermission_v1beta1.json diff --git a/rabbitmq.com/user_v1beta1.json b/crds/rabbitmq.com/user_v1beta1.json similarity index 100% rename from rabbitmq.com/user_v1beta1.json rename to crds/rabbitmq.com/user_v1beta1.json diff --git a/rabbitmq.com/vhost_v1beta1.json b/crds/rabbitmq.com/vhost_v1beta1.json similarity index 100% rename from rabbitmq.com/vhost_v1beta1.json rename to crds/rabbitmq.com/vhost_v1beta1.json diff --git a/ratelimit.solo.io/ratelimitconfig_v1alpha1.json b/crds/ratelimit.solo.io/ratelimitconfig_v1alpha1.json similarity index 100% rename from ratelimit.solo.io/ratelimitconfig_v1alpha1.json rename to crds/ratelimit.solo.io/ratelimitconfig_v1alpha1.json diff --git a/rbacmanager.reactiveops.io/rbacdefinition_v1beta1.json b/crds/rbacmanager.reactiveops.io/rbacdefinition_v1beta1.json similarity index 100% rename from rbacmanager.reactiveops.io/rbacdefinition_v1beta1.json rename to crds/rbacmanager.reactiveops.io/rbacdefinition_v1beta1.json diff --git a/rbacmanager.reactiveops.io/rbacdefinitions_v1alpha1.json b/crds/rbacmanager.reactiveops.io/rbacdefinitions_v1alpha1.json similarity index 100% rename from rbacmanager.reactiveops.io/rbacdefinitions_v1alpha1.json rename to crds/rbacmanager.reactiveops.io/rbacdefinitions_v1alpha1.json diff --git a/rds.services.k8s.aws/dbcluster_v1alpha1.json b/crds/rds.services.k8s.aws/dbcluster_v1alpha1.json similarity index 100% rename from rds.services.k8s.aws/dbcluster_v1alpha1.json rename to crds/rds.services.k8s.aws/dbcluster_v1alpha1.json diff --git a/rds.services.k8s.aws/dbclusterparametergroup_v1alpha1.json b/crds/rds.services.k8s.aws/dbclusterparametergroup_v1alpha1.json similarity index 100% rename from rds.services.k8s.aws/dbclusterparametergroup_v1alpha1.json rename to crds/rds.services.k8s.aws/dbclusterparametergroup_v1alpha1.json diff --git a/rds.services.k8s.aws/dbinstance_v1alpha1.json b/crds/rds.services.k8s.aws/dbinstance_v1alpha1.json similarity index 100% rename from rds.services.k8s.aws/dbinstance_v1alpha1.json rename to crds/rds.services.k8s.aws/dbinstance_v1alpha1.json diff --git a/rds.services.k8s.aws/dbparametergroup_v1alpha1.json b/crds/rds.services.k8s.aws/dbparametergroup_v1alpha1.json similarity index 100% rename from rds.services.k8s.aws/dbparametergroup_v1alpha1.json rename to crds/rds.services.k8s.aws/dbparametergroup_v1alpha1.json diff --git a/rds.services.k8s.aws/dbproxy_v1alpha1.json b/crds/rds.services.k8s.aws/dbproxy_v1alpha1.json similarity index 100% rename from rds.services.k8s.aws/dbproxy_v1alpha1.json rename to crds/rds.services.k8s.aws/dbproxy_v1alpha1.json diff --git a/rds.services.k8s.aws/dbsubnetgroup_v1alpha1.json b/crds/rds.services.k8s.aws/dbsubnetgroup_v1alpha1.json similarity index 100% rename from rds.services.k8s.aws/dbsubnetgroup_v1alpha1.json rename to crds/rds.services.k8s.aws/dbsubnetgroup_v1alpha1.json diff --git a/rds.services.k8s.aws/globalcluster_v1alpha1.json b/crds/rds.services.k8s.aws/globalcluster_v1alpha1.json similarity index 100% rename from rds.services.k8s.aws/globalcluster_v1alpha1.json rename to crds/rds.services.k8s.aws/globalcluster_v1alpha1.json diff --git a/recaptchaenterprise.cnrm.cloud.google.com/recaptchaenterprisekey_v1beta1.json b/crds/recaptchaenterprise.cnrm.cloud.google.com/recaptchaenterprisekey_v1beta1.json similarity index 100% rename from recaptchaenterprise.cnrm.cloud.google.com/recaptchaenterprisekey_v1beta1.json rename to crds/recaptchaenterprise.cnrm.cloud.google.com/recaptchaenterprisekey_v1beta1.json diff --git a/redis.cnrm.cloud.google.com/rediscluster_v1alpha1.json b/crds/redis.cnrm.cloud.google.com/rediscluster_v1alpha1.json similarity index 100% rename from redis.cnrm.cloud.google.com/rediscluster_v1alpha1.json rename to crds/redis.cnrm.cloud.google.com/rediscluster_v1alpha1.json diff --git a/redis.cnrm.cloud.google.com/rediscluster_v1beta1.json b/crds/redis.cnrm.cloud.google.com/rediscluster_v1beta1.json similarity index 100% rename from redis.cnrm.cloud.google.com/rediscluster_v1beta1.json rename to crds/redis.cnrm.cloud.google.com/rediscluster_v1beta1.json diff --git a/redis.cnrm.cloud.google.com/redisinstance_v1beta1.json b/crds/redis.cnrm.cloud.google.com/redisinstance_v1beta1.json similarity index 100% rename from redis.cnrm.cloud.google.com/redisinstance_v1beta1.json rename to crds/redis.cnrm.cloud.google.com/redisinstance_v1beta1.json diff --git a/resourcemanager.cnrm.cloud.google.com/folder_v1beta1.json b/crds/resourcemanager.cnrm.cloud.google.com/folder_v1beta1.json similarity index 100% rename from resourcemanager.cnrm.cloud.google.com/folder_v1beta1.json rename to crds/resourcemanager.cnrm.cloud.google.com/folder_v1beta1.json diff --git a/resourcemanager.cnrm.cloud.google.com/project_v1beta1.json b/crds/resourcemanager.cnrm.cloud.google.com/project_v1beta1.json similarity index 100% rename from resourcemanager.cnrm.cloud.google.com/project_v1beta1.json rename to crds/resourcemanager.cnrm.cloud.google.com/project_v1beta1.json diff --git a/resourcemanager.cnrm.cloud.google.com/resourcemanagerlien_v1beta1.json b/crds/resourcemanager.cnrm.cloud.google.com/resourcemanagerlien_v1beta1.json similarity index 100% rename from resourcemanager.cnrm.cloud.google.com/resourcemanagerlien_v1beta1.json rename to crds/resourcemanager.cnrm.cloud.google.com/resourcemanagerlien_v1beta1.json diff --git a/resourcemanager.cnrm.cloud.google.com/resourcemanagerpolicy_v1beta1.json b/crds/resourcemanager.cnrm.cloud.google.com/resourcemanagerpolicy_v1beta1.json similarity index 100% rename from resourcemanager.cnrm.cloud.google.com/resourcemanagerpolicy_v1beta1.json rename to crds/resourcemanager.cnrm.cloud.google.com/resourcemanagerpolicy_v1beta1.json diff --git a/resources.teleport.dev/teleportaccesslist_v1.json b/crds/resources.teleport.dev/teleportaccesslist_v1.json similarity index 100% rename from resources.teleport.dev/teleportaccesslist_v1.json rename to crds/resources.teleport.dev/teleportaccesslist_v1.json diff --git a/resources.teleport.dev/teleportgithubconnector_v3.json b/crds/resources.teleport.dev/teleportgithubconnector_v3.json similarity index 100% rename from resources.teleport.dev/teleportgithubconnector_v3.json rename to crds/resources.teleport.dev/teleportgithubconnector_v3.json diff --git a/resources.teleport.dev/teleportloginrule_v1.json b/crds/resources.teleport.dev/teleportloginrule_v1.json similarity index 100% rename from resources.teleport.dev/teleportloginrule_v1.json rename to crds/resources.teleport.dev/teleportloginrule_v1.json diff --git a/resources.teleport.dev/teleportoidcconnector_v3.json b/crds/resources.teleport.dev/teleportoidcconnector_v3.json similarity index 100% rename from resources.teleport.dev/teleportoidcconnector_v3.json rename to crds/resources.teleport.dev/teleportoidcconnector_v3.json diff --git a/resources.teleport.dev/teleportoktaimportrule_v1.json b/crds/resources.teleport.dev/teleportoktaimportrule_v1.json similarity index 100% rename from resources.teleport.dev/teleportoktaimportrule_v1.json rename to crds/resources.teleport.dev/teleportoktaimportrule_v1.json diff --git a/resources.teleport.dev/teleportopenssheiceserverv2_v1.json b/crds/resources.teleport.dev/teleportopenssheiceserverv2_v1.json similarity index 100% rename from resources.teleport.dev/teleportopenssheiceserverv2_v1.json rename to crds/resources.teleport.dev/teleportopenssheiceserverv2_v1.json diff --git a/resources.teleport.dev/teleportopensshserverv2_v1.json b/crds/resources.teleport.dev/teleportopensshserverv2_v1.json similarity index 100% rename from resources.teleport.dev/teleportopensshserverv2_v1.json rename to crds/resources.teleport.dev/teleportopensshserverv2_v1.json diff --git a/resources.teleport.dev/teleportprovisiontoken_v2.json b/crds/resources.teleport.dev/teleportprovisiontoken_v2.json similarity index 100% rename from resources.teleport.dev/teleportprovisiontoken_v2.json rename to crds/resources.teleport.dev/teleportprovisiontoken_v2.json diff --git a/resources.teleport.dev/teleportrole_v5.json b/crds/resources.teleport.dev/teleportrole_v5.json similarity index 100% rename from resources.teleport.dev/teleportrole_v5.json rename to crds/resources.teleport.dev/teleportrole_v5.json diff --git a/resources.teleport.dev/teleportrole_v6.json b/crds/resources.teleport.dev/teleportrole_v6.json similarity index 100% rename from resources.teleport.dev/teleportrole_v6.json rename to crds/resources.teleport.dev/teleportrole_v6.json diff --git a/resources.teleport.dev/teleportrolev6_v1.json b/crds/resources.teleport.dev/teleportrolev6_v1.json similarity index 100% rename from resources.teleport.dev/teleportrolev6_v1.json rename to crds/resources.teleport.dev/teleportrolev6_v1.json diff --git a/resources.teleport.dev/teleportrolev7_v1.json b/crds/resources.teleport.dev/teleportrolev7_v1.json similarity index 100% rename from resources.teleport.dev/teleportrolev7_v1.json rename to crds/resources.teleport.dev/teleportrolev7_v1.json diff --git a/resources.teleport.dev/teleportsamlconnector_v2.json b/crds/resources.teleport.dev/teleportsamlconnector_v2.json similarity index 100% rename from resources.teleport.dev/teleportsamlconnector_v2.json rename to crds/resources.teleport.dev/teleportsamlconnector_v2.json diff --git a/resources.teleport.dev/teleportuser_v2.json b/crds/resources.teleport.dev/teleportuser_v2.json similarity index 100% rename from resources.teleport.dev/teleportuser_v2.json rename to crds/resources.teleport.dev/teleportuser_v2.json diff --git a/route53.services.k8s.aws/hostedzone_v1alpha1.json b/crds/route53.services.k8s.aws/hostedzone_v1alpha1.json similarity index 100% rename from route53.services.k8s.aws/hostedzone_v1alpha1.json rename to crds/route53.services.k8s.aws/hostedzone_v1alpha1.json diff --git a/run.cnrm.cloud.google.com/runjob_v1beta1.json b/crds/run.cnrm.cloud.google.com/runjob_v1beta1.json similarity index 100% rename from run.cnrm.cloud.google.com/runjob_v1beta1.json rename to crds/run.cnrm.cloud.google.com/runjob_v1beta1.json diff --git a/run.cnrm.cloud.google.com/runservice_v1beta1.json b/crds/run.cnrm.cloud.google.com/runservice_v1beta1.json similarity index 100% rename from run.cnrm.cloud.google.com/runservice_v1beta1.json rename to crds/run.cnrm.cloud.google.com/runservice_v1beta1.json diff --git a/runtime.cluster.x-k8s.io/extensionconfig_v1alpha1.json b/crds/runtime.cluster.x-k8s.io/extensionconfig_v1alpha1.json similarity index 100% rename from runtime.cluster.x-k8s.io/extensionconfig_v1alpha1.json rename to crds/runtime.cluster.x-k8s.io/extensionconfig_v1alpha1.json diff --git a/s3.services.k8s.aws/bucket_v1alpha1.json b/crds/s3.services.k8s.aws/bucket_v1alpha1.json similarity index 100% rename from s3.services.k8s.aws/bucket_v1alpha1.json rename to crds/s3.services.k8s.aws/bucket_v1alpha1.json diff --git a/sagemaker.services.k8s.aws/app_v1alpha1.json b/crds/sagemaker.services.k8s.aws/app_v1alpha1.json similarity index 100% rename from sagemaker.services.k8s.aws/app_v1alpha1.json rename to crds/sagemaker.services.k8s.aws/app_v1alpha1.json diff --git a/sagemaker.services.k8s.aws/dataqualityjobdefinition_v1alpha1.json b/crds/sagemaker.services.k8s.aws/dataqualityjobdefinition_v1alpha1.json similarity index 100% rename from sagemaker.services.k8s.aws/dataqualityjobdefinition_v1alpha1.json rename to crds/sagemaker.services.k8s.aws/dataqualityjobdefinition_v1alpha1.json diff --git a/sagemaker.services.k8s.aws/domain_v1alpha1.json b/crds/sagemaker.services.k8s.aws/domain_v1alpha1.json similarity index 100% rename from sagemaker.services.k8s.aws/domain_v1alpha1.json rename to crds/sagemaker.services.k8s.aws/domain_v1alpha1.json diff --git a/sagemaker.services.k8s.aws/endpoint_v1alpha1.json b/crds/sagemaker.services.k8s.aws/endpoint_v1alpha1.json similarity index 100% rename from sagemaker.services.k8s.aws/endpoint_v1alpha1.json rename to crds/sagemaker.services.k8s.aws/endpoint_v1alpha1.json diff --git a/sagemaker.services.k8s.aws/endpointconfig_v1alpha1.json b/crds/sagemaker.services.k8s.aws/endpointconfig_v1alpha1.json similarity index 100% rename from sagemaker.services.k8s.aws/endpointconfig_v1alpha1.json rename to crds/sagemaker.services.k8s.aws/endpointconfig_v1alpha1.json diff --git a/sagemaker.services.k8s.aws/featuregroup_v1alpha1.json b/crds/sagemaker.services.k8s.aws/featuregroup_v1alpha1.json similarity index 100% rename from sagemaker.services.k8s.aws/featuregroup_v1alpha1.json rename to crds/sagemaker.services.k8s.aws/featuregroup_v1alpha1.json diff --git a/sagemaker.services.k8s.aws/hyperparametertuningjob_v1alpha1.json b/crds/sagemaker.services.k8s.aws/hyperparametertuningjob_v1alpha1.json similarity index 100% rename from sagemaker.services.k8s.aws/hyperparametertuningjob_v1alpha1.json rename to crds/sagemaker.services.k8s.aws/hyperparametertuningjob_v1alpha1.json diff --git a/sagemaker.services.k8s.aws/model_v1alpha1.json b/crds/sagemaker.services.k8s.aws/model_v1alpha1.json similarity index 100% rename from sagemaker.services.k8s.aws/model_v1alpha1.json rename to crds/sagemaker.services.k8s.aws/model_v1alpha1.json diff --git a/sagemaker.services.k8s.aws/modelbiasjobdefinition_v1alpha1.json b/crds/sagemaker.services.k8s.aws/modelbiasjobdefinition_v1alpha1.json similarity index 100% rename from sagemaker.services.k8s.aws/modelbiasjobdefinition_v1alpha1.json rename to crds/sagemaker.services.k8s.aws/modelbiasjobdefinition_v1alpha1.json diff --git a/sagemaker.services.k8s.aws/modelexplainabilityjobdefinition_v1alpha1.json b/crds/sagemaker.services.k8s.aws/modelexplainabilityjobdefinition_v1alpha1.json similarity index 100% rename from sagemaker.services.k8s.aws/modelexplainabilityjobdefinition_v1alpha1.json rename to crds/sagemaker.services.k8s.aws/modelexplainabilityjobdefinition_v1alpha1.json diff --git a/sagemaker.services.k8s.aws/modelpackage_v1alpha1.json b/crds/sagemaker.services.k8s.aws/modelpackage_v1alpha1.json similarity index 100% rename from sagemaker.services.k8s.aws/modelpackage_v1alpha1.json rename to crds/sagemaker.services.k8s.aws/modelpackage_v1alpha1.json diff --git a/sagemaker.services.k8s.aws/modelpackagegroup_v1alpha1.json b/crds/sagemaker.services.k8s.aws/modelpackagegroup_v1alpha1.json similarity index 100% rename from sagemaker.services.k8s.aws/modelpackagegroup_v1alpha1.json rename to crds/sagemaker.services.k8s.aws/modelpackagegroup_v1alpha1.json diff --git a/sagemaker.services.k8s.aws/modelqualityjobdefinition_v1alpha1.json b/crds/sagemaker.services.k8s.aws/modelqualityjobdefinition_v1alpha1.json similarity index 100% rename from sagemaker.services.k8s.aws/modelqualityjobdefinition_v1alpha1.json rename to crds/sagemaker.services.k8s.aws/modelqualityjobdefinition_v1alpha1.json diff --git a/sagemaker.services.k8s.aws/monitoringschedule_v1alpha1.json b/crds/sagemaker.services.k8s.aws/monitoringschedule_v1alpha1.json similarity index 100% rename from sagemaker.services.k8s.aws/monitoringschedule_v1alpha1.json rename to crds/sagemaker.services.k8s.aws/monitoringschedule_v1alpha1.json diff --git a/sagemaker.services.k8s.aws/notebookinstance_v1alpha1.json b/crds/sagemaker.services.k8s.aws/notebookinstance_v1alpha1.json similarity index 100% rename from sagemaker.services.k8s.aws/notebookinstance_v1alpha1.json rename to crds/sagemaker.services.k8s.aws/notebookinstance_v1alpha1.json diff --git a/sagemaker.services.k8s.aws/notebookinstancelifecycleconfig_v1alpha1.json b/crds/sagemaker.services.k8s.aws/notebookinstancelifecycleconfig_v1alpha1.json similarity index 100% rename from sagemaker.services.k8s.aws/notebookinstancelifecycleconfig_v1alpha1.json rename to crds/sagemaker.services.k8s.aws/notebookinstancelifecycleconfig_v1alpha1.json diff --git a/sagemaker.services.k8s.aws/pipeline_v1alpha1.json b/crds/sagemaker.services.k8s.aws/pipeline_v1alpha1.json similarity index 100% rename from sagemaker.services.k8s.aws/pipeline_v1alpha1.json rename to crds/sagemaker.services.k8s.aws/pipeline_v1alpha1.json diff --git a/sagemaker.services.k8s.aws/pipelineexecution_v1alpha1.json b/crds/sagemaker.services.k8s.aws/pipelineexecution_v1alpha1.json similarity index 100% rename from sagemaker.services.k8s.aws/pipelineexecution_v1alpha1.json rename to crds/sagemaker.services.k8s.aws/pipelineexecution_v1alpha1.json diff --git a/sagemaker.services.k8s.aws/processingjob_v1alpha1.json b/crds/sagemaker.services.k8s.aws/processingjob_v1alpha1.json similarity index 100% rename from sagemaker.services.k8s.aws/processingjob_v1alpha1.json rename to crds/sagemaker.services.k8s.aws/processingjob_v1alpha1.json diff --git a/sagemaker.services.k8s.aws/trainingjob_v1alpha1.json b/crds/sagemaker.services.k8s.aws/trainingjob_v1alpha1.json similarity index 100% rename from sagemaker.services.k8s.aws/trainingjob_v1alpha1.json rename to crds/sagemaker.services.k8s.aws/trainingjob_v1alpha1.json diff --git a/sagemaker.services.k8s.aws/transformjob_v1alpha1.json b/crds/sagemaker.services.k8s.aws/transformjob_v1alpha1.json similarity index 100% rename from sagemaker.services.k8s.aws/transformjob_v1alpha1.json rename to crds/sagemaker.services.k8s.aws/transformjob_v1alpha1.json diff --git a/sagemaker.services.k8s.aws/userprofile_v1alpha1.json b/crds/sagemaker.services.k8s.aws/userprofile_v1alpha1.json similarity index 100% rename from sagemaker.services.k8s.aws/userprofile_v1alpha1.json rename to crds/sagemaker.services.k8s.aws/userprofile_v1alpha1.json diff --git a/scylla.scylladb.com/nodeconfig_v1alpha1.json b/crds/scylla.scylladb.com/nodeconfig_v1alpha1.json similarity index 100% rename from scylla.scylladb.com/nodeconfig_v1alpha1.json rename to crds/scylla.scylladb.com/nodeconfig_v1alpha1.json diff --git a/scylla.scylladb.com/scyllacluster_v1.json b/crds/scylla.scylladb.com/scyllacluster_v1.json similarity index 100% rename from scylla.scylladb.com/scyllacluster_v1.json rename to crds/scylla.scylladb.com/scyllacluster_v1.json diff --git a/scylla.scylladb.com/scylladbmonitoring_v1alpha1.json b/crds/scylla.scylladb.com/scylladbmonitoring_v1alpha1.json similarity index 100% rename from scylla.scylladb.com/scylladbmonitoring_v1alpha1.json rename to crds/scylla.scylladb.com/scylladbmonitoring_v1alpha1.json diff --git a/scylla.scylladb.com/scyllaoperatorconfig_v1alpha1.json b/crds/scylla.scylladb.com/scyllaoperatorconfig_v1alpha1.json similarity index 100% rename from scylla.scylladb.com/scyllaoperatorconfig_v1alpha1.json rename to crds/scylla.scylladb.com/scyllaoperatorconfig_v1alpha1.json diff --git a/secretmanager.cnrm.cloud.google.com/secretmanagersecret_v1beta1.json b/crds/secretmanager.cnrm.cloud.google.com/secretmanagersecret_v1beta1.json similarity index 100% rename from secretmanager.cnrm.cloud.google.com/secretmanagersecret_v1beta1.json rename to crds/secretmanager.cnrm.cloud.google.com/secretmanagersecret_v1beta1.json diff --git a/secretmanager.cnrm.cloud.google.com/secretmanagersecretversion_v1beta1.json b/crds/secretmanager.cnrm.cloud.google.com/secretmanagersecretversion_v1beta1.json similarity index 100% rename from secretmanager.cnrm.cloud.google.com/secretmanagersecretversion_v1beta1.json rename to crds/secretmanager.cnrm.cloud.google.com/secretmanagersecretversion_v1beta1.json diff --git a/secrets-store.csi.x-k8s.io/secretproviderclass_v1.json b/crds/secrets-store.csi.x-k8s.io/secretproviderclass_v1.json similarity index 100% rename from secrets-store.csi.x-k8s.io/secretproviderclass_v1.json rename to crds/secrets-store.csi.x-k8s.io/secretproviderclass_v1.json diff --git a/secrets-store.csi.x-k8s.io/secretproviderclass_v1alpha1.json b/crds/secrets-store.csi.x-k8s.io/secretproviderclass_v1alpha1.json similarity index 100% rename from secrets-store.csi.x-k8s.io/secretproviderclass_v1alpha1.json rename to crds/secrets-store.csi.x-k8s.io/secretproviderclass_v1alpha1.json diff --git a/secrets-store.csi.x-k8s.io/secretproviderclasspodstatus_v1.json b/crds/secrets-store.csi.x-k8s.io/secretproviderclasspodstatus_v1.json similarity index 100% rename from secrets-store.csi.x-k8s.io/secretproviderclasspodstatus_v1.json rename to crds/secrets-store.csi.x-k8s.io/secretproviderclasspodstatus_v1.json diff --git a/secrets-store.csi.x-k8s.io/secretproviderclasspodstatus_v1alpha1.json b/crds/secrets-store.csi.x-k8s.io/secretproviderclasspodstatus_v1alpha1.json similarity index 100% rename from secrets-store.csi.x-k8s.io/secretproviderclasspodstatus_v1alpha1.json rename to crds/secrets-store.csi.x-k8s.io/secretproviderclasspodstatus_v1alpha1.json diff --git a/secrets.crossplane.io/storeconfig_v1alpha1.json b/crds/secrets.crossplane.io/storeconfig_v1alpha1.json similarity index 100% rename from secrets.crossplane.io/storeconfig_v1alpha1.json rename to crds/secrets.crossplane.io/storeconfig_v1alpha1.json diff --git a/secrets.doppler.com/dopplersecret_v1alpha1.json b/crds/secrets.doppler.com/dopplersecret_v1alpha1.json similarity index 100% rename from secrets.doppler.com/dopplersecret_v1alpha1.json rename to crds/secrets.doppler.com/dopplersecret_v1alpha1.json diff --git a/secrets.hashicorp.com/hcpauth_v1beta1.json b/crds/secrets.hashicorp.com/hcpauth_v1beta1.json similarity index 100% rename from secrets.hashicorp.com/hcpauth_v1beta1.json rename to crds/secrets.hashicorp.com/hcpauth_v1beta1.json diff --git a/secrets.hashicorp.com/hcpvaultsecretsapp_v1beta1.json b/crds/secrets.hashicorp.com/hcpvaultsecretsapp_v1beta1.json similarity index 100% rename from secrets.hashicorp.com/hcpvaultsecretsapp_v1beta1.json rename to crds/secrets.hashicorp.com/hcpvaultsecretsapp_v1beta1.json diff --git a/secrets.hashicorp.com/secrettransformation_v1beta1.json b/crds/secrets.hashicorp.com/secrettransformation_v1beta1.json similarity index 100% rename from secrets.hashicorp.com/secrettransformation_v1beta1.json rename to crds/secrets.hashicorp.com/secrettransformation_v1beta1.json diff --git a/secrets.hashicorp.com/vaultauth_v1beta1.json b/crds/secrets.hashicorp.com/vaultauth_v1beta1.json similarity index 100% rename from secrets.hashicorp.com/vaultauth_v1beta1.json rename to crds/secrets.hashicorp.com/vaultauth_v1beta1.json diff --git a/secrets.hashicorp.com/vaultconnection_v1beta1.json b/crds/secrets.hashicorp.com/vaultconnection_v1beta1.json similarity index 100% rename from secrets.hashicorp.com/vaultconnection_v1beta1.json rename to crds/secrets.hashicorp.com/vaultconnection_v1beta1.json diff --git a/secrets.hashicorp.com/vaultdynamicsecret_v1beta1.json b/crds/secrets.hashicorp.com/vaultdynamicsecret_v1beta1.json similarity index 100% rename from secrets.hashicorp.com/vaultdynamicsecret_v1beta1.json rename to crds/secrets.hashicorp.com/vaultdynamicsecret_v1beta1.json diff --git a/secrets.hashicorp.com/vaultpkisecret_v1beta1.json b/crds/secrets.hashicorp.com/vaultpkisecret_v1beta1.json similarity index 100% rename from secrets.hashicorp.com/vaultpkisecret_v1beta1.json rename to crds/secrets.hashicorp.com/vaultpkisecret_v1beta1.json diff --git a/secrets.hashicorp.com/vaultstaticsecret_v1beta1.json b/crds/secrets.hashicorp.com/vaultstaticsecret_v1beta1.json similarity index 100% rename from secrets.hashicorp.com/vaultstaticsecret_v1beta1.json rename to crds/secrets.hashicorp.com/vaultstaticsecret_v1beta1.json diff --git a/securesourcemanager.cnrm.cloud.google.com/securesourcemanagerinstance_v1alpha1.json b/crds/securesourcemanager.cnrm.cloud.google.com/securesourcemanagerinstance_v1alpha1.json similarity index 100% rename from securesourcemanager.cnrm.cloud.google.com/securesourcemanagerinstance_v1alpha1.json rename to crds/securesourcemanager.cnrm.cloud.google.com/securesourcemanagerinstance_v1alpha1.json diff --git a/securesourcemanager.cnrm.cloud.google.com/securesourcemanagerrepository_v1alpha1.json b/crds/securesourcemanager.cnrm.cloud.google.com/securesourcemanagerrepository_v1alpha1.json similarity index 100% rename from securesourcemanager.cnrm.cloud.google.com/securesourcemanagerrepository_v1alpha1.json rename to crds/securesourcemanager.cnrm.cloud.google.com/securesourcemanagerrepository_v1alpha1.json diff --git a/security.istio.io/authorizationpolicy_v1.json b/crds/security.istio.io/authorizationpolicy_v1.json similarity index 100% rename from security.istio.io/authorizationpolicy_v1.json rename to crds/security.istio.io/authorizationpolicy_v1.json diff --git a/security.istio.io/authorizationpolicy_v1beta1.json b/crds/security.istio.io/authorizationpolicy_v1beta1.json similarity index 100% rename from security.istio.io/authorizationpolicy_v1beta1.json rename to crds/security.istio.io/authorizationpolicy_v1beta1.json diff --git a/security.istio.io/peerauthentication_v1.json b/crds/security.istio.io/peerauthentication_v1.json similarity index 100% rename from security.istio.io/peerauthentication_v1.json rename to crds/security.istio.io/peerauthentication_v1.json diff --git a/security.istio.io/peerauthentication_v1beta1.json b/crds/security.istio.io/peerauthentication_v1beta1.json similarity index 100% rename from security.istio.io/peerauthentication_v1beta1.json rename to crds/security.istio.io/peerauthentication_v1beta1.json diff --git a/security.istio.io/requestauthentication_v1.json b/crds/security.istio.io/requestauthentication_v1.json similarity index 100% rename from security.istio.io/requestauthentication_v1.json rename to crds/security.istio.io/requestauthentication_v1.json diff --git a/security.istio.io/requestauthentication_v1beta1.json b/crds/security.istio.io/requestauthentication_v1beta1.json similarity index 100% rename from security.istio.io/requestauthentication_v1beta1.json rename to crds/security.istio.io/requestauthentication_v1beta1.json diff --git a/securitycenter.cnrm.cloud.google.com/securitycenternotificationconfig_v1alpha1.json b/crds/securitycenter.cnrm.cloud.google.com/securitycenternotificationconfig_v1alpha1.json similarity index 100% rename from securitycenter.cnrm.cloud.google.com/securitycenternotificationconfig_v1alpha1.json rename to crds/securitycenter.cnrm.cloud.google.com/securitycenternotificationconfig_v1alpha1.json diff --git a/securitycenter.cnrm.cloud.google.com/securitycentersource_v1alpha1.json b/crds/securitycenter.cnrm.cloud.google.com/securitycentersource_v1alpha1.json similarity index 100% rename from securitycenter.cnrm.cloud.google.com/securitycentersource_v1alpha1.json rename to crds/securitycenter.cnrm.cloud.google.com/securitycentersource_v1alpha1.json diff --git a/servicedirectory.cnrm.cloud.google.com/servicedirectoryendpoint_v1beta1.json b/crds/servicedirectory.cnrm.cloud.google.com/servicedirectoryendpoint_v1beta1.json similarity index 100% rename from servicedirectory.cnrm.cloud.google.com/servicedirectoryendpoint_v1beta1.json rename to crds/servicedirectory.cnrm.cloud.google.com/servicedirectoryendpoint_v1beta1.json diff --git a/servicedirectory.cnrm.cloud.google.com/servicedirectorynamespace_v1beta1.json b/crds/servicedirectory.cnrm.cloud.google.com/servicedirectorynamespace_v1beta1.json similarity index 100% rename from servicedirectory.cnrm.cloud.google.com/servicedirectorynamespace_v1beta1.json rename to crds/servicedirectory.cnrm.cloud.google.com/servicedirectorynamespace_v1beta1.json diff --git a/servicedirectory.cnrm.cloud.google.com/servicedirectoryservice_v1beta1.json b/crds/servicedirectory.cnrm.cloud.google.com/servicedirectoryservice_v1beta1.json similarity index 100% rename from servicedirectory.cnrm.cloud.google.com/servicedirectoryservice_v1beta1.json rename to crds/servicedirectory.cnrm.cloud.google.com/servicedirectoryservice_v1beta1.json diff --git a/servicenetworking.cnrm.cloud.google.com/servicenetworkingconnection_v1beta1.json b/crds/servicenetworking.cnrm.cloud.google.com/servicenetworkingconnection_v1beta1.json similarity index 100% rename from servicenetworking.cnrm.cloud.google.com/servicenetworkingconnection_v1beta1.json rename to crds/servicenetworking.cnrm.cloud.google.com/servicenetworkingconnection_v1beta1.json diff --git a/services.k8s.aws/adoptedresource_v1alpha1.json b/crds/services.k8s.aws/adoptedresource_v1alpha1.json similarity index 100% rename from services.k8s.aws/adoptedresource_v1alpha1.json rename to crds/services.k8s.aws/adoptedresource_v1alpha1.json diff --git a/services.k8s.aws/fieldexport_v1alpha1.json b/crds/services.k8s.aws/fieldexport_v1alpha1.json similarity index 100% rename from services.k8s.aws/fieldexport_v1alpha1.json rename to crds/services.k8s.aws/fieldexport_v1alpha1.json diff --git a/serviceusage.cnrm.cloud.google.com/service_v1beta1.json b/crds/serviceusage.cnrm.cloud.google.com/service_v1beta1.json similarity index 100% rename from serviceusage.cnrm.cloud.google.com/service_v1beta1.json rename to crds/serviceusage.cnrm.cloud.google.com/service_v1beta1.json diff --git a/serviceusage.cnrm.cloud.google.com/serviceidentity_v1beta1.json b/crds/serviceusage.cnrm.cloud.google.com/serviceidentity_v1beta1.json similarity index 100% rename from serviceusage.cnrm.cloud.google.com/serviceidentity_v1beta1.json rename to crds/serviceusage.cnrm.cloud.google.com/serviceidentity_v1beta1.json diff --git a/serviceusage.cnrm.cloud.google.com/serviceusageconsumerquotaoverride_v1alpha1.json b/crds/serviceusage.cnrm.cloud.google.com/serviceusageconsumerquotaoverride_v1alpha1.json similarity index 100% rename from serviceusage.cnrm.cloud.google.com/serviceusageconsumerquotaoverride_v1alpha1.json rename to crds/serviceusage.cnrm.cloud.google.com/serviceusageconsumerquotaoverride_v1alpha1.json diff --git a/serving.kserve.io/clusterservingruntime_v1alpha1.json b/crds/serving.kserve.io/clusterservingruntime_v1alpha1.json similarity index 100% rename from serving.kserve.io/clusterservingruntime_v1alpha1.json rename to crds/serving.kserve.io/clusterservingruntime_v1alpha1.json diff --git a/serving.kserve.io/inferencegraph_v1alpha1.json b/crds/serving.kserve.io/inferencegraph_v1alpha1.json similarity index 100% rename from serving.kserve.io/inferencegraph_v1alpha1.json rename to crds/serving.kserve.io/inferencegraph_v1alpha1.json diff --git a/serving.kserve.io/inferenceservice_v1beta1.json b/crds/serving.kserve.io/inferenceservice_v1beta1.json similarity index 100% rename from serving.kserve.io/inferenceservice_v1beta1.json rename to crds/serving.kserve.io/inferenceservice_v1beta1.json diff --git a/serving.kserve.io/servingruntime_v1alpha1.json b/crds/serving.kserve.io/servingruntime_v1alpha1.json similarity index 100% rename from serving.kserve.io/servingruntime_v1alpha1.json rename to crds/serving.kserve.io/servingruntime_v1alpha1.json diff --git a/serving.kserve.io/trainedmodel_v1alpha1.json b/crds/serving.kserve.io/trainedmodel_v1alpha1.json similarity index 100% rename from serving.kserve.io/trainedmodel_v1alpha1.json rename to crds/serving.kserve.io/trainedmodel_v1alpha1.json diff --git a/sfn.services.k8s.aws/activity_v1alpha1.json b/crds/sfn.services.k8s.aws/activity_v1alpha1.json similarity index 100% rename from sfn.services.k8s.aws/activity_v1alpha1.json rename to crds/sfn.services.k8s.aws/activity_v1alpha1.json diff --git a/sfn.services.k8s.aws/statemachine_v1alpha1.json b/crds/sfn.services.k8s.aws/statemachine_v1alpha1.json similarity index 100% rename from sfn.services.k8s.aws/statemachine_v1alpha1.json rename to crds/sfn.services.k8s.aws/statemachine_v1alpha1.json diff --git a/sloth.slok.dev/prometheusservicelevel_v1.json b/crds/sloth.slok.dev/prometheusservicelevel_v1.json similarity index 100% rename from sloth.slok.dev/prometheusservicelevel_v1.json rename to crds/sloth.slok.dev/prometheusservicelevel_v1.json diff --git a/snapscheduler.backube/snapshotschedule_v1.json b/crds/snapscheduler.backube/snapshotschedule_v1.json similarity index 100% rename from snapscheduler.backube/snapshotschedule_v1.json rename to crds/snapscheduler.backube/snapshotschedule_v1.json diff --git a/snapshot.storage.k8s.io/volumesnapshot_v1.json b/crds/snapshot.storage.k8s.io/volumesnapshot_v1.json similarity index 100% rename from snapshot.storage.k8s.io/volumesnapshot_v1.json rename to crds/snapshot.storage.k8s.io/volumesnapshot_v1.json diff --git a/snapshot.storage.k8s.io/volumesnapshot_v1beta1.json b/crds/snapshot.storage.k8s.io/volumesnapshot_v1beta1.json similarity index 100% rename from snapshot.storage.k8s.io/volumesnapshot_v1beta1.json rename to crds/snapshot.storage.k8s.io/volumesnapshot_v1beta1.json diff --git a/snapshot.storage.k8s.io/volumesnapshotclass_v1.json b/crds/snapshot.storage.k8s.io/volumesnapshotclass_v1.json similarity index 100% rename from snapshot.storage.k8s.io/volumesnapshotclass_v1.json rename to crds/snapshot.storage.k8s.io/volumesnapshotclass_v1.json diff --git a/snapshot.storage.k8s.io/volumesnapshotclass_v1beta1.json b/crds/snapshot.storage.k8s.io/volumesnapshotclass_v1beta1.json similarity index 100% rename from snapshot.storage.k8s.io/volumesnapshotclass_v1beta1.json rename to crds/snapshot.storage.k8s.io/volumesnapshotclass_v1beta1.json diff --git a/snapshot.storage.k8s.io/volumesnapshotcontent_v1.json b/crds/snapshot.storage.k8s.io/volumesnapshotcontent_v1.json similarity index 100% rename from snapshot.storage.k8s.io/volumesnapshotcontent_v1.json rename to crds/snapshot.storage.k8s.io/volumesnapshotcontent_v1.json diff --git a/snapshot.storage.k8s.io/volumesnapshotcontent_v1beta1.json b/crds/snapshot.storage.k8s.io/volumesnapshotcontent_v1beta1.json similarity index 100% rename from snapshot.storage.k8s.io/volumesnapshotcontent_v1beta1.json rename to crds/snapshot.storage.k8s.io/volumesnapshotcontent_v1beta1.json diff --git a/sns.services.k8s.aws/platformapplication_v1alpha1.json b/crds/sns.services.k8s.aws/platformapplication_v1alpha1.json similarity index 100% rename from sns.services.k8s.aws/platformapplication_v1alpha1.json rename to crds/sns.services.k8s.aws/platformapplication_v1alpha1.json diff --git a/sns.services.k8s.aws/platformendpoint_v1alpha1.json b/crds/sns.services.k8s.aws/platformendpoint_v1alpha1.json similarity index 100% rename from sns.services.k8s.aws/platformendpoint_v1alpha1.json rename to crds/sns.services.k8s.aws/platformendpoint_v1alpha1.json diff --git a/sns.services.k8s.aws/subscription_v1alpha1.json b/crds/sns.services.k8s.aws/subscription_v1alpha1.json similarity index 100% rename from sns.services.k8s.aws/subscription_v1alpha1.json rename to crds/sns.services.k8s.aws/subscription_v1alpha1.json diff --git a/sns.services.k8s.aws/topic_v1alpha1.json b/crds/sns.services.k8s.aws/topic_v1alpha1.json similarity index 100% rename from sns.services.k8s.aws/topic_v1alpha1.json rename to crds/sns.services.k8s.aws/topic_v1alpha1.json diff --git a/source.toolkit.fluxcd.io/bucket_v1.json b/crds/source.toolkit.fluxcd.io/bucket_v1.json similarity index 100% rename from source.toolkit.fluxcd.io/bucket_v1.json rename to crds/source.toolkit.fluxcd.io/bucket_v1.json diff --git a/source.toolkit.fluxcd.io/bucket_v1beta1.json b/crds/source.toolkit.fluxcd.io/bucket_v1beta1.json similarity index 100% rename from source.toolkit.fluxcd.io/bucket_v1beta1.json rename to crds/source.toolkit.fluxcd.io/bucket_v1beta1.json diff --git a/source.toolkit.fluxcd.io/bucket_v1beta2.json b/crds/source.toolkit.fluxcd.io/bucket_v1beta2.json similarity index 100% rename from source.toolkit.fluxcd.io/bucket_v1beta2.json rename to crds/source.toolkit.fluxcd.io/bucket_v1beta2.json diff --git a/source.toolkit.fluxcd.io/gitrepository_v1.json b/crds/source.toolkit.fluxcd.io/gitrepository_v1.json similarity index 100% rename from source.toolkit.fluxcd.io/gitrepository_v1.json rename to crds/source.toolkit.fluxcd.io/gitrepository_v1.json diff --git a/source.toolkit.fluxcd.io/gitrepository_v1beta1.json b/crds/source.toolkit.fluxcd.io/gitrepository_v1beta1.json similarity index 100% rename from source.toolkit.fluxcd.io/gitrepository_v1beta1.json rename to crds/source.toolkit.fluxcd.io/gitrepository_v1beta1.json diff --git a/source.toolkit.fluxcd.io/gitrepository_v1beta2.json b/crds/source.toolkit.fluxcd.io/gitrepository_v1beta2.json similarity index 100% rename from source.toolkit.fluxcd.io/gitrepository_v1beta2.json rename to crds/source.toolkit.fluxcd.io/gitrepository_v1beta2.json diff --git a/source.toolkit.fluxcd.io/helmchart_v1.json b/crds/source.toolkit.fluxcd.io/helmchart_v1.json similarity index 100% rename from source.toolkit.fluxcd.io/helmchart_v1.json rename to crds/source.toolkit.fluxcd.io/helmchart_v1.json diff --git a/source.toolkit.fluxcd.io/helmchart_v1beta1.json b/crds/source.toolkit.fluxcd.io/helmchart_v1beta1.json similarity index 100% rename from source.toolkit.fluxcd.io/helmchart_v1beta1.json rename to crds/source.toolkit.fluxcd.io/helmchart_v1beta1.json diff --git a/source.toolkit.fluxcd.io/helmchart_v1beta2.json b/crds/source.toolkit.fluxcd.io/helmchart_v1beta2.json similarity index 100% rename from source.toolkit.fluxcd.io/helmchart_v1beta2.json rename to crds/source.toolkit.fluxcd.io/helmchart_v1beta2.json diff --git a/source.toolkit.fluxcd.io/helmrepository_v1.json b/crds/source.toolkit.fluxcd.io/helmrepository_v1.json similarity index 100% rename from source.toolkit.fluxcd.io/helmrepository_v1.json rename to crds/source.toolkit.fluxcd.io/helmrepository_v1.json diff --git a/source.toolkit.fluxcd.io/helmrepository_v1beta1.json b/crds/source.toolkit.fluxcd.io/helmrepository_v1beta1.json similarity index 100% rename from source.toolkit.fluxcd.io/helmrepository_v1beta1.json rename to crds/source.toolkit.fluxcd.io/helmrepository_v1beta1.json diff --git a/source.toolkit.fluxcd.io/helmrepository_v1beta2.json b/crds/source.toolkit.fluxcd.io/helmrepository_v1beta2.json similarity index 100% rename from source.toolkit.fluxcd.io/helmrepository_v1beta2.json rename to crds/source.toolkit.fluxcd.io/helmrepository_v1beta2.json diff --git a/source.toolkit.fluxcd.io/ocirepository_v1beta2.json b/crds/source.toolkit.fluxcd.io/ocirepository_v1beta2.json similarity index 100% rename from source.toolkit.fluxcd.io/ocirepository_v1beta2.json rename to crds/source.toolkit.fluxcd.io/ocirepository_v1beta2.json diff --git a/sourcerepo.cnrm.cloud.google.com/sourcereporepository_v1beta1.json b/crds/sourcerepo.cnrm.cloud.google.com/sourcereporepository_v1beta1.json similarity index 100% rename from sourcerepo.cnrm.cloud.google.com/sourcereporepository_v1beta1.json rename to crds/sourcerepo.cnrm.cloud.google.com/sourcereporepository_v1beta1.json diff --git a/spanner.cnrm.cloud.google.com/spannerdatabase_v1beta1.json b/crds/spanner.cnrm.cloud.google.com/spannerdatabase_v1beta1.json similarity index 100% rename from spanner.cnrm.cloud.google.com/spannerdatabase_v1beta1.json rename to crds/spanner.cnrm.cloud.google.com/spannerdatabase_v1beta1.json diff --git a/spanner.cnrm.cloud.google.com/spannerinstance_v1beta1.json b/crds/spanner.cnrm.cloud.google.com/spannerinstance_v1beta1.json similarity index 100% rename from spanner.cnrm.cloud.google.com/spannerinstance_v1beta1.json rename to crds/spanner.cnrm.cloud.google.com/spannerinstance_v1beta1.json diff --git a/sparkoperator.k8s.io/scheduledsparkapplication_v1beta2.json b/crds/sparkoperator.k8s.io/scheduledsparkapplication_v1beta2.json similarity index 100% rename from sparkoperator.k8s.io/scheduledsparkapplication_v1beta2.json rename to crds/sparkoperator.k8s.io/scheduledsparkapplication_v1beta2.json diff --git a/sparkoperator.k8s.io/sparkapplication_v1beta2.json b/crds/sparkoperator.k8s.io/sparkapplication_v1beta2.json similarity index 100% rename from sparkoperator.k8s.io/sparkapplication_v1beta2.json rename to crds/sparkoperator.k8s.io/sparkapplication_v1beta2.json diff --git a/spv.no/azurekeyvaultsecret_v1.json b/crds/spv.no/azurekeyvaultsecret_v1.json similarity index 100% rename from spv.no/azurekeyvaultsecret_v1.json rename to crds/spv.no/azurekeyvaultsecret_v1.json diff --git a/spv.no/azurekeyvaultsecret_v1alpha1.json b/crds/spv.no/azurekeyvaultsecret_v1alpha1.json similarity index 100% rename from spv.no/azurekeyvaultsecret_v1alpha1.json rename to crds/spv.no/azurekeyvaultsecret_v1alpha1.json diff --git a/spv.no/azurekeyvaultsecret_v2alpha1.json b/crds/spv.no/azurekeyvaultsecret_v2alpha1.json similarity index 100% rename from spv.no/azurekeyvaultsecret_v2alpha1.json rename to crds/spv.no/azurekeyvaultsecret_v2alpha1.json diff --git a/spv.no/azurekeyvaultsecret_v2beta1.json b/crds/spv.no/azurekeyvaultsecret_v2beta1.json similarity index 100% rename from spv.no/azurekeyvaultsecret_v2beta1.json rename to crds/spv.no/azurekeyvaultsecret_v2beta1.json diff --git a/sql.cnrm.cloud.google.com/sqldatabase_v1beta1.json b/crds/sql.cnrm.cloud.google.com/sqldatabase_v1beta1.json similarity index 100% rename from sql.cnrm.cloud.google.com/sqldatabase_v1beta1.json rename to crds/sql.cnrm.cloud.google.com/sqldatabase_v1beta1.json diff --git a/sql.cnrm.cloud.google.com/sqlinstance_v1beta1.json b/crds/sql.cnrm.cloud.google.com/sqlinstance_v1beta1.json similarity index 100% rename from sql.cnrm.cloud.google.com/sqlinstance_v1beta1.json rename to crds/sql.cnrm.cloud.google.com/sqlinstance_v1beta1.json diff --git a/sql.cnrm.cloud.google.com/sqlsslcert_v1beta1.json b/crds/sql.cnrm.cloud.google.com/sqlsslcert_v1beta1.json similarity index 100% rename from sql.cnrm.cloud.google.com/sqlsslcert_v1beta1.json rename to crds/sql.cnrm.cloud.google.com/sqlsslcert_v1beta1.json diff --git a/sql.cnrm.cloud.google.com/sqluser_v1beta1.json b/crds/sql.cnrm.cloud.google.com/sqluser_v1beta1.json similarity index 100% rename from sql.cnrm.cloud.google.com/sqluser_v1beta1.json rename to crds/sql.cnrm.cloud.google.com/sqluser_v1beta1.json diff --git a/sqs.services.k8s.aws/queue_v1alpha1.json b/crds/sqs.services.k8s.aws/queue_v1alpha1.json similarity index 100% rename from sqs.services.k8s.aws/queue_v1alpha1.json rename to crds/sqs.services.k8s.aws/queue_v1alpha1.json diff --git a/stackconfigpolicy.k8s.elastic.co/stackconfigpolicy_v1alpha1.json b/crds/stackconfigpolicy.k8s.elastic.co/stackconfigpolicy_v1alpha1.json similarity index 100% rename from stackconfigpolicy.k8s.elastic.co/stackconfigpolicy_v1alpha1.json rename to crds/stackconfigpolicy.k8s.elastic.co/stackconfigpolicy_v1alpha1.json diff --git a/status.gatekeeper.sh/constraintpodstatus_v1beta1.json b/crds/status.gatekeeper.sh/constraintpodstatus_v1beta1.json similarity index 100% rename from status.gatekeeper.sh/constraintpodstatus_v1beta1.json rename to crds/status.gatekeeper.sh/constraintpodstatus_v1beta1.json diff --git a/status.gatekeeper.sh/constrainttemplatepodstatus_v1beta1.json b/crds/status.gatekeeper.sh/constrainttemplatepodstatus_v1beta1.json similarity index 100% rename from status.gatekeeper.sh/constrainttemplatepodstatus_v1beta1.json rename to crds/status.gatekeeper.sh/constrainttemplatepodstatus_v1beta1.json diff --git a/status.gatekeeper.sh/expansiontemplatepodstatus_v1beta1.json b/crds/status.gatekeeper.sh/expansiontemplatepodstatus_v1beta1.json similarity index 100% rename from status.gatekeeper.sh/expansiontemplatepodstatus_v1beta1.json rename to crds/status.gatekeeper.sh/expansiontemplatepodstatus_v1beta1.json diff --git a/status.gatekeeper.sh/mutatorpodstatus_v1beta1.json b/crds/status.gatekeeper.sh/mutatorpodstatus_v1beta1.json similarity index 100% rename from status.gatekeeper.sh/mutatorpodstatus_v1beta1.json rename to crds/status.gatekeeper.sh/mutatorpodstatus_v1beta1.json diff --git a/storage.cnrm.cloud.google.com/storagebucket_v1beta1.json b/crds/storage.cnrm.cloud.google.com/storagebucket_v1beta1.json similarity index 100% rename from storage.cnrm.cloud.google.com/storagebucket_v1beta1.json rename to crds/storage.cnrm.cloud.google.com/storagebucket_v1beta1.json diff --git a/storage.cnrm.cloud.google.com/storagebucketaccesscontrol_v1beta1.json b/crds/storage.cnrm.cloud.google.com/storagebucketaccesscontrol_v1beta1.json similarity index 100% rename from storage.cnrm.cloud.google.com/storagebucketaccesscontrol_v1beta1.json rename to crds/storage.cnrm.cloud.google.com/storagebucketaccesscontrol_v1beta1.json diff --git a/storage.cnrm.cloud.google.com/storagedefaultobjectaccesscontrol_v1beta1.json b/crds/storage.cnrm.cloud.google.com/storagedefaultobjectaccesscontrol_v1beta1.json similarity index 100% rename from storage.cnrm.cloud.google.com/storagedefaultobjectaccesscontrol_v1beta1.json rename to crds/storage.cnrm.cloud.google.com/storagedefaultobjectaccesscontrol_v1beta1.json diff --git a/storage.cnrm.cloud.google.com/storagehmackey_v1alpha1.json b/crds/storage.cnrm.cloud.google.com/storagehmackey_v1alpha1.json similarity index 100% rename from storage.cnrm.cloud.google.com/storagehmackey_v1alpha1.json rename to crds/storage.cnrm.cloud.google.com/storagehmackey_v1alpha1.json diff --git a/storage.cnrm.cloud.google.com/storagenotification_v1beta1.json b/crds/storage.cnrm.cloud.google.com/storagenotification_v1beta1.json similarity index 100% rename from storage.cnrm.cloud.google.com/storagenotification_v1beta1.json rename to crds/storage.cnrm.cloud.google.com/storagenotification_v1beta1.json diff --git a/storagetransfer.cnrm.cloud.google.com/storagetransferagentpool_v1alpha1.json b/crds/storagetransfer.cnrm.cloud.google.com/storagetransferagentpool_v1alpha1.json similarity index 100% rename from storagetransfer.cnrm.cloud.google.com/storagetransferagentpool_v1alpha1.json rename to crds/storagetransfer.cnrm.cloud.google.com/storagetransferagentpool_v1alpha1.json diff --git a/storagetransfer.cnrm.cloud.google.com/storagetransferjob_v1beta1.json b/crds/storagetransfer.cnrm.cloud.google.com/storagetransferjob_v1beta1.json similarity index 100% rename from storagetransfer.cnrm.cloud.google.com/storagetransferjob_v1beta1.json rename to crds/storagetransfer.cnrm.cloud.google.com/storagetransferjob_v1beta1.json diff --git a/sts.min.io/policybinding_v1alpha1.json b/crds/sts.min.io/policybinding_v1alpha1.json similarity index 100% rename from sts.min.io/policybinding_v1alpha1.json rename to crds/sts.min.io/policybinding_v1alpha1.json diff --git a/sts.min.io/policybinding_v1beta1.json b/crds/sts.min.io/policybinding_v1beta1.json similarity index 100% rename from sts.min.io/policybinding_v1beta1.json rename to crds/sts.min.io/policybinding_v1beta1.json diff --git a/syncset.gatekeeper.sh/syncset_v1alpha1.json b/crds/syncset.gatekeeper.sh/syncset_v1alpha1.json similarity index 100% rename from syncset.gatekeeper.sh/syncset_v1alpha1.json rename to crds/syncset.gatekeeper.sh/syncset_v1alpha1.json diff --git a/tags.cnrm.cloud.google.com/tagslocationtagbinding_v1alpha1.json b/crds/tags.cnrm.cloud.google.com/tagslocationtagbinding_v1alpha1.json similarity index 100% rename from tags.cnrm.cloud.google.com/tagslocationtagbinding_v1alpha1.json rename to crds/tags.cnrm.cloud.google.com/tagslocationtagbinding_v1alpha1.json diff --git a/tags.cnrm.cloud.google.com/tagstagbinding_v1beta1.json b/crds/tags.cnrm.cloud.google.com/tagstagbinding_v1beta1.json similarity index 100% rename from tags.cnrm.cloud.google.com/tagstagbinding_v1beta1.json rename to crds/tags.cnrm.cloud.google.com/tagstagbinding_v1beta1.json diff --git a/tags.cnrm.cloud.google.com/tagstagkey_v1beta1.json b/crds/tags.cnrm.cloud.google.com/tagstagkey_v1beta1.json similarity index 100% rename from tags.cnrm.cloud.google.com/tagstagkey_v1beta1.json rename to crds/tags.cnrm.cloud.google.com/tagstagkey_v1beta1.json diff --git a/tags.cnrm.cloud.google.com/tagstagvalue_v1beta1.json b/crds/tags.cnrm.cloud.google.com/tagstagvalue_v1beta1.json similarity index 100% rename from tags.cnrm.cloud.google.com/tagstagvalue_v1beta1.json rename to crds/tags.cnrm.cloud.google.com/tagstagvalue_v1beta1.json diff --git a/telemetry.istio.io/telemetry_v1.json b/crds/telemetry.istio.io/telemetry_v1.json similarity index 100% rename from telemetry.istio.io/telemetry_v1.json rename to crds/telemetry.istio.io/telemetry_v1.json diff --git a/telemetry.istio.io/telemetry_v1alpha1.json b/crds/telemetry.istio.io/telemetry_v1alpha1.json similarity index 100% rename from telemetry.istio.io/telemetry_v1alpha1.json rename to crds/telemetry.istio.io/telemetry_v1alpha1.json diff --git a/templates.gatekeeper.sh/constrainttemplate_v1.json b/crds/templates.gatekeeper.sh/constrainttemplate_v1.json similarity index 100% rename from templates.gatekeeper.sh/constrainttemplate_v1.json rename to crds/templates.gatekeeper.sh/constrainttemplate_v1.json diff --git a/templates.gatekeeper.sh/constrainttemplate_v1alpha1.json b/crds/templates.gatekeeper.sh/constrainttemplate_v1alpha1.json similarity index 100% rename from templates.gatekeeper.sh/constrainttemplate_v1alpha1.json rename to crds/templates.gatekeeper.sh/constrainttemplate_v1alpha1.json diff --git a/templates.gatekeeper.sh/constrainttemplate_v1beta1.json b/crds/templates.gatekeeper.sh/constrainttemplate_v1beta1.json similarity index 100% rename from templates.gatekeeper.sh/constrainttemplate_v1beta1.json rename to crds/templates.gatekeeper.sh/constrainttemplate_v1beta1.json diff --git a/templates.kluctl.io/githubcomment_v1alpha1.json b/crds/templates.kluctl.io/githubcomment_v1alpha1.json similarity index 100% rename from templates.kluctl.io/githubcomment_v1alpha1.json rename to crds/templates.kluctl.io/githubcomment_v1alpha1.json diff --git a/templates.kluctl.io/gitlabcomment_v1alpha1.json b/crds/templates.kluctl.io/gitlabcomment_v1alpha1.json similarity index 100% rename from templates.kluctl.io/gitlabcomment_v1alpha1.json rename to crds/templates.kluctl.io/gitlabcomment_v1alpha1.json diff --git a/templates.kluctl.io/gitprojector_v1alpha1.json b/crds/templates.kluctl.io/gitprojector_v1alpha1.json similarity index 100% rename from templates.kluctl.io/gitprojector_v1alpha1.json rename to crds/templates.kluctl.io/gitprojector_v1alpha1.json diff --git a/templates.kluctl.io/listgithubpullrequests_v1alpha1.json b/crds/templates.kluctl.io/listgithubpullrequests_v1alpha1.json similarity index 100% rename from templates.kluctl.io/listgithubpullrequests_v1alpha1.json rename to crds/templates.kluctl.io/listgithubpullrequests_v1alpha1.json diff --git a/templates.kluctl.io/listgitlabmergerequests_v1alpha1.json b/crds/templates.kluctl.io/listgitlabmergerequests_v1alpha1.json similarity index 100% rename from templates.kluctl.io/listgitlabmergerequests_v1alpha1.json rename to crds/templates.kluctl.io/listgitlabmergerequests_v1alpha1.json diff --git a/templates.kluctl.io/objecthandler_v1alpha1.json b/crds/templates.kluctl.io/objecthandler_v1alpha1.json similarity index 100% rename from templates.kluctl.io/objecthandler_v1alpha1.json rename to crds/templates.kluctl.io/objecthandler_v1alpha1.json diff --git a/templates.kluctl.io/objecttemplate_v1alpha1.json b/crds/templates.kluctl.io/objecttemplate_v1alpha1.json similarity index 100% rename from templates.kluctl.io/objecttemplate_v1alpha1.json rename to crds/templates.kluctl.io/objecttemplate_v1alpha1.json diff --git a/templates.kluctl.io/texttemplate_v1alpha1.json b/crds/templates.kluctl.io/texttemplate_v1alpha1.json similarity index 100% rename from templates.kluctl.io/texttemplate_v1alpha1.json rename to crds/templates.kluctl.io/texttemplate_v1alpha1.json diff --git a/temporal.io/temporalcluster_v1beta1.json b/crds/temporal.io/temporalcluster_v1beta1.json similarity index 100% rename from temporal.io/temporalcluster_v1beta1.json rename to crds/temporal.io/temporalcluster_v1beta1.json diff --git a/temporal.io/temporalclusterclient_v1beta1.json b/crds/temporal.io/temporalclusterclient_v1beta1.json similarity index 100% rename from temporal.io/temporalclusterclient_v1beta1.json rename to crds/temporal.io/temporalclusterclient_v1beta1.json diff --git a/temporal.io/temporalnamespace_v1beta1.json b/crds/temporal.io/temporalnamespace_v1beta1.json similarity index 100% rename from temporal.io/temporalnamespace_v1beta1.json rename to crds/temporal.io/temporalnamespace_v1beta1.json diff --git a/temporal.io/temporalschedule_v1beta1.json b/crds/temporal.io/temporalschedule_v1beta1.json similarity index 100% rename from temporal.io/temporalschedule_v1beta1.json rename to crds/temporal.io/temporalschedule_v1beta1.json diff --git a/temporal.io/temporalworkerprocess_v1beta1.json b/crds/temporal.io/temporalworkerprocess_v1beta1.json similarity index 100% rename from temporal.io/temporalworkerprocess_v1beta1.json rename to crds/temporal.io/temporalworkerprocess_v1beta1.json diff --git a/tinkerbell.org/hardware_v1alpha1.json b/crds/tinkerbell.org/hardware_v1alpha1.json similarity index 100% rename from tinkerbell.org/hardware_v1alpha1.json rename to crds/tinkerbell.org/hardware_v1alpha1.json diff --git a/tinkerbell.org/template_v1alpha1.json b/crds/tinkerbell.org/template_v1alpha1.json similarity index 100% rename from tinkerbell.org/template_v1alpha1.json rename to crds/tinkerbell.org/template_v1alpha1.json diff --git a/tinkerbell.org/workflow_v1alpha1.json b/crds/tinkerbell.org/workflow_v1alpha1.json similarity index 100% rename from tinkerbell.org/workflow_v1alpha1.json rename to crds/tinkerbell.org/workflow_v1alpha1.json diff --git a/tpu.cnrm.cloud.google.com/tpunode_v1alpha1.json b/crds/tpu.cnrm.cloud.google.com/tpunode_v1alpha1.json similarity index 100% rename from tpu.cnrm.cloud.google.com/tpunode_v1alpha1.json rename to crds/tpu.cnrm.cloud.google.com/tpunode_v1alpha1.json diff --git a/traefik.containo.us/ingressroute_v1alpha1.json b/crds/traefik.containo.us/ingressroute_v1alpha1.json similarity index 100% rename from traefik.containo.us/ingressroute_v1alpha1.json rename to crds/traefik.containo.us/ingressroute_v1alpha1.json diff --git a/traefik.containo.us/ingressroutetcp_v1alpha1.json b/crds/traefik.containo.us/ingressroutetcp_v1alpha1.json similarity index 100% rename from traefik.containo.us/ingressroutetcp_v1alpha1.json rename to crds/traefik.containo.us/ingressroutetcp_v1alpha1.json diff --git a/traefik.containo.us/ingressrouteudp_v1alpha1.json b/crds/traefik.containo.us/ingressrouteudp_v1alpha1.json similarity index 100% rename from traefik.containo.us/ingressrouteudp_v1alpha1.json rename to crds/traefik.containo.us/ingressrouteudp_v1alpha1.json diff --git a/traefik.containo.us/middleware_v1alpha1.json b/crds/traefik.containo.us/middleware_v1alpha1.json similarity index 100% rename from traefik.containo.us/middleware_v1alpha1.json rename to crds/traefik.containo.us/middleware_v1alpha1.json diff --git a/traefik.containo.us/middlewaretcp_v1alpha1.json b/crds/traefik.containo.us/middlewaretcp_v1alpha1.json similarity index 100% rename from traefik.containo.us/middlewaretcp_v1alpha1.json rename to crds/traefik.containo.us/middlewaretcp_v1alpha1.json diff --git a/traefik.containo.us/serverstransport_v1alpha1.json b/crds/traefik.containo.us/serverstransport_v1alpha1.json similarity index 100% rename from traefik.containo.us/serverstransport_v1alpha1.json rename to crds/traefik.containo.us/serverstransport_v1alpha1.json diff --git a/traefik.containo.us/tlsoption_v1alpha1.json b/crds/traefik.containo.us/tlsoption_v1alpha1.json similarity index 100% rename from traefik.containo.us/tlsoption_v1alpha1.json rename to crds/traefik.containo.us/tlsoption_v1alpha1.json diff --git a/traefik.containo.us/tlsstore_v1alpha1.json b/crds/traefik.containo.us/tlsstore_v1alpha1.json similarity index 100% rename from traefik.containo.us/tlsstore_v1alpha1.json rename to crds/traefik.containo.us/tlsstore_v1alpha1.json diff --git a/traefik.containo.us/traefikservice_v1alpha1.json b/crds/traefik.containo.us/traefikservice_v1alpha1.json similarity index 100% rename from traefik.containo.us/traefikservice_v1alpha1.json rename to crds/traefik.containo.us/traefikservice_v1alpha1.json diff --git a/traefik.io/ingressroute_v1alpha1.json b/crds/traefik.io/ingressroute_v1alpha1.json similarity index 100% rename from traefik.io/ingressroute_v1alpha1.json rename to crds/traefik.io/ingressroute_v1alpha1.json diff --git a/traefik.io/ingressroutetcp_v1alpha1.json b/crds/traefik.io/ingressroutetcp_v1alpha1.json similarity index 100% rename from traefik.io/ingressroutetcp_v1alpha1.json rename to crds/traefik.io/ingressroutetcp_v1alpha1.json diff --git a/traefik.io/ingressrouteudp_v1alpha1.json b/crds/traefik.io/ingressrouteudp_v1alpha1.json similarity index 100% rename from traefik.io/ingressrouteudp_v1alpha1.json rename to crds/traefik.io/ingressrouteudp_v1alpha1.json diff --git a/traefik.io/middleware_v1alpha1.json b/crds/traefik.io/middleware_v1alpha1.json similarity index 100% rename from traefik.io/middleware_v1alpha1.json rename to crds/traefik.io/middleware_v1alpha1.json diff --git a/traefik.io/middlewaretcp_v1alpha1.json b/crds/traefik.io/middlewaretcp_v1alpha1.json similarity index 100% rename from traefik.io/middlewaretcp_v1alpha1.json rename to crds/traefik.io/middlewaretcp_v1alpha1.json diff --git a/traefik.io/serverstransport_v1alpha1.json b/crds/traefik.io/serverstransport_v1alpha1.json similarity index 100% rename from traefik.io/serverstransport_v1alpha1.json rename to crds/traefik.io/serverstransport_v1alpha1.json diff --git a/traefik.io/serverstransporttcp_v1alpha1.json b/crds/traefik.io/serverstransporttcp_v1alpha1.json similarity index 100% rename from traefik.io/serverstransporttcp_v1alpha1.json rename to crds/traefik.io/serverstransporttcp_v1alpha1.json diff --git a/traefik.io/tlsoption_v1alpha1.json b/crds/traefik.io/tlsoption_v1alpha1.json similarity index 100% rename from traefik.io/tlsoption_v1alpha1.json rename to crds/traefik.io/tlsoption_v1alpha1.json diff --git a/traefik.io/tlsstore_v1alpha1.json b/crds/traefik.io/tlsstore_v1alpha1.json similarity index 100% rename from traefik.io/tlsstore_v1alpha1.json rename to crds/traefik.io/tlsstore_v1alpha1.json diff --git a/traefik.io/traefikservice_v1alpha1.json b/crds/traefik.io/traefikservice_v1alpha1.json similarity index 100% rename from traefik.io/traefikservice_v1alpha1.json rename to crds/traefik.io/traefikservice_v1alpha1.json diff --git a/trust.cert-manager.io/bundle_v1alpha1.json b/crds/trust.cert-manager.io/bundle_v1alpha1.json similarity index 100% rename from trust.cert-manager.io/bundle_v1alpha1.json rename to crds/trust.cert-manager.io/bundle_v1alpha1.json diff --git a/upgrade.cattle.io/plan_v1.json b/crds/upgrade.cattle.io/plan_v1.json similarity index 100% rename from upgrade.cattle.io/plan_v1.json rename to crds/upgrade.cattle.io/plan_v1.json diff --git a/vault.banzaicloud.com/vault_v1alpha1.json b/crds/vault.banzaicloud.com/vault_v1alpha1.json similarity index 100% rename from vault.banzaicloud.com/vault_v1alpha1.json rename to crds/vault.banzaicloud.com/vault_v1alpha1.json diff --git a/velero.io/backup_v1.json b/crds/velero.io/backup_v1.json similarity index 100% rename from velero.io/backup_v1.json rename to crds/velero.io/backup_v1.json diff --git a/velero.io/backuprepository_v1.json b/crds/velero.io/backuprepository_v1.json similarity index 100% rename from velero.io/backuprepository_v1.json rename to crds/velero.io/backuprepository_v1.json diff --git a/velero.io/backupstoragelocation_v1.json b/crds/velero.io/backupstoragelocation_v1.json similarity index 100% rename from velero.io/backupstoragelocation_v1.json rename to crds/velero.io/backupstoragelocation_v1.json diff --git a/velero.io/datadownload_v2alpha1.json b/crds/velero.io/datadownload_v2alpha1.json similarity index 100% rename from velero.io/datadownload_v2alpha1.json rename to crds/velero.io/datadownload_v2alpha1.json diff --git a/velero.io/dataupload_v2alpha1.json b/crds/velero.io/dataupload_v2alpha1.json similarity index 100% rename from velero.io/dataupload_v2alpha1.json rename to crds/velero.io/dataupload_v2alpha1.json diff --git a/velero.io/deletebackuprequest_v1.json b/crds/velero.io/deletebackuprequest_v1.json similarity index 100% rename from velero.io/deletebackuprequest_v1.json rename to crds/velero.io/deletebackuprequest_v1.json diff --git a/velero.io/downloadrequest_v1.json b/crds/velero.io/downloadrequest_v1.json similarity index 100% rename from velero.io/downloadrequest_v1.json rename to crds/velero.io/downloadrequest_v1.json diff --git a/velero.io/podvolumebackup_v1.json b/crds/velero.io/podvolumebackup_v1.json similarity index 100% rename from velero.io/podvolumebackup_v1.json rename to crds/velero.io/podvolumebackup_v1.json diff --git a/velero.io/podvolumerestore_v1.json b/crds/velero.io/podvolumerestore_v1.json similarity index 100% rename from velero.io/podvolumerestore_v1.json rename to crds/velero.io/podvolumerestore_v1.json diff --git a/velero.io/restore_v1.json b/crds/velero.io/restore_v1.json similarity index 100% rename from velero.io/restore_v1.json rename to crds/velero.io/restore_v1.json diff --git a/velero.io/schedule_v1.json b/crds/velero.io/schedule_v1.json similarity index 100% rename from velero.io/schedule_v1.json rename to crds/velero.io/schedule_v1.json diff --git a/velero.io/serverstatusrequest_v1.json b/crds/velero.io/serverstatusrequest_v1.json similarity index 100% rename from velero.io/serverstatusrequest_v1.json rename to crds/velero.io/serverstatusrequest_v1.json diff --git a/velero.io/volumesnapshotlocation_v1.json b/crds/velero.io/volumesnapshotlocation_v1.json similarity index 100% rename from velero.io/volumesnapshotlocation_v1.json rename to crds/velero.io/volumesnapshotlocation_v1.json diff --git a/vertexai.cnrm.cloud.google.com/vertexaidataset_v1alpha1.json b/crds/vertexai.cnrm.cloud.google.com/vertexaidataset_v1alpha1.json similarity index 100% rename from vertexai.cnrm.cloud.google.com/vertexaidataset_v1alpha1.json rename to crds/vertexai.cnrm.cloud.google.com/vertexaidataset_v1alpha1.json diff --git a/vertexai.cnrm.cloud.google.com/vertexaidataset_v1beta1.json b/crds/vertexai.cnrm.cloud.google.com/vertexaidataset_v1beta1.json similarity index 100% rename from vertexai.cnrm.cloud.google.com/vertexaidataset_v1beta1.json rename to crds/vertexai.cnrm.cloud.google.com/vertexaidataset_v1beta1.json diff --git a/vertexai.cnrm.cloud.google.com/vertexaiendpoint_v1alpha1.json b/crds/vertexai.cnrm.cloud.google.com/vertexaiendpoint_v1alpha1.json similarity index 100% rename from vertexai.cnrm.cloud.google.com/vertexaiendpoint_v1alpha1.json rename to crds/vertexai.cnrm.cloud.google.com/vertexaiendpoint_v1alpha1.json diff --git a/vertexai.cnrm.cloud.google.com/vertexaiendpoint_v1beta1.json b/crds/vertexai.cnrm.cloud.google.com/vertexaiendpoint_v1beta1.json similarity index 100% rename from vertexai.cnrm.cloud.google.com/vertexaiendpoint_v1beta1.json rename to crds/vertexai.cnrm.cloud.google.com/vertexaiendpoint_v1beta1.json diff --git a/vertexai.cnrm.cloud.google.com/vertexaifeaturestore_v1alpha1.json b/crds/vertexai.cnrm.cloud.google.com/vertexaifeaturestore_v1alpha1.json similarity index 100% rename from vertexai.cnrm.cloud.google.com/vertexaifeaturestore_v1alpha1.json rename to crds/vertexai.cnrm.cloud.google.com/vertexaifeaturestore_v1alpha1.json diff --git a/vertexai.cnrm.cloud.google.com/vertexaifeaturestoreentitytype_v1alpha1.json b/crds/vertexai.cnrm.cloud.google.com/vertexaifeaturestoreentitytype_v1alpha1.json similarity index 100% rename from vertexai.cnrm.cloud.google.com/vertexaifeaturestoreentitytype_v1alpha1.json rename to crds/vertexai.cnrm.cloud.google.com/vertexaifeaturestoreentitytype_v1alpha1.json diff --git a/vertexai.cnrm.cloud.google.com/vertexaifeaturestoreentitytypefeature_v1alpha1.json b/crds/vertexai.cnrm.cloud.google.com/vertexaifeaturestoreentitytypefeature_v1alpha1.json similarity index 100% rename from vertexai.cnrm.cloud.google.com/vertexaifeaturestoreentitytypefeature_v1alpha1.json rename to crds/vertexai.cnrm.cloud.google.com/vertexaifeaturestoreentitytypefeature_v1alpha1.json diff --git a/vertexai.cnrm.cloud.google.com/vertexaiindex_v1alpha1.json b/crds/vertexai.cnrm.cloud.google.com/vertexaiindex_v1alpha1.json similarity index 100% rename from vertexai.cnrm.cloud.google.com/vertexaiindex_v1alpha1.json rename to crds/vertexai.cnrm.cloud.google.com/vertexaiindex_v1alpha1.json diff --git a/vertexai.cnrm.cloud.google.com/vertexaiindex_v1beta1.json b/crds/vertexai.cnrm.cloud.google.com/vertexaiindex_v1beta1.json similarity index 100% rename from vertexai.cnrm.cloud.google.com/vertexaiindex_v1beta1.json rename to crds/vertexai.cnrm.cloud.google.com/vertexaiindex_v1beta1.json diff --git a/vertexai.cnrm.cloud.google.com/vertexaiindexendpoint_v1alpha1.json b/crds/vertexai.cnrm.cloud.google.com/vertexaiindexendpoint_v1alpha1.json similarity index 100% rename from vertexai.cnrm.cloud.google.com/vertexaiindexendpoint_v1alpha1.json rename to crds/vertexai.cnrm.cloud.google.com/vertexaiindexendpoint_v1alpha1.json diff --git a/vertexai.cnrm.cloud.google.com/vertexaimetadatastore_v1alpha1.json b/crds/vertexai.cnrm.cloud.google.com/vertexaimetadatastore_v1alpha1.json similarity index 100% rename from vertexai.cnrm.cloud.google.com/vertexaimetadatastore_v1alpha1.json rename to crds/vertexai.cnrm.cloud.google.com/vertexaimetadatastore_v1alpha1.json diff --git a/vertexai.cnrm.cloud.google.com/vertexaitensorboard_v1alpha1.json b/crds/vertexai.cnrm.cloud.google.com/vertexaitensorboard_v1alpha1.json similarity index 100% rename from vertexai.cnrm.cloud.google.com/vertexaitensorboard_v1alpha1.json rename to crds/vertexai.cnrm.cloud.google.com/vertexaitensorboard_v1alpha1.json diff --git a/volsync.backube/replicationdestination_v1alpha1.json b/crds/volsync.backube/replicationdestination_v1alpha1.json similarity index 100% rename from volsync.backube/replicationdestination_v1alpha1.json rename to crds/volsync.backube/replicationdestination_v1alpha1.json diff --git a/volsync.backube/replicationsource_v1alpha1.json b/crds/volsync.backube/replicationsource_v1alpha1.json similarity index 100% rename from volsync.backube/replicationsource_v1alpha1.json rename to crds/volsync.backube/replicationsource_v1alpha1.json diff --git a/vpcaccess.cnrm.cloud.google.com/vpcaccessconnector_v1beta1.json b/crds/vpcaccess.cnrm.cloud.google.com/vpcaccessconnector_v1beta1.json similarity index 100% rename from vpcaccess.cnrm.cloud.google.com/vpcaccessconnector_v1beta1.json rename to crds/vpcaccess.cnrm.cloud.google.com/vpcaccessconnector_v1beta1.json diff --git a/vpcresources.k8s.aws/cninode_v1alpha1.json b/crds/vpcresources.k8s.aws/cninode_v1alpha1.json similarity index 100% rename from vpcresources.k8s.aws/cninode_v1alpha1.json rename to crds/vpcresources.k8s.aws/cninode_v1alpha1.json diff --git a/vpcresources.k8s.aws/securitygrouppolicy_v1beta1.json b/crds/vpcresources.k8s.aws/securitygrouppolicy_v1beta1.json similarity index 100% rename from vpcresources.k8s.aws/securitygrouppolicy_v1beta1.json rename to crds/vpcresources.k8s.aws/securitygrouppolicy_v1beta1.json diff --git a/vshn.appcat.vshn.io/compositemariadbinstance_v1.json b/crds/vshn.appcat.vshn.io/compositemariadbinstance_v1.json similarity index 100% rename from vshn.appcat.vshn.io/compositemariadbinstance_v1.json rename to crds/vshn.appcat.vshn.io/compositemariadbinstance_v1.json diff --git a/vshn.appcat.vshn.io/compositeredisinstance_v1.json b/crds/vshn.appcat.vshn.io/compositeredisinstance_v1.json similarity index 100% rename from vshn.appcat.vshn.io/compositeredisinstance_v1.json rename to crds/vshn.appcat.vshn.io/compositeredisinstance_v1.json diff --git a/vshn.appcat.vshn.io/vshnkeycloak_v1.json b/crds/vshn.appcat.vshn.io/vshnkeycloak_v1.json similarity index 100% rename from vshn.appcat.vshn.io/vshnkeycloak_v1.json rename to crds/vshn.appcat.vshn.io/vshnkeycloak_v1.json diff --git a/vshn.appcat.vshn.io/vshnmariadb_v1.json b/crds/vshn.appcat.vshn.io/vshnmariadb_v1.json similarity index 100% rename from vshn.appcat.vshn.io/vshnmariadb_v1.json rename to crds/vshn.appcat.vshn.io/vshnmariadb_v1.json diff --git a/vshn.appcat.vshn.io/vshnminio_v1.json b/crds/vshn.appcat.vshn.io/vshnminio_v1.json similarity index 100% rename from vshn.appcat.vshn.io/vshnminio_v1.json rename to crds/vshn.appcat.vshn.io/vshnminio_v1.json diff --git a/vshn.appcat.vshn.io/vshnnextcloud_v1.json b/crds/vshn.appcat.vshn.io/vshnnextcloud_v1.json similarity index 100% rename from vshn.appcat.vshn.io/vshnnextcloud_v1.json rename to crds/vshn.appcat.vshn.io/vshnnextcloud_v1.json diff --git a/vshn.appcat.vshn.io/vshnpostgresql_v1.json b/crds/vshn.appcat.vshn.io/vshnpostgresql_v1.json similarity index 100% rename from vshn.appcat.vshn.io/vshnpostgresql_v1.json rename to crds/vshn.appcat.vshn.io/vshnpostgresql_v1.json diff --git a/vshn.appcat.vshn.io/vshnredis_v1.json b/crds/vshn.appcat.vshn.io/vshnredis_v1.json similarity index 100% rename from vshn.appcat.vshn.io/vshnredis_v1.json rename to crds/vshn.appcat.vshn.io/vshnredis_v1.json diff --git a/vshn.appcat.vshn.io/xvshnkeycloak_v1.json b/crds/vshn.appcat.vshn.io/xvshnkeycloak_v1.json similarity index 100% rename from vshn.appcat.vshn.io/xvshnkeycloak_v1.json rename to crds/vshn.appcat.vshn.io/xvshnkeycloak_v1.json diff --git a/vshn.appcat.vshn.io/xvshnmariadb_v1.json b/crds/vshn.appcat.vshn.io/xvshnmariadb_v1.json similarity index 100% rename from vshn.appcat.vshn.io/xvshnmariadb_v1.json rename to crds/vshn.appcat.vshn.io/xvshnmariadb_v1.json diff --git a/vshn.appcat.vshn.io/xvshnminio_v1.json b/crds/vshn.appcat.vshn.io/xvshnminio_v1.json similarity index 100% rename from vshn.appcat.vshn.io/xvshnminio_v1.json rename to crds/vshn.appcat.vshn.io/xvshnminio_v1.json diff --git a/vshn.appcat.vshn.io/xvshnnextcloud_v1.json b/crds/vshn.appcat.vshn.io/xvshnnextcloud_v1.json similarity index 100% rename from vshn.appcat.vshn.io/xvshnnextcloud_v1.json rename to crds/vshn.appcat.vshn.io/xvshnnextcloud_v1.json diff --git a/vshn.appcat.vshn.io/xvshnpostgresql_v1.json b/crds/vshn.appcat.vshn.io/xvshnpostgresql_v1.json similarity index 100% rename from vshn.appcat.vshn.io/xvshnpostgresql_v1.json rename to crds/vshn.appcat.vshn.io/xvshnpostgresql_v1.json diff --git a/vshn.appcat.vshn.io/xvshnredis_v1.json b/crds/vshn.appcat.vshn.io/xvshnredis_v1.json similarity index 100% rename from vshn.appcat.vshn.io/xvshnredis_v1.json rename to crds/vshn.appcat.vshn.io/xvshnredis_v1.json diff --git a/workflows.cnrm.cloud.google.com/workflowsworkflow_v1alpha1.json b/crds/workflows.cnrm.cloud.google.com/workflowsworkflow_v1alpha1.json similarity index 100% rename from workflows.cnrm.cloud.google.com/workflowsworkflow_v1alpha1.json rename to crds/workflows.cnrm.cloud.google.com/workflowsworkflow_v1alpha1.json diff --git a/workstations.cnrm.cloud.google.com/workstationcluster_v1alpha1.json b/crds/workstations.cnrm.cloud.google.com/workstationcluster_v1alpha1.json similarity index 100% rename from workstations.cnrm.cloud.google.com/workstationcluster_v1alpha1.json rename to crds/workstations.cnrm.cloud.google.com/workstationcluster_v1alpha1.json diff --git a/workstations.cnrm.cloud.google.com/workstationcluster_v1beta1.json b/crds/workstations.cnrm.cloud.google.com/workstationcluster_v1beta1.json similarity index 100% rename from workstations.cnrm.cloud.google.com/workstationcluster_v1beta1.json rename to crds/workstations.cnrm.cloud.google.com/workstationcluster_v1beta1.json diff --git a/workstations.cnrm.cloud.google.com/workstationsworkstationcluster_v1alpha1.json b/crds/workstations.cnrm.cloud.google.com/workstationsworkstationcluster_v1alpha1.json similarity index 100% rename from workstations.cnrm.cloud.google.com/workstationsworkstationcluster_v1alpha1.json rename to crds/workstations.cnrm.cloud.google.com/workstationsworkstationcluster_v1alpha1.json