File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed 
rust/operator-binary/src/crd Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -65,6 +65,9 @@ pub const METRICS_PORT: u16 = 9084;
6565pub  const  LISTENER_VOLUME_NAME :  & str  = "listener" ; 
6666pub  const  LISTENER_VOLUME_DIR :  & str  = "/stackable/listener" ; 
6767
68+ // Listener defaults 
69+ pub  const  DEFAULT_LISTENER_CLASS :  & str  = "cluster-internal" ; 
70+ 
6871// Certificates and trust stores 
6972pub  const  SYSTEM_TRUST_STORE :  & str  = "/etc/pki/java/cacerts" ; 
7073pub  const  SYSTEM_TRUST_STORE_PASSWORD :  & str  = "changeit" ; 
@@ -188,7 +191,7 @@ impl Default for v1alpha1::HiveMetastoreRoleConfig {
188191} 
189192
190193fn  metastore_default_listener_class ( )  -> String  { 
191-     "cluster-internal" . to_string ( ) 
194+     DEFAULT_LISTENER_CLASS . to_owned ( ) 
192195} 
193196
194197impl  HasStatusCondition  for  v1alpha1:: HiveCluster  { 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments