Package org.platformlayer.ops.instances

Examples of org.platformlayer.ops.instances.InstanceBuilder.addChild()


      addChild(vm);
    }

    {
      SystemAuthInstall install = vm.addChild(SystemAuthInstall.class);
    }

    {
      SystemAuthInstance service = vm.addChild(SystemAuthInstance.class);
    }
View Full Code Here


    {
      SystemAuthInstall install = vm.addChild(SystemAuthInstall.class);
    }

    {
      SystemAuthInstance service = vm.addChild(SystemAuthInstance.class);
    }

    {
      PublicEndpoint endpoint = vm.addChild(PublicEndpoint.class);
      // endpoint.network = null;
View Full Code Here

    {
      SystemAuthInstance service = vm.addChild(SystemAuthInstance.class);
    }

    {
      PublicEndpoint endpoint = vm.addChild(PublicEndpoint.class);
      // endpoint.network = null;
      endpoint.publicPort = BACKEND_PORT;
      endpoint.backendPort = BACKEND_PORT;
      // endpoint.dnsName = dnsName;
View Full Code Here

      addChild(vm);
    }

    {
      UserAuthInstall install = vm.addChild(UserAuthInstall.class);
    }

    {
      UserAuthInstance service = vm.addChild(UserAuthInstance.class);
    }
View Full Code Here

    {
      UserAuthInstall install = vm.addChild(UserAuthInstall.class);
    }

    {
      UserAuthInstance service = vm.addChild(UserAuthInstance.class);
    }

    {
      PublicEndpoint endpoint = vm.addChild(PublicEndpoint.class);
      // endpoint.network = null;
View Full Code Here

    {
      UserAuthInstance service = vm.addChild(UserAuthInstance.class);
    }

    {
      PublicEndpoint endpoint = vm.addChild(PublicEndpoint.class);
      // endpoint.network = null;
      endpoint.publicPort = BACKEND_PORT;
      endpoint.backendPort = BACKEND_PORT;
      // endpoint.dnsName = dnsName;
      endpoint.transport = Transport.Ipv6;
View Full Code Here

    instance.minimumMemoryMb = 1024;

    instance.hostPolicy.allowRunInContainer = true;
    addChild(instance);

    instance.addChild(PackageDependency.build("memcached"));

    MemcacheTemplateModel template = injected(MemcacheTemplateModel.class);

    instance.addChild(TemplatedFile.build(template, new File("/etc/memcached.conf")));
View Full Code Here

    instance.addChild(PackageDependency.build("memcached"));

    MemcacheTemplateModel template = injected(MemcacheTemplateModel.class);

    instance.addChild(TemplatedFile.build(template, new File("/etc/memcached.conf")));

    // Collectd not restarting correctly (doesn't appear to be hostname problems??)
    // instance.addChild(CollectdCollector.build());

    {
View Full Code Here

      endpoint.dnsName = model.dnsName;

      endpoint.tagItem = model.getKey();
      endpoint.parentItem = model.getKey();

      instance.addChild(endpoint);
    }

    instance.addChild(ManagedService.build("memcached"));
  }
}
View Full Code Here

      endpoint.parentItem = model.getKey();

      instance.addChild(endpoint);
    }

    instance.addChild(ManagedService.build("memcached"));
  }
}
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.