Github Pages do not support mermaidjs rendering by default. Use README for now.
Some personal stuff I am working on (the repos are private so not accessible):
User Signup and Authentication And Authorization using the following micrservice projects:
The following diagram shows the request flow on a Kubernetes cluster.
flowchart TD
A[user request] -.-> B(Load balancer)
B -.-> C(DNS Server)
C -.-> D[/email-rest-service.sonam.cloud/]
subgraph k8[Kubernetes Cluster]
subgraph ingress[Ingress]
F(Nginx Controller)
end
subgraph app[email-rest-service]
G(Kubernetes Service)
G -- uses authId header for user context --> H(email-rest-service pod)
H -- validate jwt token using jwt-validator --> H
end
end
F -. 3 calls-service .-> G
B -.-> k8