You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that the creation of the load balancers using CAPO would default to the amphora provider when deploying the testcluster.
I tried to setup the testcluster with ovn as load balancer provider with use_ovn_lb_provider = "true" and got the following error message from the capo-controller-manager pod:
A look into the CAPO repo main.go indicates that the value of the provider: key in the OpenStackClusterTemplateapiServerLoadBalancer block has to be explicitly set to use ovn as LB-provider:
...fs.StringVar(&lbProvider, "lb-provider", "amphora",
"The name of the load balancer provider (amphora or ovn) to use (defaults to amphora).")
...
Adding provider: ovn to the cluster-template.yaml helped to create the load balancer for the testcluster via ovn:
It seems that the creation of the load balancers using CAPO would default to the amphora provider when deploying the testcluster.
Yes, that's true.
I tried to setup the testcluster with ovn as load balancer provider with use_ovn_lb_provider = "true" and got the following error message from the capo-controller-manager pod
use_ovn_lb_provider only affects loadbalancer in front of ingress-nginx, see docs.
Adding provider: ovn to the cluster-template.yaml helped to create the load balancer for the testcluster via ovn
It seems that the creation of the load balancers using CAPO would default to the amphora provider when deploying the testcluster.
I tried to setup the testcluster with ovn as load balancer provider with
use_ovn_lb_provider = "true"
and got the following error message from the capo-controller-manager pod:A look into the CAPO repo
main.go
indicates that the value of theprovider:
key in theOpenStackClusterTemplate
apiServerLoadBalancer
block has to be explicitly set to use ovn as LB-provider:Adding
provider: ovn
to thecluster-template.yaml
helped to create the load balancer for the testcluster via ovn:Environment:
commit: 9c1f526f29c885ed88c04ae78f5765ddbd5ca1fa
clusterapi_version = "1.6.1"
capi_openstack_version = "0.9.0"
use_ovn_lb_provider = "true"
The text was updated successfully, but these errors were encountered: