Why isn't it possible to change placement constraints in an upgrade?
I have a stateless ASP.NET Core (RC1) service running in my Azure Service Fabric cluster. It has the following manifest: <ServiceManifest Name="MyServicePkg" Version="1.0.2" ...> <ServiceTypes> <StatelessServiceType ServiceTypeName="MyServiceType" /> </ServiceTypes> ... </ServiceManifest> My cluster is configured with placement properties. I have 5 servers with "nodeType=Backend" and 3 servers with "nodeType=Frontend". I would like to upgrade my Service and specify that it may only be placed on "Backend" nodes. This is my updated manifest: <ServiceManifest Name="MyServicePkg" Version="1.0.3" .