containers
7 TopicsAny Service Fabric Evangelists still out there?
We are heavily invested in Service Fabric and all our new microservices are built on top of SF. We use about 70% of the capabilities of SF. I sometimes feel we are the only ones left, and the rest have either headed over to Kube or another orchestrator. Please let me know if you still feel SF was the right choice for your product, and if not what have you replaced it with?2.6KViews0likes3CommentsI want to create a web API in ASP.NET C# that needs to run scheduled jobs from the app.
Since, A and B are two different system altogether, there is no way to connect these two apps directly. So, I want to create my app in such a way that It will connect to an azure function and that azure function will act as a mediator that can get inputs(Payload) from the external system B and run the jobs of A. On this, the complexity of the Payload generation & API Call is shared by the Azure & On-premise EXE. The EXE will call the right Azure Job and the Job workflow is handled by Azure . Please help me the way to build the API/console app in C#. Without Azure function, I am not getting any options to connect to any external app to get the payloads. Need to know about the way to connect to Azure so that azure can act as a mediator to connect these two external apps.1.3KViews0likes0CommentsOpen Source Microservices Platform Now Available
Hello! I have recently published a new open source microservices platform on GitHub. It is available under the MIT permissive license and is free to use for commercial purposes. I'm asking the .NET community for some help. https://ServiceBricks.com I am currently BETA testing and I'm looking for developers and architects to help me with the final push to make it production ready. I could use another set of eyes to help shore up the last remaining bits. ServiceBricks is a powerful platform designed to streamline the development, deployment, and maintenance of distributed systems. It provides domain-driven design, event-based architecture and a wealth of features to rapidly build new microservices and application quickly. Deploy single monoliths or distributed, multi-web applications using docker or kubernetes. There are several pre-built microservices to start from to build your own application infrastructures. They are also open source and all source code is available. Please drop me a line if you would like to help! I'm looking for discussions on microservices architecture and how they are implemented in code. Thanks! Danny337Views0likes0CommentsQuestion about Kubernetes Deployment tutorial on Microsoft Learn
I am going through the tutorial Module on Microsoft Learn titled "Deploy a .NET Microservice to Kubernetes" and am on the third unit located here: https://learn.microsoft.com/en-us/training/modules/dotnet-deploy-microservices-kubernetes/3-exercise-push-to-docker-hub. I am stuck under the "Verify the Docker images by creating containers in the codespace" heading on the fourth step. It tells you to select the port for the front end and open the service in a browser. However, there were no ports here that the step seemed to suggest were already there and I had to set it up. Given that the port for the frontend service of this tutorial is 32000:8080 according to the docker-compose.yml file for this tutorial project, is this what I should put in the ports tab? If so, the service does not display in my browser when I click on the globe icon as instructed by the tutorial and all I see is an HTTP 502 message. What should I do so that I can view the service? The repository for this tutorial service is located at https://github.com/MicrosoftDocs/mslearn-dotnet-cloudnative in the dotnet-kubernetes folder and I have attached images as well of the discussed configuration and error message below:99Views0likes0CommentsJust built my first microservice API, and it's hacky. Any examples to follow?
I just finished building my first microservices-based API, and it's ugly. Are there any online source examples that include two (or more) API microservices communicating with each other over a message bus, that also include authentication using both a local authentication database and/or OpenID Connect?43Views0likes0Comments