-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Fix nullpointer that occurs when OAuthKafkaPrincipalBuilder is used with Kerberos listener #207
Merged
mstruk
merged 8 commits into
strimzi:main
from
akaczano:fix-bug-with-principal-builder-on-kerberos-listener
Jan 28, 2024
+449
−10
Merged
Changes from 1 commit
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
b7fbcca
Extend reflection hacks to instantiate KerberosShortNamer object
akaczano 83f4a73
Added integration test for kerberos listener
akaczano 97b2143
Small tweaks
akaczano 3c97f8e
Add kerberos KDC hostname to travis hosts configuration
akaczano 31ac9ed
Add version tag to dockerfile
akaczano 88a0534
Fixed spacing in pom
akaczano 0576b85
Remove debugging print statements/asserts from test
akaczano fe0930a
Allow the exclusion of kerberos tests
mstruk File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add version tag to dockerfile
Signed-off-by: Aidan Kaczanowski <Aidan.Kaczanowski@viasat.com>
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
@mstruk Are you fine with this being based on Ubuntu? Strimzi IMHO does not use Ubuntu images anywhere else. So I would feel better if this used Red Hat UBI images as all our other projects. But I can live with this if you are fine with it.
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.
Now that you pointed this out, if I remember correctly, we had some Travis build issues with Ubuntu images on some architectures.
@akaczano Could you try use:
FROM registry.access.redhat.com/ubi8/ubi
or
FROM registry.access.redhat.com/ubi8/openjdk-17
You may need to install some additional packages.
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.
Sure; I'll give that a try.
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.
I took a look at this and it looks very challenging to set it up on
ubi8
. Tried a few leads with no luck. The needed packagekrb5-server
doesn't seem to be available in the repo or is behind some kind of subscription wall. The setup is apparently very complicated as it is, and putting it together with any alternative would be just as complicated if not more. I suggest we keep it as is, and exclude the test run on architectures that will cause problems due to unavailability of platform specific container images.