GitHub user sptest232 added a comment to the discussion: The network list isn't displayed in the UI ACS 4.22
Yes, that's right. using sql request select network_offering_id, networks.name, networks.state, network_offerings.name, network_offerings.removed, network_offerings.uuid from networks inner join network_offerings on networks.network_offering_id = network_offerings.id where network_offerings.removed IS NOT NULL and networks.state <> "Destroy"; found a record +---------------------+---------------+---------+------------------------------------------+---------------------+------------------------------------------+ | network_offering_id | name | state | name | removed | uuid | +---------------------+---------------+---------+------------------------------------------+---------------------+------------------------------------------+ | 19 | Kuber_cluster | Shutdown | DefaultNetworkOfferingforKubernetesService | 2023-12-14 08:02:01 | 1bfaa28e-0c27-42e7-ac97-97443501c507 | +---------------------+---------------+-----------+--------------------------------------------+---------------------+--------------------------------------+ The following UPDATE network_offerings set removed=NULL WHERE uuid="1bfaa28e-0c27-42e7-ac97-97443501c507" helped. Thank you very much for your help! GitHub link: https://github.com/apache/cloudstack/discussions/12260#discussioncomment-15260224 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
