Skip to content
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

[ISSUE] populate identity internal URL even if identity is disabled #3083

Open
hamza-m-masood opened this issue Mar 5, 2025 · 0 comments · May be fixed by #3084
Open

[ISSUE] populate identity internal URL even if identity is disabled #3083

hamza-m-masood opened this issue Mar 5, 2025 · 0 comments · May be fixed by #3084
Labels
kind/issue Unidentified issue, it could be a bug, misconfig, or anything in between platform/aws Issues related to AWS platform/gcp Issues related to GCP

Comments

@hamza-m-masood
Copy link
Contributor

Describe the issue:

This helper function only allows the creation of an identity internal URL if the identity component is enabled. This creates problems for usecases with scenarios such as OIDC enabled multinamespace deployments mentioned in our Production Guide.

Actual behavior:

For example, if this internal URL is left empty In this helper function then zeebe gateway will not properly authenticate with Identity and will result in operate, optimize and tasklist failing.

A fix for this helper function could be as follows:

{{/*
[camunda-platform] Identity internal URL.
*/}}
{{ define "camundaPlatform.identityURL" }}
  {{- if .Values.global.identity.service.url -}}
    {{- .Values.global.identity.service.url -}}
  {{- else -}}
    {{-
      printf "http://%s:%v%s"
        (include "identity.fullname" .)
        .Values.identity.service.port
        (default "" .Values.identity.contextPath)
    -}}
  {{- end -}}
{{- end -}}

Environment:

Please note: Without the following info, it's hard to resolve the issue and probably it will be closed.

  • Platform:
  • Helm CLI version:
  • Chart version: 8.7, 8.6, and potentially other versions as well.
  • Values file:
@hamza-m-masood hamza-m-masood added the kind/issue Unidentified issue, it could be a bug, misconfig, or anything in between label Mar 5, 2025
@github-actions github-actions bot added platform/aws Issues related to AWS platform/gcp Issues related to GCP labels Mar 5, 2025
@hamza-m-masood hamza-m-masood linked a pull request Mar 6, 2025 that will close this issue
6 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/issue Unidentified issue, it could be a bug, misconfig, or anything in between platform/aws Issues related to AWS platform/gcp Issues related to GCP
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant