Added Spark Operator

This commit is contained in:
Waldemar 2025-04-01 14:38:42 +02:00 committed by Stephan Lo
parent 2155fb281c
commit 5df918dd43
2 changed files with 20 additions and 1 deletions

View file

@ -68,6 +68,10 @@ deployment {
namespace mailhog 'mailhog' { namespace mailhog 'mailhog' {
instanceOf edp.mailhog.mailhog instanceOf edp.mailhog.mailhog
} }
namespace spark 'spark' {
instanceOf edp.spark.sparkoperator
}
} }
} }
@ -81,7 +85,8 @@ views {
monitoring.*, monitoring.*,
openbao.*, openbao.*,
externalSecrets.*, externalSecrets.*,
crossplane.* crossplane.*,
spark.*
} }
} }

View file

@ -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 requests data from the Backend
// ui -> backend 'fetches via HTTPS' // ui -> backend 'fetches via HTTPS'
} }
@ -287,6 +296,11 @@ views {
ingressNginx -> ingressNginx ->
} }
view spark of spark {
include
*,
ingressNginx ->
}
} }