Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion test/e2e/epp/e2e_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@ func createMetricsRbac(testConfig *testutils.TestConfig, filePath string) {
for _, m := range inManifests {
outManifests = append(outManifests, strings.ReplaceAll(m, "$E2E_NS", testConfig.NsName))
}

ginkgo.By("Creating RBAC resources for scraping metrics from manifest: " + filePath)
testutils.CreateObjsFromYaml(testConfig, outManifests)

Expand Down Expand Up @@ -320,7 +321,9 @@ func createEnvoy(testConfig *testutils.TestConfig, filePath string) {

// createInferExt creates the inference extension resources used for testing from the given filePath.
func createInferExt(testConfig *testutils.TestConfig, filePath string) {
inManifests := testutils.ReadYaml(filePath)

// This image needs to be updated to open multiple ports and respond.
inManifests := testutils.ReadYaml(filePath) // Modify inference-pool.yaml
ginkgo.By("Replacing placeholders with environment variables")
outManifests := []string{}
replacer := strings.NewReplacer(
Expand Down
Loading