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: Simpler infrastructure #441

Merged
merged 2 commits into from
Jan 12, 2020
Merged
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
22 changes: 22 additions & 0 deletions content/faq/simpler-infrastructure.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
title: "Can we make the infrastructure simpler with fewer tools to master and points of failure?"
description: "With sufficient GitOps, the developer exposure to the underlying tools is minimized."
tags:
- infrastructure
- GitOps
- enterprise
---

## Question

Why are so many tools required? Can we make the infrastructure simpler with fewer tools to master and points of failure?

## Answer

We hear you. We would like that too.

**Here's the rub:** Every video we watch of some gorgeous cloud automation product and every enterprise offering is going to present a simple unrealistic demo that showcases just how easy it is. “Look ma, no hands!” What happens though is when you actually try to orchestrate everything in concert for real-world scenarios, you will need tools.

The UNIX philosophy is to make small, purpose-built tools that do one thing really well. We've embraced this strategy wholeheartedly. It also makes it so various tools can more easily be swapped out for others. This in stark constrast to enterprise solutions, which tend to lock you into one massive product. Our approach is totally different. We look at what exists in the community and see how to leverage it. There are pros/cons with this (like anything else). Sometimes tools go EOL (like with the Bitly OAuth2 proxy). On the other hand, with the enterprise solution, you get a tighter end-to-end integration because they control the entire ecosystem. However, when you want to implement something custom, then good luck. =)

We think that with sufficient GitOps, the developer exposure to the underlying tools is minimized. All operations should be performed by Pull Request, reducing the complexity exposed to developers.