From 538ad3ebcd893e99d3bc661b4abcbba5c43ef476 Mon Sep 17 00:00:00 2001 From: Jonathan West Date: Mon, 10 Jun 2024 14:00:14 -0400 Subject: [PATCH] Fix Rollouts plugin location URL format (#735) Signed-off-by: Jonathan West --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 2bb5db3a9..a722af3aa 100644 --- a/main.go +++ b/main.go @@ -280,7 +280,7 @@ func getArgoRolloutsOpenshiftRouteTrafficManagerPath() string { argoRolloutsImage := os.Getenv("ARGO_ROLLOUTS_IMAGE") if argoRolloutsImage != "" && strings.HasPrefix(argoRolloutsImage, "registry.redhat.io/openshift-gitops") { - openShiftRoutePluginLocation = "/plugins/rollouts-trafficrouter-openshift/openshift-route-plugin" + openShiftRoutePluginLocation = "file:/plugins/rollouts-trafficrouter-openshift/openshift-route-plugin" return openShiftRoutePluginLocation }