Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for serviceInstance (0.31 sec)

  1. pilot/pkg/networking/core/cluster_test.go

    		Resolution:   c.serviceResolution,
    		MeshExternal: c.externalService,
    		Attributes: model.ServiceAttributes{
    			Namespace: TestServiceNamespace,
    		},
    	}
    
    	instances := []*model.ServiceInstance{
    		{
    			Service:     service,
    			ServicePort: servicePort[0],
    			Endpoint: &model.IstioEndpoint{
    				Address:         "6.6.6.6",
    				ServicePortName: servicePort[0].Name,
    				EndpointPort:    10001,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. architecture/networking/pilot.md

    This is composed of two controllers - one driven from core Kubernetes types ("Kube Controller") and one by Istio types ("ServiceEntry controller").
    
    ```mermaid
    graph TD
        subgraph Kube Controller
            s(Services)
            e(Endpoints)
            p(Pods)
            ksi(ServiceInstances)
            kwi(WorkloadInstances)
            s-->ksi
            e-->ksi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  3. pilot/pkg/model/gateway.go

    		}
    	}
    	ret := ports.UnsortedList()
    	if len(ret) == 0 && legacyGatewaySelector {
    		// When we are using legacy gateway label selection, we should bind to the port as-is if there is
    		// no matching ServiceInstance.
    		return []uint32{number}
    	}
    	// For cases where we are directly referencing a Service, we know that they port *must* be in the Service,
    	// so we have no fallback. If there was no match, the Gateway is a no-op.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

                .build());
        }
    
        private <T> void registerServiceOn(ModelRegistry modelRegistry, String path, ModelType<T> type, T instance, String descriptor) {
            modelRegistry.register(ModelRegistrations.serviceInstance(ModelReference.of(path, type), instance)
                .descriptor(descriptor)
                .build()
            );
        }
    
        private String instanceDescriptorFor(String path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		Metadata:    &model.NodeMetadata{Namespace: "nsa", ClusterID: clusterID},
    	}
    	serviceInstances := controller.GetProxyServiceTargets(svcNode)
    
    	if len(serviceInstances) != 1 {
    		t.Fatalf("GetProxyServiceTargets() expected 1 instance, got %d", len(serviceInstances))
    	}
    
    	hostname := kube.ServiceHostname("svc1", "nsa", defaultFakeDomainSuffix)
    	if serviceInstances[0].Service.Hostname != hostname {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context.go

    	// Full determines whether a full push is required or not. If false, an incremental update will be sent.
    	// Incremental pushes:
    	// * Do not recompute the push context
    	// * Do not recompute proxy state (such as ServiceInstances)
    	// * Are not reported in standard metrics such as push time
    	// As a result, configuration updates should never be incremental. Generally, only EDS will set this, but
    	// in the future SDS will as well.
    	Full bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top