Skip to content

Commit ab435f8

Browse files
committed
Routine checkpoint.
1 parent 8fcbd8d commit ab435f8

File tree

4 files changed

+312
-23
lines changed

4 files changed

+312
-23
lines changed

hack/test-e2e.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,6 @@ else
5050
fi
5151
fi
5252

53+
kubectl delete crd inferencepools.inference.networking.k8s.io --ignore-not-found
5354
echo "Found an active cluster. Running Go e2e tests in ./epp..."
5455
go test ./test/e2e/epp/ -v -ginkgo.v

test/e2e/epp/e2e_suite_test.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,10 @@ func createEnvoy(testConfig *testutils.TestConfig, filePath string) {
317317

318318
// createInferExt creates the inference extension resources used for testing from the given filePath.
319319
func createInferExt(testConfig *testutils.TestConfig, filePath string) {
320-
inManifests := testutils.ReadYaml(filePath)
320+
321+
// This image needs to be updated to open multiple ports and respond.
322+
inManifests := testutils.ReadYaml(filePath) // Modify inference-pool.yaml
323+
ginkgo.GinkgoWriter.Print("Deployment: %s", filePath)
321324
ginkgo.By("Replacing placeholders with environment variables")
322325
outManifests := []string{}
323326
replacer := strings.NewReplacer(

0 commit comments

Comments
 (0)