Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FAQ: Monorepo deployment #418

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions content/faq/monorepo-deployment.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
title: "Have you deployed applications from a monorepo?"
description: "No, we haven’t dealt with large monorepo architectures."
tags:
- monorepo
- architectures
- Terraform
- polyrepo
---

## Question

Have you deployed applications from a monorepo? What are some of the biggest known risks?


## Answer

No, we haven’t dealt with large monorepo architectures.

Here are some of the known risks:

* We cannot estimate the scope or implications of this change.


* Not all changes may be suitable for automated deployment or rollbacks. For example, by including your Terraform code in the monorepo (and if it is released at the same time as everything else), orchestrating this would be non-trivial. In addition, rollbacks of Terraform should not and cannot be easily orchestrated.


* Rather than having multiple pipelines per project in the polyrepo approach, in the monorepo approach, we'll have fewer pipelines doing more (which means they'll be more complicated).