-
Notifications
You must be signed in to change notification settings - Fork 0
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
Is it possible to change implementation for groups ? #192
Comments
Yes this indeed looks like a bug, thanks for reporting. |
I think the issue was not completly fixed.
Nonetheless, when I use the proper object structure
I get: |
I can't reproduce this. Are you certain you are running the latest version as well as updated crds? Please try with a new realm also. |
The issue was with upgrading the CRDs, I did not know that Helm does not reinstall CRDs if it already existed 😓 Thanks for the help 👍 |
Hello
First of all, i'm grateful for this well-designed controller :).
I'm facing an issue with groups not being imported.
Group structure :
Describe the change
For now, groups are defined by :
Groups []string `json:"groups,omitempty"`
From Keycloak api doc, group representation consist of maps, strings, array and subgroups.
https://www.keycloak.org/docs-api/21.0.1/rest-api/index.html#_grouprepresentation
Current situation
Groups are :
Groups []string `json:"groups,omitempty"`
Should
Groups should be :
Groups []GroupRepresentation `json:"groups,omitempty"`
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: