Azure / service-fabric-mesh-preview

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 12 forks source link

Application is loosing IP address #260

Closed smereczynski closed 6 years ago

smereczynski commented 6 years ago

Hi, I have deployed a Hello World sample (on Linux): https://github.com/Azure-Samples/service-fabric-mesh/tree/master/templates/helloworld

Deployment was made few hours ago. Now, on other machine I was trying to connect to this service. I did not made any note with public IP, so I went to CLI and... nothing:

az mesh app show --resource-group meshTest --name helloWorldApp

{
  "debugParams": null,
  "description": "Service Fabric Mesh HelloWorld Application!",
  "diagnostics": null,
  "healthState": "Ok",
  "id": "/subscriptions/d8207ac4-c426-49b0-8395-3f197ed7a82e/resourcegroups/meshTest/providers/Microsoft.ServiceFabricMesh/applications/helloWorldApp",
  "location": "eastus",
  "name": "helloWorldApp",
  "provisioningState": "Succeeded",
  "resourceGroup": "meshTest",
  "serviceNames": [
    "helloWorldService"
  ],
  "services": null,
  "status": "Ready",
  "statusDetails": null,
  "tags": {},
  "type": "applications",
  "unhealthyEvaluation": null
}
mattrowmsft commented 6 years ago

You need to do a show on the network to get the IP address.

smereczynski commented 6 years ago

Ha! Bingo! To be honest, I think it should be in the app also (probably there is a milion reasons to not do that) because people are looking for it there. Anyway: THANK YOU!

mattrowmsft commented 6 years ago

Ya, I think this feedback is still valuable b\c it isn't intuitive today. We are working on ways to help with that. VM's for example show the associated IP address via portal even though the IP is a separate resource.

smereczynski commented 6 years ago

Even reference to the network in an output will be great - like in VM. Seeing network in reference I will try to check (like with NIC in VM).