Search code examples
azuredockerkubernetesazure-service-fabricservice-fabric-stateless

Migrating Service Fabric app to Kubernetes


Having a simple SF application (API + Service projects), how would one convert it so it runs on Kubernetes?

  • Can anyone please explain if it's possible to containerize SF app and deploy it to Minikube/Kubernetes?
  • Or does it have to be re-written in some specific way?

Trying to migrate from SF to Kubernetes. Any insight greatly appreciated.


Solution

  • you cannot do that if you are using SF specific primitives (like actors), because kubernetes does not provide those. I dont think you can easily rewrite those, tbh. That would be anything but straight forward.

    If you are not, however, its just a matter of containerizing all of the apps and deploying them to kubernetes like you normally would.