-
Notifications
You must be signed in to change notification settings - Fork 493
[auth] support kerberos authentication #2263
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
base: main
Are you sure you want to change the base?
Conversation
0d09169 to
32973c9
Compare
|
Hi @loserwang1024, Please take a look when you have a time. Thank you |
loserwang1024
left a comment
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.
@SML0127 , Thanks for your work.
There is no test for ITcase in this pr, would you like to add some test in SaslAuthenticationITCASE and FlinkAuthorizationITCase?
abstract class FlinkAuthorizationITCase extends AbstractTestBase {
@Test
void testKerberosAuthorization() throws Exception {
final FlussClusterExtension kerberosFluss =
FlussClusterExtension.builder()
.setNumOfTabletServers(3)
.setCoordinatorServerListeners("FLUSS://localhost:0, CLIENT://localhost:0")
.setTabletServerListeners("FLUSS://localhost:0, CLIENT://localhost:0")
.setClusterConf(initKerberosConfig())
.build();
try{
kerberosFluss.start();
//todo: add test for kerberos.
}finally {
kerberosFluss.close();
}
}```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.
Copilot encountered an error and was unable to review this pull request. You can try again by re-requesting a review.
1d29912 to
7c5e3c3
Compare
|
The failure in |
|
Hi @loserwang1024 |
Purpose
Linked issue: close #498
Support kerberos authentication
Brief change log
FIP-7: Support Kerberos vis SASL/GSSAPI
Tests
API and Format
Documentation