we are using helidon logout feature. How do I avoid the creation of .helidon-oidc-secret. Is there a way to set this in configuration ? When I deploy it to cluster it is trying to create/access .helidon-oidc-secret file. We are only allowed to have read-only filesystem on our container.
The below configuration in application.yaml seems to be working for helidon 2.5.1 in local environment:
cookie-encryption-enabled: false
cookie-encryption-password: 'c'
I am using helidon 2.5.1 hence hit the issue https://github.com/oracle/helidon/issues/4512. When I moved to 2.6.0 this issue is fixed I changed it to:
cookie-encryption-enabled: false
cookie-encryption-password: 'cxif'
Do I need to use the cookie-encryption-password ? If I don't use it getting error. When I deployed to cluster with the above changes, still I am facing issue