-1

total noob here and I hope this isn’t a sill question. I’m supposed to be helping design a strategy for infra deployments using DevOps, I’m trying to work out the best way to do the organisation, as DevOps will only be used for infra build, I was thinking one organisation and one project, but we will have about 34 different build pipelines to configure, am I better off having 34 projects or how do I isolate the repos and multiple pipelines?

Hope that makes sense. Thanks in advance.

Norrin Rad
  • 881
  • 2
  • 18
  • 42
  • Microsoft's guidance is to use as few Projects as possible. https://learn.microsoft.com/en-us/azure/devops/boards/plans/agile-culture?WT.mc_id=DOP-MVP-5001511&view=azure-devops#scale-with-teams-and-not-projects – jessehouwing Mar 22 '21 at 10:40

1 Answers1

1

It's not needed to create 34 projects in Azure DevOps, you could create multiple repos in one team project:

enter image description here

Then you could create pipeline for each repo.

Cece Dong - MSFT
  • 29,631
  • 1
  • 24
  • 39
  • can you have multiple pipelines under one project/repo? – Norrin Rad Mar 22 '21 at 14:50
  • Yes, you can. You could use path filters in your trigger to include or exclude paths: https://learn.microsoft.com/en-us/azure/devops/pipelines/repos/azure-repos-git?view=azure-devops&tabs=yaml#paths – Cece Dong - MSFT Mar 23 '21 at 01:34