@@ -15,7 +15,8 @@ def create_topologies(ctx,
1515 odbc_driver = None ,
1616 zone_name = 'tempZone' ,
1717 consumer_count = 0 ,
18- install_packages = True ):
18+ install_packages = True ,
19+ ** kwargs ):
1920 """Create several generic topologies of iRODS servers with the given inputs.
2021
2122 This is a convenience function for standing up multiple, identical iRODS Zones with the
@@ -50,7 +51,7 @@ def create_topologies(ctx,
5051 # This should generate a list of identical zone infos
5152 zone_info_list = irods_setup .get_info_for_zones (ctx , zone_names , consumer_count )
5253
53- irods_setup .setup_irods_zones (ctx , zone_info_list , odbc_driver = odbc_driver )
54+ irods_setup .setup_irods_zones (ctx , zone_info_list , odbc_driver = odbc_driver , ** kwargs )
5455
5556
5657def create_topology (ctx ,
@@ -59,7 +60,8 @@ def create_topology(ctx,
5960 package_version = None ,
6061 odbc_driver = None ,
6162 consumer_count = 0 ,
62- install_packages = True ):
63+ install_packages = True ,
64+ ** kwargs ):
6365 """Create a generic topology of iRODS servers with the given inputs.
6466
6567 This is a convenience function for standing up an iRODS Zone with the default
@@ -81,7 +83,8 @@ def create_topology(ctx,
8183 package_version = package_version ,
8284 odbc_driver = odbc_driver ,
8385 consumer_count = consumer_count ,
84- install_packages = install_packages )
86+ install_packages = install_packages ,
87+ ** kwargs )
8588
8689
8790def clone_repository_to_container (container ,
0 commit comments