-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
Hey @wyhdil, to get a deeper understanding of the architecture diagram (and Theia Cloud itself), you could check out our talk at EclipseCon about the topic. Especially interesting for your question should be the Section from 7:52. It first describes the operator pattern in general and then walks through the architecture above. To already answer part of your question: Hope this helps. |
Beta Was this translation helpful? Give feedback.
-
@sgraband Hello,now I have some questions about OIDC, can you help me?
But I can’t find what exactly the authentication here does. I would like to know what the authentication is done here. For example, is the id_token returned by keycloak used for verification or email or the like for verification? |
Beta Was this translation helpful? Give feedback.
Hey @wyhdil,
to get a deeper understanding of the architecture diagram (and Theia Cloud itself), you could check out our talk at EclipseCon about the topic.
Especially interesting for your question should be the Section from 7:52. It first describes the operator pattern in general and then walks through the architecture above.
To already answer part of your question:
The CRs themself to not contain any functions, they are just resources that contain information. The operator just watches these resources. For an entrypoint in the code you can take a look here.
The operator knows which CRs to watch and what information it can expect from the CustomResourceDefinitions (CRDs) that are bluepri…