Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Implemented
-
1.0.0
-
None
Description
TLSClientConfig in DN should use DN privateKey, DN Cert, CALIst, and MTLS to true.
Today it uses below as TLSClientConfig
tlsConfig = new GrpcTlsConfig(null, null, caCerts, false);
This is used in RaftClient for making add Group call in CreatePipelineCommandHandler.
And in createTLSParameters for client config set mTLS to true which is used by DN.
GrpcTlsConfig clientConfig = new GrpcTlsConfig( caClient.getPrivateKey(), caClient.getCertificate(), caList, false); GrpcConfigKeys.Client.setTlsConf(parameters, clientConfig);
Attachments
Issue Links
- is fixed by
-
HDDS-5246 Wait for ever to obtain CA list which is needed during OM/DN startup
- Resolved