Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 351 for clustered (0.17 sec)

  1. pkg/dns/server/name_table_test.go

    	}
    	pod4 := &model.Proxy{
    		IPAddresses: []string{"9.16.7.8"},
    		Metadata:    &model.NodeMetadata{ClusterID: "cl1"},
    		Type:        model.SidecarProxy,
    		DNSDomain:   "testns.svc.cluster.local",
    	}
    
    	headlessService := &model.Service{
    		Hostname:       host.Name("headless-svc.testns.svc.cluster.local"),
    		DefaultAddress: constants.UnspecifiedIP,
    		Ports: model.PortList{&model.Port{
    			Name:     "tcp-port",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 04:26:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. pkg/proxy/serviceport.go

    func (bsvcPortInfo *BaseServicePortInfo) String() string {
    	return fmt.Sprintf("%s:%d/%s", bsvcPortInfo.clusterIP, bsvcPortInfo.port, bsvcPortInfo.protocol)
    }
    
    // ClusterIP is part of ServicePort interface.
    func (bsvcPortInfo *BaseServicePortInfo) ClusterIP() net.IP {
    	return bsvcPortInfo.clusterIP
    }
    
    // Port is part of ServicePort interface.
    func (bsvcPortInfo *BaseServicePortInfo) Port() int {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_builder.go

    		// upstream cluster will use HTTP 1.1, if incoming traffic use HTTP2,
    		// the upstream cluster will use HTTP2.
    		cb.setUseDownstreamProtocol(cluster)
    	}
    }
    
    // normalizeClusters normalizes clusters to avoid duplicate clusters. This should be called
    // at the end before adding the cluster to list of clusters.
    func (cb *ClusterBuilder) normalizeClusters(clusters []*discovery.Resource) []*discovery.Resource {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  4. pkg/proxy/util/utils.go

    func ShouldSkipService(service *v1.Service) bool {
    	// if ClusterIP is "None" or empty, skip proxying
    	if !helper.IsServiceIPSet(service) {
    		klog.V(3).InfoS("Skipping service due to cluster IP", "service", klog.KObj(service), "clusterIP", service.Spec.ClusterIP)
    		return true
    	}
    	// Even if ClusterIP is set, ServiceTypeExternalName services don't get proxied
    	if service.Spec.Type == v1.ServiceTypeExternalName {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. hack/e2e-internal/e2e-grow-cluster.sh

    xichengliudui <******@****.***> 1550548203 -0500
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 19 03:50:03 UTC 2019
    - 1K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/grafana/replication/grafana-replication-cluster.png

    grafana-replication-cluster.png...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:15:39 UTC 2024
    - 443.8K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/fake.go

    	return f.ConfigGen.BuildListeners(p, f.PushContext())
    }
    
    func (f *ConfigGenTest) Clusters(p *model.Proxy) []*cluster.Cluster {
    	raw, _ := f.ConfigGen.BuildClusters(p, &model.PushRequest{Push: f.PushContext()})
    	res := make([]*cluster.Cluster, 0, len(raw))
    	for _, r := range raw {
    		c := &cluster.Cluster{}
    		if err := r.Resource.UnmarshalTo(c); err != nil {
    			f.t.Fatal(err)
    		}
    		res = append(res, c)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. pkg/proxy/util/utils_test.go

    					ClusterIP: "",
    				},
    			},
    			shouldSkip: true,
    		},
    		{
    			// ExternalName type service
    			service: &v1.Service{
    				ObjectMeta: metav1.ObjectMeta{Namespace: "foo", Name: "bar"},
    				Spec: v1.ServiceSpec{
    					ClusterIP: "1.2.3.4",
    					Type:      v1.ServiceTypeExternalName,
    				},
    			},
    			shouldSkip: true,
    		},
    		{
    			// ClusterIP type service with ClusterIP set
    			service: &v1.Service{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/endpoint_builder.go

    		locality: model.Locality{
    			Label:     locality,
    			ClusterID: c.Cluster(),
    		},
    		tlsMode:      kube.PodTLSMode(pod),
    		workloadName: dm.Name,
    		namespace:    namespace,
    		hostname:     hostname,
    		subDomain:    subdomain,
    		labels:       podLabels,
    		nodeName:     node,
    	}
    	networkID := out.endpointNetwork(ip)
    	out.labels = labelutil.AugmentLabels(podLabels, c.Cluster(), locality, node, networkID)
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_traffic_policy_test.go

    			opts := &buildClusterOpts{
    				mutable: newClusterWrapper(&cluster.Cluster{
    					ClusterDiscoveryType: &cluster.Cluster_Type{Type: test.discoveryType},
    				}),
    				mesh: push.Mesh,
    			}
    			cb.applyUpstreamTLSSettings(opts, test.tls, test.mtlsCtx)
    			// apply proxy protocol settings
    			cb.applyUpstreamProxyProtocol(opts, test.proxyProtocolSettings)
    			cluster := opts.mutable.cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top