Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for clustered (0.35 sec)

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

    				},
    			},
    			expectedSubsetClusters: []*cluster.Cluster{
    				{
    					Name:                 "outbound|8080|foobar|foo.default.svc.cluster.local",
    					ClusterDiscoveryType: &cluster.Cluster_Type{Type: cluster.Cluster_EDS},
    					EdsClusterConfig: &cluster.Cluster_EdsClusterConfig{
    						ServiceName: "outbound|8080|foobar|foo.default.svc.cluster.local",
    					},
    					CircuitBreakers: &cluster.CircuitBreakers{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster.go

    func (p clusterPatcher) conditionallyAppend(l []*cluster.Cluster, hosts []host.Name, clusters ...*cluster.Cluster) []*cluster.Cluster {
    	if !p.hasPatches() {
    		return append(l, clusters...)
    	}
    	for _, c := range clusters {
    		if patched := p.doPatch(hosts, c); patched != nil {
    			l = append(l, patched)
    		}
    	}
    	return l
    }
    
    func (p clusterPatcher) insertedClusters() []*cluster.Cluster {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    					Status:            workloadapi.WorkloadStatus_HEALTHY,
    					ClusterId:         testC,
    					Services: map[string]*workloadapi.PortList{
    						"ns/a.example.com": {
    							Ports: []*workloadapi.Port{{
    								ServicePort: 80,
    								TargetPort:  80,
    							}},
    						},
    					},
    				},
    				{
    					Uid:               "cluster0/networking.istio.io/ServiceEntry/ns/name/b.example.com",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. 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)
  5. istioctl/pkg/writer/ztunnel/configdump/api.go

    	WorkloadType          string            `json:"workloadType"`
    	CanonicalName         string            `json:"canonicalName"`
    	CanonicalRevision     string            `json:"canonicalRevision"`
    	ClusterID             string            `json:"clusterId"`
    	TrustDomain           string            `json:"trustDomain,omitempty"`
    	Locality              Locality          `json:"locality,omitempty"`
    	Node                  string            `json:"node"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    			Uid:                   a.generateWorkloadEntryUID(wle.Namespace, wle.Name),
    			Name:                  wle.Name,
    			Namespace:             wle.Namespace,
    			Network:               network,
    			ClusterId:             string(a.ClusterID),
    			ServiceAccount:        wle.Spec.ServiceAccount,
    			Services:              constructServicesFromWorkloadEntry(&wle.Spec, services),
    			AuthorizationPolicies: policies,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_test.go

    				Configs:   cfgs,
    			})
    			clusters := cg.Clusters(cg.SetupProxy(nil))
    			xdstest.ValidateClusters(t, clusters)
    			if c.filter != nil {
    				clusters = xdstest.FilterClusters(clusters, c.filter)
    			}
    			g.Expect(len(clusters)).ShouldNot(Equal(0))
    
    			for _, cluster := range clusters {
    				g.Expect(cluster.CircuitBreakers).NotTo(BeNil())
    				g.Expect(cluster.CircuitBreakers.Thresholds[0]).To(Equal(c.expected))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. pilot/pkg/bootstrap/server.go

    	}
    	return jwtAuthn, nil
    }
    
    func getClusterID(args *PilotArgs) cluster.ID {
    	clusterID := args.RegistryOptions.KubeOptions.ClusterID
    	if clusterID == "" {
    		if hasKubeRegistry(args.RegistryOptions.Registries) {
    			clusterID = cluster.ID(provider.Kubernetes)
    		}
    	}
    	return clusterID
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  9. pkg/kube/kclient/client_test.go

    				Namespace: "foo",
    			},
    			want: kubetypes.InformerOptions{
    				Namespace: "foo",
    				Cluster:   c.ClusterID(),
    			},
    		},
    		{
    			name: "watch pods in the InformerWatchNamespace",
    			gvr:  gvr.Pod,
    			want: kubetypes.InformerOptions{
    				Namespace: features.InformerWatchNamespace,
    				Cluster:   c.ClusterID(),
    			},
    		},
    		{
    			name: "watch namespaces",
    			gvr:  gvr.Namespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. pkg/security/security.go

    	ProvCert string
    
    	// ClusterID is the cluster where the agent resides.
    	// Normally initialized from ISTIO_META_CLUSTER_ID - after a tortuous journey it
    	// makes its way into the ClusterID metadata of Citadel gRPC request to create the cert.
    	// Didn't find much doc - but I suspect used for 'central cluster' use cases - so should
    	// match the cluster name set in the MC setup.
    	ClusterID string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
Back to top