OctaviaClientException: Invalid state PENDING_UPDATE of loadbalancer resource ######-####-####-####-######### (HTTP 409) (Request-ID: req-########-####-####-####-#########)7.x
Currently, there is no built-in mechanism to change the load balancer into an error state for easy removal through the User Interface.
Note: This procedure modifies the database. Ensure you to take a backup of the database before proceeding. Do not skip this step.
osctl exec -it mariadb-server-0 bash mysqldump --defaults-file=/etc/mysql/admin_user.cnf --host=localhost octavia > /tmp/octavia.sql exit osctl cp openstack/mariadb-server-0:/tmp/octavia.sql /tmp/octavia.sqlkubectl -n openstack exec -it mariadb-server-0 bash
# mysql --defaults-file=/etc/mysql/admin_user.cnf --host=localhost
# use octavia;
# select * from load_balancer;# update load_balancer set provisioning_status='ERROR' where id = "########-####-####-####-#####";openstack loadbalancer list --operating-status=ERRORopenstack loadbalancer delete <load balancer ID>