Fixing some formatting issues

This commit is contained in:
2026-04-24 14:26:27 -07:00
parent 1610a3a55f
commit fa7db2211a
2 changed files with 14 additions and 10 deletions

View File

@@ -9,23 +9,25 @@ from diagrams.k8s.compute import Pod
from diagrams.k8s.network import Service from diagrams.k8s.network import Service
from diagrams.k8s.network import Ingress from diagrams.k8s.network import Ingress
from diagrams.generic.compute import Rack from diagrams.generic.compute import Rack
from diagrams.generic.blank import Blank
from personal import Gitea from custom import Gitea
from personal import StaticSite from custom import StaticSite
from custom import Internet
if __name__ == '__main__': if __name__ == '__main__':
with Diagram('Public Infrastructure', show=False): with Diagram('Public Infrastructure', show=False):
with Cluster('Randy Random Host'): # Internet node :)
nginx = Rack('Nginx LB') inet = Internet()
git = Gitea('Gitea') >> nginx
tmp = StaticSite('Temper Blog') >> nginx
dev = StaticSite('Dev Blog') >> nginx
_ = nginx >> Blank()
with Cluster('Namespace - playground'): with Cluster('Namespace - playground'):
ingress = Ingress('Nginx Controller') ingress = Ingress('Nginx Controller')
s = Pod('Sanity') >> Service('sanity.shockrah.xyz') >> ingress s = Pod('Sanity') >> Service('sanity.shockrah.xyz') >> ingress
u = Pod('Uptime') >> Service('uptime.shockrah.xyz') >> ingress u = Pod('Uptime') >> Service('uptime.shockrah.xyz') >> ingress
p = Pod('Wiki') >> Service('wiki.shockrah.xyz') >> ingress p = Pod('Wiki') >> Service('wiki.shockrah.xyz') >> ingress
_ = ingress >> Blank() _ = ingress >> inet
with Cluster('Randy Random Host'):
nginx = Rack('Nginx LB')
git = Gitea('Gitea') >> nginx
tmp = StaticSite('Temper Blog') >> nginx
dev = StaticSite('Dev Blog') >> nginx
_ = nginx >> inet

View File

@@ -6,3 +6,5 @@ def Gitea(name: str) -> Custom:
def StaticSite(name: str) -> Custom: def StaticSite(name: str) -> Custom:
return Custom(name, './images/website.png') return Custom(name, './images/website.png')
def Internet() -> Custom:
return Custom('Internet', './images/www.png')