GitHub user weizhouapache added a comment to the discussion: VM provisioning falied.
@anirudh09041 ``` Hosts with tag '' are:[] ``` can you check the service offering in the database or on UI ? maybe the service offering has a empty string as tag ``` mysql> select id,name,host_tag from service_offering; ``` if host_tag is a emtry string, change it to NULL ``` update service_offering set host_tag=NULL where host_tag = ""; ``` GitHub link: https://github.com/apache/cloudstack/discussions/12974#discussioncomment-16485318 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
