-
Notifications
You must be signed in to change notification settings - Fork 141
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
Connectors NPE due to missing operate URL when identity disabled #2642
Comments
The customer use case for this type of installation is:
|
Hello! |
It should have been the latest version at the time of my posting. |
That would be 11.1.0 |
Actually, the customer is partially air-gapped. So they downloaded the Helm chart sources as a zip file from GitHub around the time when I opened the issue and the pointed |
Thanks, this makes sense to me. |
Expected: Connector configuration understands that identity is turned off via
global.identity.auth.enabled: false
andidentity.enabled: false
.But this config map ends up without any URL for Operate:
camunda-platform-helm/charts/camunda-platform-8.6/templates/connectors/configmap.yaml
Lines 28 to 35 in 4aca7ec
which causes a Nullpointer Exception in the Connector Runtime:
As a workaround, I set
connectors.inbound.mode: disabled
and that worked.I guess,
connectors.inbound.mode: credentials
would also work and if so, that would my proposal for a fix.The text was updated successfully, but these errors were encountered: