-
Notifications
You must be signed in to change notification settings - Fork 138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ENHANCEMENT] Add a custom trust store to Console #1850
Comments
Please let me know if I have missed anything @theburi |
To workaround the issue, the user can set the environment variable NODE_EXTRA_CA_CERTS to the path of the root cert. This approach is already used by Identity here. This worked for a customer in SUPPORT-22029 |
I can add a |
i have asked some questions to console team to gain more insight: https://camunda.slack.com/archives/CKZK2E7RP/p1729760739706979 |
From talking to the console team, it seems like it is not possible to reference a folder of certificates in a single env var. So instead, I will introduce another value that also exists in the bitnami charts: |
Describe the use case:
Research and implement adding a trust store to Console. For example, a use-case for this feature would be to add self-signed certificates to Console.
Research is required since Console is not a Java application. It is made with Vue and javascript. The same functionality can't be replicated from other Java apps.
Related slack thread: https://camunda.slack.com/archives/C03UR0V2R2M/p1716362967508299
Describe the enhancement/feature:
Currently in other applications, it is possible to add a custom trust store through the use of the
JAVA_TOOL_OPTIONS
env var. Here is an excerpt from the optimize deployment template:It would be ideal to have a dedicated folder to store the file with the trust store. Just like there are dedicated folders in other Java based applications.
Desired outcome and acceptance tests:
Tasks
The text was updated successfully, but these errors were encountered: