Migrating Service Fabric app to Kubernetes

9/4/2019

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.

-- ShaneKm
azure
azure-service-fabric
docker
kubernetes
service-fabric-stateless

1 Answer

9/4/2019

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.

-- 4c74356b41
Source: StackOverflow