Replies: 2 comments 1 reply
-
|
Hi, thanks, you are right, we should change this. We probably want to make this configurable via the Helm chart values. |
Beta Was this translation helpful? Give feedback.
-
|
One additional hint: it should be possible to override these templates: Before loading a template from the JAR, the operator will first look for a file with the same name in the /templates directory. We have an older example of this approach here: So it will be possible to customize this part without any coding, you just have to build a new operator image |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
hi,
Current Implementation Issue:
In templateDeployment.yaml (under org.eclipse.theia.cloud.operator), the default imagePullPolicy for quay.io/oauth2-proxy/oauth2-proxy is set to Always

Why This Is Problematic for Session Pod Startup:
Network connectivity issues may prevent access to the image registry, blocking application launch
The system unnecessarily pulls the image every time, despite it being already downloaded and available in containerd
Proposed Solution:
Change the default imagePullPolicy to IfNotPresent to resolve these issues
Configuration Enhancement Request:
Could the OAuth2-Proxy imagePullPolicy be made configurable in Theia-Cloud's values.yaml? If not currently supported, adding this option would provide valuable flexibility for users to choose their preferred behavior.
Beta Was this translation helpful? Give feedback.
All reactions