Skip to content

Commit

Permalink
Deploy HTTP routes in ingress-perf namespace
Browse files Browse the repository at this point in the history
Signed-off-by: Raul Sevilla <[email protected]>
  • Loading branch information
rsevilla87 committed Nov 14, 2024
1 parent 60e15b7 commit d021019
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/runner/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ func (r *Runner) deployAssets() error {
return err
}
log.Debugf("Creating HTTPRoute...")
_, err = hrClientSet.GatewayV1().HTTPRoutes(r.igNamespace).Create(context.TODO(), &httproutes, metav1.CreateOptions{})
_, err = hrClientSet.GatewayV1().HTTPRoutes(routesNamespace).Create(context.TODO(), &httproutes, metav1.CreateOptions{})
if err != nil && !errors.IsAlreadyExists(err) {
return err
}
Expand Down

0 comments on commit d021019

Please sign in to comment.