We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba7ba13 commit 8f63852Copy full SHA for 8f63852
pkg/kgateway/deployer/agentgateway_parameters.go
@@ -479,7 +479,8 @@ func (g *agentgatewayParametersHelmValuesGenerator) applyGatewayParametersToHelm
479
}
480
481
svcConfig := gwp.Spec.Kube.GetService()
482
- vals.Gateway.Service = deployer.GetServiceValues(svcConfig)
+ // TODO: extract loadBalancerIP from Gateway.spec.addresses if service type is LoadBalancer
483
+ vals.Gateway.Service = deployer.GetServiceValues(svcConfig, nil)
484
485
svcAccountConfig := gwp.Spec.Kube.GetServiceAccount()
486
vals.Gateway.ServiceAccount = deployer.GetServiceAccountValues(svcAccountConfig)
0 commit comments