Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cloud-bulldozer/ingress-perf
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9a24f680d3b895ac53c9eced34c026149112b552
Choose a base ref
..
head repository: cloud-bulldozer/ingress-perf
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d021019c751e3c11fffecb5c3e4d926446a101f5
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkg/runner/runner.go
4 changes: 2 additions & 2 deletions pkg/runner/runner.go
Original file line number Diff line number Diff line change
@@ -314,7 +314,7 @@ func (r *Runner) deployAssets() error {
}
listenerHostName = gwv1.Hostname("*.gwapi." + ingressDomain)
httproutes.Spec.Hostnames = append(httproutes.Spec.Hostnames, gwv1.Hostname("nginx.gwapi."+ingressDomain))
svc, err := clientSet.CoreV1().Services(routesNamespace).Get(context.TODO(), r.gwLb, metav1.GetOptions{})
svc, err := clientSet.CoreV1().Services(r.igNamespace).Get(context.TODO(), r.gwLb, metav1.GetOptions{})
if err != nil {
return err
}
@@ -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
}