-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 19 replies
-
Hey @wyhdil, which assignment are you talking about? I hope this answers your question. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Hey @wyhdil, which assignment are you talking about? I hope this answers your question. |
Beta Was this translation helpful? Give feedback.
The "deployments" in your screenshots are not deployments, but Custom Resources (CRs). You can manually apply a CR using
kubectl apply -f <fileName>
. In a standard Theia Cloud deployment this would be done via the service that offers endpoints for requesting a new session (deployment).Once the resource is applied to the cluster (it doesn't matter if that happens manually or via the service) the operator handles that resource and creates the deployment with the information of the CR. This is done, by replacing the placeholders in this file and then applying that file.
The replacements are happening here.
Hope this helps.