ovn-org/ovn

can not delete Load_Balancer_Health_Check by its uuid

bobz965 opened this issue · 3 comments

image

root@empty:~/test/kube-ovn/lb-to-subnet# kubectl ko nbctl --version
ovn-nbctl 22.12.1
Open vSwitch Library 3.1.3
DB Schema 7.0.0
root@empty:~/test/kube-ovn/lb-to-subnet#

Load_Balancer_Health_Check is a non root table which means you can't delete the row.
Instead you need to remove this health check from the load balancer referencing it.

Like.

ovn-nbctl remove load_balancer <load_balancer_uuid> health_check 8ba16c17-.....

Hope this helps.

It is not an issue. So closing it.

Load_Balancer_Health_Check is a non root table which means you can't delete the row. Instead you need to remove this health check from the load balancer referencing it.

Like.

ovn-nbctl remove load_balancer <load_balancer_uuid> health_check 8ba16c17-.....

Hope this helps.

Thanks