Skip to content

Commit

Permalink
go mod rm 1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
mohit-sheth authored and rsevilla87 committed Nov 8, 2024
1 parent 77c8176 commit d912bf9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkg/runner/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,10 @@ func (r *Runner) deployAssets() error {
}
if r.gatewayApi {
ocpMetadata, _ := ocpmetadata.NewMetadata(restConfig)
ingressDomain, _ = ocpMetadata.GetDefaultIngressDomain()
ingressDomain, err = ocpMetadata.GetDefaultIngressDomain()
if err != nil {
return err
}
listenerHostName = gatewayv1beta1.Hostname("*.gwapi." + ingressDomain)
httproutes.Spec.Hostnames = append(httproutes.Spec.Hostnames, gatewayv1beta1.Hostname("nginx.gwapi."+ingressDomain))
log.Debugf("Creating GatewayClass...")
Expand Down

0 comments on commit d912bf9

Please sign in to comment.