I'd like to be able to configure a stripeSize of 2, with no server started automatically, and only manually do:
voltron.getClusterControl().startOneServer();
voltron.getClusterControl().waitForActive();
Currently, If I have a stripe size of 2, 2 servers starts and if I only want 1 active I must do something like:
voltron.getClusterControl().waitForActive();
voltron.getClusterControl().waitForRunningPassivesInStandby();
voltron.getClusterControl().terminateOnePassive();
@anthonydahanne : this is for our Failover tests