Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Explain dependencies
  • Loading branch information
Smana authored Aug 25, 2023
1 parent 8a37768 commit 3f4c8c3
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,21 @@
```mermaid
graph TD;
Namespaces-->CRDs;
CRDs-->Crossplane;
CRDs-->Observability;
CRDs-->Security;
CRDs-->Infrastructure;
Crossplane-->Infrastructure;
Crossplane-->Security;
Observability-->Apps;
Infrastructure-->Apps;
Security-->Apps;
Security-->Observability;
Security-->Infrastructure
```

This diagram can be hard to understand so these are the key information:

* Namespaces are the first resources to create, all other resources may be cluster scoped
* CRDs that allow to extend Kubernetes capabilities must be present in order to use them in all other applications if needed.
* Crossplane creates IRSA permissions which are required by some components
* Security defines `external-secrets` that are needed by some applications in order to start.

0 comments on commit 3f4c8c3

Please sign in to comment.