-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# acl-plugin | ||
tsuru CLI plugin to interact with ACL-API | ||
```mermaid | ||
graph TD; | ||
developer[Developer]; | ||
tsuru-client[Tsuru Client + ACL Plugin]; | ||
aclapi[ACL-API]; | ||
mongodb[(MongoDB)]; | ||
acl-operator[acl-operator]; | ||
network-policies[Kubernetes Network Policies] | ||
developer -- Manage ACL Rules --> tsuru-client; | ||
tsuru-client -- Calls via API --> tsuru | ||
tsuru -- service contract --> aclapi; | ||
aclapi --> mongodb; | ||
acl-operator -- Pull Rules ----> aclapi | ||
click tsuru-client "https://www.github.com/tsuru/tsuru-client" "Access github project" | ||
click tsuru "https://www.github.com/tsuru/tsuru" "Access github project" | ||
click aclapi "https://www.github.com/tsuru/acl-api" "Access github project" | ||
click acl-operator "https://www.github.com/tsuru/acl-operator" "Access github project" | ||
click network-policies "https://kubernetes.io/docs/concepts/services-networking/network-policies/" "Read more about kubernetes network policies" | ||
subgraph "cluster(s) [1..N]" | ||
acl-operator -- Manage --> network-policies | ||
end | ||
``` |