-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
[bitnami/keycloak] add variables to support hostname v2 #70466
Conversation
499e930
to
d39ba42
Compare
I added support for two additional variables: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @singhbaljit ,
Please note that the logic is shared for both branches 24 and 25, so you should apply it for version 24 too. I don't see any risk in doing that since the default values did not change.
Could you please check it?
The variable names are the same, but their meaning is a little different in v24 (hostname v1) vs. v25 (hostname v2), namely hostname vs. hostname URL. The chart wants to specify the full URL, and it does so by using the v1 URL variables, bypassing these variables altogether. In other words, these variables won't be used in v24. They will be used in v25 after bitnami/charts#28611 is merged. But I can certainly add it if consistency is preferred. |
@dgomezleon I updated v24 scripts as well. |
Thanks @singhbaljit LGTM. Could you please check the conflicts? |
The conflict is due to the fact that v24 is now removed 😄, see #70607 . So, I'll just undo the v24 changes. |
Signed-off-by: Baljit Singh <baljit.singh@verizon.com>
Just today :). Sorry for the noise. |
Description of the change
Use Hostname v2 options as v1 options are not used by default.
Benefits
Use updated configurations in alignment with upstream Keycloak project.
Possible drawbacks
KEYCLOAK_HOSTNAME
variable is the same between v1 and v2 option; however, its usage is slightly different in v2. User may not realize the change and expect the same behavior as v1.Applicable issues
Additional information
PR to use the options in the chart: bitnami/charts#28611.