The Muffin Man
The Muffin Man

Reputation: 20004

Deploy Service Fabric services individually

From the documentation and examples I've seen it seems that the preferred way to deploy Service Fabric services is to package them all up into an application package.

If I have 30 services and I make a change to one of them I'm not interested in having my CI server pull down the entire repository, build the solution, package it and then have Service Fabric decide that only one service changed and so only one should be updated.

Is there a way to create an application package with just one service?

Upvotes: 2

Views: 2188

Answers (1)

Ryan Durham
Ryan Durham

Reputation: 331

You want to perform a partial upgrade (Differential Packaging). See here. Differential packaging

Upvotes: 4

Related Questions