We currently have one build artifact that needs to be deployed to a deployment group of multiple ASP servers with multiple IIS client sites. There are up to 20 servers with 30 client sites on each server. One advantage is each site has the same physical path except for the client name:
- C:\Web\Sites\Client1
- C:\Web\Sites\Client2
Has anyone deployed one build artifact to multiple sites? I also want the flexibility of deploying to individual sites for support/upgrade purposes. I was thinking about the following options:
- A release pipeline for each client site (30 release pipelines)
- One release pipeline with a production stage for each client site (30 stages)
- Some way to dynamically trigger one production stage for each client site
Any ideas or examples would be greatly appreciated.