Description
Is your feature request related to a problem? Please describe.
Currently, a landing page only knows about those appDefinitons that are configured for use in the helm chart under landingPage.additionalApps
. This introduces two problematic aspects and leaves a lot of potential aside.
Administrative effort
When a new AppDefinition
is introduced to the cluster, it's not available whatsoever. An administrator has to make manually add it to the helm chart using the resource's exact name
and decide on a label
. This process is cumbersome and prone to typos.
Loss of information
While the landing page and the respective section in the helm chart only accept a name
and label
per additional app, the AppDefinition
in K8s offers way more information. Some of it might not be useful for the landing page, other might provide value (resource limits, image name). Due to the limitation of having to manually link landingPage.additionalApps
with the existing resources, information is lost.
Describe the solution you'd like
We are currently building a landing page suited for multiple use cases introducing a lot of complexity here. For that it would be very helpful to make the AppDefinitions
more powerful and push more decision making power to the landing page. I think of the following features:
Auto-Discovering suitable AppDefinitions
Instead of having to manually configure additionalApps
in the helm chart, I propose the landing page to automatically discover suitable AppDefinition
s in the cluster/namespace and load them alongside their complete properties. This would solve both problems described above.
In the current Theia Cloud setup, the operator
already has API access to K8s and could provide the landing page with internal information about available definitions. This introduces the problem that all existing definitions would be visible to a landing page.
Add key-value configuration of AppDefinitions
The AppDefinition
resource could be enlarged even further by add a key-value configuration mechanism utilized during manifest creation. Following the argumentation above, I would propose to add a showAtLandingpage: false
entry that could decide whether it's auto-discoverable.
Apart from this advantage, the mechanism also introduces powerful logic into landing pages, e.g., by multiplexing in respect to path parameters. We could automatically start a blueprint whenever it's provided via the ?appDef
path parameter but show a well-designed overview of all available apps when started without. This overview could be parametrized by (exemplary) key-value information like
"showAtLandingpage": true,
"values": {
"public": true,
"language": "Java",
"learnability": "Easy",
"built_by": "Jon Doe",
}
Describe alternatives you've considered
We could fork both the theia-cloud-helm
and theia-cloud
repos and enlarge the set of configurable information passed between them (landingPage.additionalApps
). This would unlock all user-facing advantages but still require considerable manual efforts and potential for errors.
Cluster provider
No response
Additional information
No response