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 @@ -85,7 +85,7 @@ pub const MAX_PREPARE_LOG_FILE_SIZE: MemoryQuantity = MemoryQuantity {
8585 unit : BinaryMultiple :: Mebi ,
8686} ;
8787
88- pub const DOCKER_IMAGE_BASE_NAME : & str = "zookeeper" ;
88+ pub const CONTAINER_IMAGE_BASE_NAME : & str = "zookeeper" ;
8989
9090const DEFAULT_SERVER_GRACEFUL_SHUTDOWN_TIMEOUT : Duration = Duration :: from_minutes_unchecked ( 2 ) ;
9191pub const DEFAULT_LISTENER_CLASS : & str = "cluster-internal" ;
@@ -750,6 +750,8 @@ impl v1alpha1::ZookeeperCluster {
750750
751751#[ cfg( test) ]
752752mod tests {
753+ use stackable_operator:: versioned:: test_utils:: RoundtripTestData ;
754+
753755 use super :: * ;
754756
755757 fn get_server_secret_class ( zk : & v1alpha1:: ZookeeperCluster ) -> Option < & str > {
@@ -929,4 +931,16 @@ mod tests {
929931 tls:: quorum_tls_default( ) . as_str( )
930932 ) ;
931933 }
934+
935+ impl RoundtripTestData for v1alpha1:: ZookeeperClusterSpec {
936+ fn roundtrip_test_data ( ) -> Vec < Self > {
937+ vec ! [ ]
938+ }
939+ }
940+
941+ impl RoundtripTestData for v1alpha1:: ZookeeperZnodeSpec {
942+ fn roundtrip_test_data ( ) -> Vec < Self > {
943+ vec ! [ ]
944+ }
945+ }
932946}
You can’t perform that action at this time.
0 commit comments