File tree Expand file tree Collapse file tree
rust/operator-binary/src/crd Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -653,6 +653,31 @@ impl KafkaTlsSecurity {
653653 KafkaListenerName :: Internal . listener_ssl_truststore_type ( ) ,
654654 "PKCS12" . to_string ( ) ,
655655 ) ;
656+ // CONTROLLERS
657+ config. insert (
658+ KafkaListenerName :: Controller . listener_ssl_keystore_location ( ) ,
659+ format ! ( "{}/keystore.p12" , Self :: STACKABLE_TLS_KAFKA_INTERNAL_DIR ) ,
660+ ) ;
661+ config. insert (
662+ KafkaListenerName :: Controller . listener_ssl_keystore_password ( ) ,
663+ Self :: SSL_STORE_PASSWORD . to_string ( ) ,
664+ ) ;
665+ config. insert (
666+ KafkaListenerName :: Controller . listener_ssl_keystore_type ( ) ,
667+ "PKCS12" . to_string ( ) ,
668+ ) ;
669+ config. insert (
670+ KafkaListenerName :: Controller . listener_ssl_truststore_location ( ) ,
671+ format ! ( "{}/truststore.p12" , Self :: STACKABLE_TLS_KAFKA_INTERNAL_DIR ) ,
672+ ) ;
673+ config. insert (
674+ KafkaListenerName :: Controller . listener_ssl_truststore_password ( ) ,
675+ Self :: SSL_STORE_PASSWORD . to_string ( ) ,
676+ ) ;
677+ config. insert (
678+ KafkaListenerName :: Controller . listener_ssl_truststore_type ( ) ,
679+ "PKCS12" . to_string ( ) ,
680+ ) ;
656681 // client auth required
657682 config. insert (
658683 KafkaListenerName :: Internal . listener_ssl_client_auth ( ) ,
You can’t perform that action at this time.
0 commit comments