Hi Team,

I am using ignite-core in containerized environment, and I have integrated 
ignite with my containerize application it works fine.
I now want to enable SSL within the ignite nodes for cluster communication.

I have got certs in pem format

  *   srvcert.pem
  *   cacertbundle.pem
  *   srvprivkey.pem

Ignite API for SSL configuration

SslContextFactory factory = new SslContextFactory();

                                
factory.setKeyStoreFilePath("certs/srvcert.pem");
                                
factory.setKeyStorePassword(PASSWORD1.toCharArray());
                                
factory.setTrustStoreFilePath("certs/srvcert.pem");
                                
factory.setTrustStorePassword(PASSWORD2.toCharArray());
                                factory.setProtocol("TLSv1.2");
                                igniteCfg.setSslContextFactory(factory);

Is there a way ignite can consume the certs in pem format that is available?

If not what is the best way out here. And if any documentation for same is 
available

Thanks,
Pankaj Bhadani

Reply via email to