Closed sbrgr closed 4 months ago
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 thecluster-template.yaml
helped to create the load balancer for the testcluster via ovn
Yes, this is also true. See also https://github.com/SovereignCloudStack/k8s-cluster-api-provider/issues/706#issuecomment-1996746037
This issue is stale because it has been open 30 days with no activity. Remove stale label or comment, or this will be closed in 60 days.
This issue was closed because it has been stalled for 60 days with no activity.
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"