Service Fabric Mesh is the Service Fabric's serverless offering to enable developers to deploy containerized applications without managing infrastructure. Service Fabric Mesh , aka project “SeaBreeze” is currently available in private preview. This repository will be used for tracking bugs/feature requests as GitHub issues and for maintaining the latest documentation.
MIT License
82
stars
13
forks
source link
az mesh deployment create command hangs with "Running", but creation is successful #164
Running the following command gets stuck on running status az mesh deployment create --resource-group $rg --template-uri https://raw.githubusercontent.com/Azure-Samples/service-fabric-configuration/master/container-configuration.json
If the deployment takes more than 10 minutes, then open up a new CLI window and run the following to get the status of your application deployment.
az mesh app show --resource-group --name
The output should point to the potential issue. If the “app show” cmd response does not have any errors listed, then it could just be that your image is taking long to download, rerun the az mesh app show command again after 5 minutes.
Running ..
Running ..
Running ..
I cancelled the create and checked the status, which shows "provisioningState": "Succeeded"
Edit: Closing the issue since it seems like issue is with something else. And a correction; CLI showed status as Invalid, but portal shows health as OK.
Running the following command gets stuck on running status
az mesh deployment create --resource-group $rg --template-uri https://raw.githubusercontent.com/Azure-Samples/service-fabric-configuration/master/container-configuration.json
If the deployment takes more than 10 minutes, then open up a new CLI window and run the following to get the status of your application deployment. az mesh app show --resource-group --name
The output should point to the potential issue. If the “app show” cmd response does not have any errors listed, then it could just be that your image is taking long to download, rerun the az mesh app show command again after 5 minutes.
I cancelled the create and checked the status, which shows "provisioningState": "Succeeded"