Examples of ZookeeperCluster


Examples of org.platformlayer.service.zookeeper.model.ZookeeperCluster

  @Test
  public void testCreateAndDeleteItem() throws Exception {
    String id = "zk-" + random.randomAlphanumericString(8);

    ZookeeperCluster cluster = new ZookeeperCluster();
    cluster.dnsName = id + ".test.platformlayer.org";

    cluster = putItem(id, cluster);
    cluster = waitForHealthy(cluster);
View Full Code Here

Examples of org.platformlayer.service.zookeeper.model.ZookeeperCluster

  Passwords passwords;

  @Override
  public void beforeCreateItem(ItemBase item) throws OpsException {
    if (item instanceof ZookeeperCluster) {
      ZookeeperCluster model = (ZookeeperCluster) item;
      // if (Secret.isNullOrEmpty(model.ipsecSecret)) {
      // model.ipsecSecret = passwords.generateIpsecPSK();
      // }
    }
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.