Hi @preciouso, from the link you provided it looks like you have a single VM running on this app with process group "web", but the services block in your config applies to process "app". If this is right, changing the services to your "web" process group should help.
I’m not 100% on Nomad process group behaviour, but if you don’t want the web instance I think you’d scale that process to zero with fly scale count web=0 (docs), and for good measure remove the processes block from your config file. (edit: you know this already, but run fly deploy to apply your local config file changes )
It tells me invalid vm group. It’s not show as running in the monitoring section, so as long as I dont get charged I think ill ignore it as a UI issue. I don’t expect it to be a security risk
Hm, yes, if fly status only shows you one VM on your app, you should be confident there is only one. I suspect the dashboard is showing you the config for all the processes you’ve defined, even if some of the processes currently have zero instances provisioned.
fwiw, I think process groups will be more straightforward in Apps V2.