@@ -191,22 +191,6 @@ public TarantoolCartridgeContainer(String dockerFile, String buildImageName, Str
191
191
this (buildImage (dockerFile , buildImageName , buildArgs ), instancesFile , topologyConfigurationFile , buildArgs );
192
192
}
193
193
194
- // todo add SSL and mTLS cartridge test
195
- // /**
196
- // * Create a container with specified image and specified instances file from the classpath resources. By providing
197
- // * the result Cartridge container image name, you can cache the image and avoid rebuilding on each test run (the
198
- // * image is tagged with the provided name and not deleted after tests finishing).
199
- // *
200
- // * @param tarantoolImageParams params for cached image creating
201
- // * @param instancesFile URL resource path to instances.yml relative in the classpath
202
- // * @param topologyConfigurationFile URL resource path to a topology bootstrap script in the classpath
203
- // */
204
- // public TarantoolCartridgeContainer(TarantoolImageParams tarantoolImageParams, String instancesFile,
205
- // String topologyConfigurationFile) {
206
- // this(new ImageFromDockerfile(TarantoolContainerImageHelper.getImage(tarantoolImageParams)), instancesFile,
207
- // topologyConfigurationFile, tarantoolImageParams.getBuildArgs());
208
- // }
209
-
210
194
private TarantoolCartridgeContainer (ImageFromDockerfile image , String instancesFile , String topologyConfigurationFile ,
211
195
Map <String , String > buildArgs ) {
212
196
super (withBuildArgs (image , buildArgs ));
@@ -269,20 +253,6 @@ private static ImageFromDockerfile buildImage(String dockerFile, String buildIma
269
253
"cartridge" : buildArgs .get ("CARTRIDGE_SRC_DIR" ));
270
254
}
271
255
272
- // todo add SSL and mTLS cartridge test
273
- // /**
274
- // * Specify SSL as connection transport. And path to key and cert files inside your container for mTLS connection
275
- // * Warning! SSL must be set as default transport on your tarantool cluster.
276
- // * Supported only in Tarantool Enterprise
277
- // *
278
- // * @return this container instance
279
- // */
280
- // public TarantoolCartridgeContainer withSslContext(SslContext sslContext) {
281
- // checkNotRunning();
282
- // this.sslContext = sslContext;
283
- // return this;
284
- // }
285
-
286
256
/**
287
257
* Get the router host
288
258
*
0 commit comments