Examples of MonkeyConfiguration


Examples of com.netflix.simianarmy.MonkeyConfiguration

     */
    public BasicChaosMonkeyContext() {
        super("simianarmy.properties", "client.properties", "chaos.properties");
        setChaosCrawler(new ASGChaosCrawler(awsClient()));
        setChaosInstanceSelector(new BasicChaosInstanceSelector());
        MonkeyConfiguration cfg = configuration();
        setChaosEmailNotifier(new BasicChaosEmailNotifier(cfg, new AmazonSimpleEmailServiceClient(), null));
    }
View Full Code Here

Examples of com.netflix.simianarmy.MonkeyConfiguration

* @author ingmar.krusch@immobilienscout24.de
*/
public class VSphereContext extends BasicChaosMonkeyContext {
    @Override
    protected void createClient() {
        MonkeyConfiguration config = configuration();
        final PropertyBasedTerminationStrategy terminationStrategy = new PropertyBasedTerminationStrategy(config);
        final VSphereServiceConnection connection = new VSphereServiceConnection(config);
        final VSphereClient client = new VSphereClient(terminationStrategy, connection);
        setCloudClient(client);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.