We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug Using the following descriptor:
--- context: context source: test projects: - name: "foo" consumers: - principal: User:greta topics: - name: "foo" schemas: - principal: User:greta subjects: - "context.test.foo.foo-key" - "context.test.foo.foo-value"
results in creation of
Principal | Role | ResourceType | Name | PatternType -------------+-----------------+--------------+----------------------------------+-------------- User:greta | ResourceOwner | Subject | Subject:context.test.foo.foo-key | LITERAL User:greta | ResourceOwner | Subject | Subject:context.test.foo.foo-key | LITERAL
Expected behavior Imho the "Subject" in the rolebinding role name is superfluous and incorrect I would rather expect this:
Principal | Role | ResourceType | Name | PatternType -------------+-----------------+--------------+----------------------------------+-------------- User:greta | ResourceOwner | Subject | context.test.foo.foo-key | LITERAL User:greta | ResourceOwner | Subject | context.test.foo.foo-key | LITERAL
The text was updated successfully, but these errors were encountered:
UPDATE: This happens also when creating Subject role bindings via custom roles:
Subject
roles: - name: "subjectowner" acls: - resourceType: "Subject" resourceName: "test" patternType: "Literal" host: "*" role: "ResourceOwner"
Sorry, something went wrong.
Thanks for reporting this issue. I add a fix, including regression tests as well. This should be fixed with #405, this is, for now, available in master and in the latest nightly release build from https://github.com/kafka-ops/julie/actions/workflows/nightly-artifacts-build.yml
It will be included in next release, it would be awesome if you can grab from master and let me know here all is good.
No branches or pull requests
Describe the bug
Using the following descriptor:
results in creation of
Expected behavior
Imho the "Subject" in the rolebinding role name is superfluous and incorrect
I would rather expect this:
The text was updated successfully, but these errors were encountered: