@@ -68,6 +68,8 @@ const (
6868 xInferPoolManifest = "../../../config/crd/bases/inference.networking.x-k8s.io_inferencepools.yaml"
6969 // xInferObjectiveManifest is the manifest for the inference model CRD with 'inference.networking.x-k8s.io' group.
7070 xInferObjectiveManifest = "../../../config/crd/bases/inference.networking.x-k8s.io_inferenceobjectives.yaml"
71+ // xInferenceModelRewritesManifest is the manifest for the inference rewrites CRD with 'inference.networking.x-k8s.io' group.
72+ xInferenceModelRewritesManifest = "../../../config/crd/bases/inference.networking.x-k8s.io_inferencemodelrewrites.yaml"
7173 // inferPoolManifest is the manifest for the inference pool CRD with 'inference.networking.k8s.io' group.
7274 inferPoolManifest = "../../../config/crd/bases/inference.networking.k8s.io_inferencepools.yaml"
7375 // inferExtManifestDefault is the manifest for the default inference extension test resources (single replica).
@@ -132,9 +134,10 @@ func setupInfra() {
132134 createHfSecret (testConfig , modelServerSecretManifest )
133135 }
134136 crds := map [string ]string {
135- "inferencepools.inference.networking.x-k8s.io" : xInferPoolManifest ,
136- "inferenceobjectives.inference.networking.x-k8s.io" : xInferObjectiveManifest ,
137- "inferencepools.inference.networking.k8s.io" : inferPoolManifest ,
137+ "inferencepools.inference.networking.x-k8s.io" : xInferPoolManifest ,
138+ "inferenceobjectives.inference.networking.x-k8s.io" : xInferObjectiveManifest ,
139+ "inferencemodelrewrites.inference.networking.x-k8s.io" : xInferenceModelRewritesManifest ,
140+ "inferencepools.inference.networking.k8s.io" : inferPoolManifest ,
138141 }
139142
140143 createCRDs (testConfig , crds )
0 commit comments