diff --git a/likec4/deployment.c4 b/likec4/deployment.c4 index 0102daa..a1c98e7 100644 --- a/likec4/deployment.c4 +++ b/likec4/deployment.c4 @@ -68,6 +68,10 @@ deployment { namespace mailhog 'mailhog' { instanceOf edp.mailhog.mailhog } + + namespace spark 'spark' { + instanceOf edp.spark.sparkoperator + } } } @@ -81,7 +85,8 @@ views { monitoring.*, openbao.*, externalSecrets.*, - crossplane.* + crossplane.*, + spark.* } } diff --git a/likec4/model.c4 b/likec4/model.c4 index 5149143..084dc35 100644 --- a/likec4/model.c4 +++ b/likec4/model.c4 @@ -199,6 +199,15 @@ model { } } + container spark 'Spark' { + description 'Allows running Spark applications on K8s' + + component sparkoperator 'Spark Operator' { + technology 'Spark' + icon tech:spark + } + } + // UI requests data from the Backend // ui -> backend 'fetches via HTTPS' } @@ -287,6 +296,11 @@ views { ingressNginx -> } + view spark of spark { + include + *, + ingressNginx -> + } }