Обложка канала

Библиотека шарписта

Полезные материалы по всему, что может быть интересно разработчику на C#.

Библиотека шарписта

4 года назад
Открыть в
Разработка .NET приложений для Kubernetes Это руководство — не введение в Kubernetes или обоснование того, почему вы должны использовать Kubernetes. Это также не руководство по написанию распределенных приложений или .NET сервисов. В руководстве описан опыт миграции приложения .NET в Kubernetes и использования всех преимуществ этого инструмента. https://proglib.io/w/c8b5cb07
Writing .NET Application Services for Kubernetes

In a traditional .NET distributed application, application services (not to be confused with the Kubernetes ‘service’ object) would either be written as IIS hosted web applications or Windows Services. When building .NET (micro)services to be deployed in a Kubernetes cluster pretty much every facet of the service needs to be reconsidered, not only the hosting environment but the way configuration is accessed, how logging and monitoring work, and the options for state management and memory considerations. In this post I’ll bring my experience of migrating .NET applications to Kubernetes to enumerate some of the main ways that you’ll need to change the way you write them.

Mikehadlow