Added Spark Operator
This commit is contained in:
parent
2155fb281c
commit
5df918dd43
2 changed files with 20 additions and 1 deletions
|
@ -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.*
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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 ->
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue