Questions tagged [azure-service-fabric-mesh]

Azure Service Fabric Mesh is a platform for developing and deploying microservices. Azure Service Fabric Mesh handles the management of virtual machines, storage, networking, cluster operations, scaling, and infrastructure without involvement of the developer.

Azure Service Fabric Mesh is a platform for developing and deploying microservices. Azure Service Fabric Mesh handles the management of virtual machines, storage, networking, cluster operations, scaling, and infrastructure without involvement of the developer.


References:

Azure Service Fabric Mesh Documentation, Quickstarts, Tutorials, etc.

Azure Service Fabric Mesh Resource Provider API Reference

17 questions
2
votes
2 answers

Azure Service Fabric vs Azure Service Fabric Mesh

After painstakingly trying to learn and try out Azure Service Fabric, I now see 'Azure Service Fabric Mesh'. Struggling to identify the key differences. This page states 'Service Fabric is the orchestrator that powers Service Fabric Mesh'. I am…
alwayslearning
  • 4,493
  • 6
  • 35
  • 47
2
votes
0 answers

Error when trying to publish mesh application, "Unable to edit or replace'test': previous deployment is still active"

I'm attempting to use Service Fabric Mesh to deploy a container based app. I'm new to Mesh, but I did get the sample 'Hello App' working. Now I'm trying to deploy an app based on a container I have stored in Azure. I used the following command to…
Mike Christensen
  • 88,082
  • 50
  • 208
  • 326
1
vote
1 answer

How to put service fabric mesh application into virtual network

I have a simple Service Fabric Mesh application with two microservices. When I deploy it I get public IP and I can access services. What I would like is to wrap that Mesh application with Azure API management and restrict access to Mesh application.…
1
vote
0 answers

How to enable TLS SSL Https in Azure service fabric mesh for Asp.net core application

I am deploying a new mesh app with an Asp.Net API core container image. I am able to successfully deploy and access the API using http://[]:80. I used the Following configuration in gateway yaml file: http: - name: BenApiHTTP port: 80 …
Dadwals
  • 1,171
  • 2
  • 8
  • 15
1
vote
0 answers

Service Fabric Mesh unable to start sample application after deployment

I am trying to get a sample Service Fabric Mesh application deployed to Azure. The deployment shows as being successful, but I am unable to access the application once it is deployed. The only evidence I can find that there is an issue is the…
1
vote
1 answer

Porting existing web application to Azure Service Fabric Mesh

I am aware of how to create a new service fabric mesh application using the service fabric mesh SDK and then publish the same to Service Fabric Mesh. My question is - I have an existing Web project created from Angular CLI, how do I containerize…
0
votes
1 answer

Azure Service Fabric - Fixed time Job

I am working on a Service Fabric project where I need to implement a schedule job that can execute at specific time (say every 16hrs or 24hrs). Here is my stateful actor service implementation [StatePersistence(StatePersistence.None)] internal class…
0
votes
1 answer

How to deploy into a Service Fabric cluster using CLI

I want to deploy a container image onto Service Fabric cluster running on Azure. I have already pushed image on Azure Container Registry. Using command line interface, how can I deploy container image into Service Fabric Cluster running on Azure? I…
0
votes
1 answer

Azure Service Fabric cluster to run windows containers on windows 7 single machine

I want to use Service Fabric to run windows containers on my windows 7 machine. Docker is not installed on my machine. It seems windows 7 cannot run docker as it does not have Hyper-V. We have created docker images separately and pushed it to a…
0
votes
1 answer

How to fix Service Fabric Mesh failing due to docker errors

I've been working with Service Fabric Mesh Preview to test a service. Everything was working fine and I was even able to publish to Azure, then after I tried to add an additional service mesh app to the solution, everything fails, my local cluster…
0
votes
1 answer

Get IP of application in local cluster

I followed Microsoft's tutorial and learned that I can run this command az mesh gateway show --resource-group Mesh --name todolistappGateway to find the IP address I need to call to access my application in the cloud. How do I find the IP I should…
sirdank
  • 3,351
  • 3
  • 25
  • 58
0
votes
1 answer

az mesh secret list not showing the secrets

I created a fresh mesh app and it is working fine. Now I updated the service yaml to add one secret as following: Secrets: - name: MySecret.txt description: My Mesh Application Secret secret_type: inlinedValue …
Dadwals
  • 1,171
  • 2
  • 8
  • 15
0
votes
1 answer

How to connect to Azure Cosmos DB from Service Fabric Mesh

I'm trying to create an application that connects to a Cosmos DB and runs on Service Fabric Mesh. I've created a simple console application that tries to make the connection var client = new Microsoft.Azure.Documents.Client.DocumentClient(new…
Dave
  • 33
  • 2
0
votes
1 answer

Exposing multiple services in Service Fabric Mesh

I am trying to expose two services (Web API and Chat Bot), which are opening the same ports internally through a Service Fabric Mesh Network's Ingress Controller. Running the definition below always lets one of the two services fail. What's unclear…
0
votes
1 answer

Any updates on Service fabric mesh limitations

Do we have any updated on Service fabric limitations which are mentioned in the below link? https://azure.microsoft.com/en-in/blog/azure-service-fabric-mesh-is-now-in-public-preview/
Balanjaneyulu K
  • 3,660
  • 5
  • 24
  • 45
1
2