dkropachev opened a new pull request, #1382: URL: https://github.com/apache/cassandra-spark-connector/pull/1382
## Summary - Fixes #29 - SSL configuration format differs between Cassandra and Scylla - Add PEM-based SSL configuration methods (`withSslPem`, `withSslAuthPem`) for Scylla - Regenerate certificates with proper Subject Alternative Names for IP-based test connections - Enable SSL integration tests for Scylla ## Changes - `CcmConfig`: Add `withSslPem` and `withSslAuthPem` methods for Scylla's PEM certificate format - `Fixtures.scala`: Update `SSLCluster` and `AuthCluster` to conditionally use PEM or JKS format based on `scyllaEnabled` - SSL certificates: Regenerate with SANs including `127.x.x.x` IP addresses for test connectivity - Test specs: Remove `assumeNotScylla` calls to enable SSL tests for Scylla ## Background Scylla uses PEM-format certificates (`certificate`/`keyfile` in YAML) while Cassandra uses JKS keystores (`keystore`/`keystore_password`). This change allows the test infrastructure to configure SSL correctly for both databases. ## Test plan - [ ] Verify SSL tests pass with Cassandra - [ ] Verify SSL tests pass with Scylla - [ ] CI passes for both database types -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

