-
Notifications
You must be signed in to change notification settings - Fork 40
/
kubernetes_stateful_architecture.py
executable file
·64 lines (54 loc) · 1.79 KB
/
kubernetes_stateful_architecture.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env python3
# coding=utf-8
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2023-04-14 13:54:52 +0100 (Fri, 14 Apr 2023)
#
# https://github.com/HariSekhon/Diagrams-as-Code
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn
# and optionally send me feedback to help steer this or other code I publish
#
# https://www.linkedin.com/in/HariSekhon
#
"""
Kubernetes Stateful Architecture
"""
# based on https://diagrams.mingrammer.com/docs/getting-started/examples
__author__ = 'Hari Sekhon'
__version__ = '0.1'
import os
from diagrams import Diagram, Cluster
# ============================================================================ #
# Kubernetes resources:
#
# K8s resources:
#
# https://diagrams.mingrammer.com/docs/nodes/k8s
#
from diagrams.k8s.compute import Pod, StatefulSet
# from diagrams.k8s.network import Service
from diagrams.k8s.storage import PV, PVC, StorageClass
with Diagram("Kubernetes Stateful Architecture",
show=not bool(os.environ.get('CI', 0)),
filename='images/kubernetes_stateful_architecture',
):
with Cluster("App"):
# Service clutters this diagram
# svc = Service("Service)")
sts = StatefulSet("StatefulSet")
apps = []
# pylint: disable=W0104
# count from 3 to 1 to get the apps to come out in the right order top to bottom
for _ in range(3, 0, -1):
pod = Pod(f"Pod {_}")
pvc = PVC(f"Persistent\nVolume Claim {_}")
pv = PV(f"Persistent Volume {_}")
#pod - sts - pvc
#apps.append(svc >> pod >> pvc >> pv)
apps.append(sts >> pod >> pvc >> pv)
# pylint: disable=W0106
apps << StorageClass("Storage Class")