Examples of PublicEndpoint


Examples of org.platformlayer.ops.networks.PublicEndpoint

    vm.addChild(GerritBootstrap.class);

    vm.addChild(GerritInstance.class);

    for (int port : ports) {
      PublicEndpoint endpoint = injected(PublicEndpoint.class);
      // endpoint.network = null;
      endpoint.publicPort = port;
      endpoint.backendPort = port;
      endpoint.dnsName = dnsName;
View Full Code Here

Examples of org.platformlayer.ops.networks.PublicEndpoint

    instance.addChild(MetricsInstance.class);

    instance.addChild(LdapMasterPassword.build(model.ldapServerPassword));

    {
      PublicEndpoint endpoint = injected(PublicEndpoint.class);
      // endpoint.network = null;
      endpoint.publicPort = PORT;
      endpoint.backendPort = PORT;
      endpoint.dnsName = model.dnsName;
View Full Code Here

Examples of org.platformlayer.ops.networks.PublicEndpoint

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

    {
      PublicEndpoint endpoint = injected(PublicEndpoint.class);
      // endpoint.network = null;
      endpoint.publicPort = PORT;
      endpoint.backendPort = PORT;
      endpoint.dnsName = model.dnsName;
View Full Code Here

Examples of org.platformlayer.ops.networks.PublicEndpoint

    vm.addChild(ManagedService.build("apache2"));

    vm.addChild(MetricsInstance.class);

    {
      PublicEndpoint endpoint = injected(PublicEndpoint.class);
      // endpoint.network = null;
      endpoint.publicPort = PORT;
      endpoint.backendPort = PORT;
      endpoint.dnsName = model.dnsName;
View Full Code Here

Examples of org.platformlayer.ops.networks.PublicEndpoint

    instance.addChild(PostgresqlServerBootstrap.build());

    instance.addChild(MetricsInstance.class);

    {
      PublicEndpoint endpoint = injected(PublicEndpoint.class);
      // endpoint.network = null;
      endpoint.publicPort = 5432;
      endpoint.backendPort = 5432;
      endpoint.dnsName = model.dnsName;
View Full Code Here

Examples of org.platformlayer.ops.networks.PublicEndpoint

      SolrInstance service = injected(SolrInstance.class);
      vm.addChild(service);
    }

    {
      PublicEndpoint endpoint = injected(PublicEndpoint.class);
      // endpoint.network = null;
      endpoint.publicPort = port;
      endpoint.backendPort = port;
      endpoint.dnsName = model.dnsName;
View Full Code Here

Examples of org.platformlayer.ops.networks.PublicEndpoint

    vm.addChild(JettyInstall.class);

    vm.addChild(JettyInstance.class);

    for (int port : ports) {
      PublicEndpoint endpoint = injected(PublicEndpoint.class);
      // endpoint.network = null;
      endpoint.publicPort = port;
      endpoint.backendPort = port;
      endpoint.dnsName = dnsName;
View Full Code Here

Examples of org.platformlayer.ops.networks.PublicEndpoint

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

    {
      PublicEndpoint endpoint = injected(PublicEndpoint.class);
      // endpoint.network = null;
      endpoint.publicPort = 3306;
      endpoint.backendPort = 3306;
      endpoint.dnsName = model.dnsName;
View Full Code Here

Examples of org.platformlayer.ops.networks.PublicEndpoint

    instance.addChild(ManagedService.build("squid3"));

    // instance.addChild(CollectdCollector.build());

    {
      PublicEndpoint endpoint = injected(PublicEndpoint.class);
      endpoint.publicPort = PORT;
      endpoint.backendPort = PORT;
      endpoint.dnsName = model.dnsName;

      endpoint.tagItem = model.getKey();
View Full Code Here

Examples of org.platformlayer.ops.networks.PublicEndpoint

    // TODO: How do we bring up wordpress securely??
    // We don't have the tables until we run install.php
    // Maybe we could POST to the install.php form

    {
      PublicEndpoint endpoint = injected(PublicEndpoint.class);
      // endpoint.network = null;
      endpoint.publicPort = 80;
      endpoint.backendPort = 80;

      // We expect nginx to front-end us, so we don't put the dnsName
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.