Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 351 for clustered (0.32 sec)

  1. istioctl/pkg/writer/compare/cluster.go

    	}
    	diff := difflib.UnifiedDiff{
    		FromFile: "Istiod Clusters",
    		A:        difflib.SplitLines(istiodBytes.String()),
    		ToFile:   "Envoy Clusters",
    		B:        difflib.SplitLines(envoyBytes.String()),
    		Context:  c.context,
    	}
    	text, err := difflib.GetUnifiedDiffString(diff)
    	if err != nil {
    		return err
    	}
    	if text != "" {
    		fmt.Fprintln(c.w, "Clusters Don't Match")
    		fmt.Fprintln(c.w, text)
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. pilot/pkg/util/informermetric/informerutil.go

    func ErrorHandlerForCluster(clusterID cluster.ID) cache.WatchErrorHandler {
    	mu.RLock()
    	handler, ok := handlers[clusterID]
    	mu.RUnlock()
    	if ok {
    		return handler
    	}
    
    	mu.Lock()
    	defer mu.Unlock()
    	clusterMetric := errorMetric.With(clusterLabel.Value(clusterID.String()))
    	h := func(_ *cache.Reflector, err error) {
    		clusterMetric.Increment()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/pilot/status_test.go

    	proxyID   string
    	clusterID string
    	version   string
    
    	cdsSyncStatus  status.ConfigStatus
    	ldsSyncStatus  status.ConfigStatus
    	rdsSyncStatus  status.ConfigStatus
    	edsSyncStatus  status.ConfigStatus
    	ecdsSyncStatus status.ConfigStatus
    }
    
    func newXdsClientConfig(config clientConfigInput) *status.ClientConfig {
    	meta := model.NodeMetadata{
    		ClusterID:    cluster.ID(config.clusterID),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/aggregate/controller_test.go

    	registry2Counter := atomic.NewInt32(0)
    
    	for _, r := range registries {
    		counter := atomic.NewInt32(0)
    		clusterID := r.Cluster()
    		if clusterID == "cluster1" {
    			counter = registry1Counter
    		}
    		if clusterID == "cluster2" {
    			counter = registry2Counter
    		}
    		ctrl.AppendServiceHandlerForCluster(clusterID, func(_, curr *model.Service, event model.Event) {
    			counter.Add(1)
    		})
    		ctrl.AddRegistry(r)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/ztunnel/configdump/testdata/dump.json

        },
        {
          "identity": "spiffe://cluster.local/ns/istio-system/sa/ztunnel",
          "state": "Initializing",
          "certChain": []
        },
        {
          "identity": "spiffe://cluster.local/ns/istio-system/sa/another-sa",
          "state": "Unavailable: the identity is no longer needed",
          "certChain": []
        },
        {
          "identity": "spiffe://cluster.local/ns/istio-system/sa/istiod",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/config/cluster.go

    func FetchInitConfigurationFromCluster(client clientset.Interface, printer output.Printer, logPrefix string, newControlPlane, skipComponentConfigs bool) (*kubeadmapi.InitConfiguration, error) {
    	if printer == nil {
    		printer = &output.TextPrinter{}
    	}
    	printer.Printf("[%s] Reading configuration from the cluster...\n", logPrefix)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. pkg/test/framework/components/cluster/cluster.go

    	PrimaryName() string
    
    	// Config returns the config cluster for this cluster. Will return itself if
    	// IsConfig.
    	Config() Cluster
    
    	// ConfigName returns the name of the config cluster for this cluster.
    	ConfigName() string
    
    	// HTTPProxy returns the HTTP proxy config to connect to the cluster
    	HTTPProxy() string
    
    	// Metadata returns the value for a given metadata key for the cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/envoy/configdump/cluster.go

    		if c.Cluster != nil {
    			clusterTyped := &cluster.Cluster{}
    			// Support v2 or v3 in config dump. See ads.go:RequestedTypes for more info.
    			c.Cluster.TypeUrl = v3.ClusterType
    			err = c.Cluster.UnmarshalTo(clusterTyped)
    			if err != nil {
    				return nil, err
    			}
    			clusters = append(clusters, clusterTyped)
    		}
    	}
    	for _, c := range clusterDump.StaticClusters {
    		if c.Cluster != nil {
    			clusterTyped := &cluster.Cluster{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 05:38:17 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/tracing.go

    	}
    	meshID := metadata.MeshID
    	if meshID == "" {
    		meshID = "unknown"
    	}
    	namespace := metadata.Namespace
    	if namespace == "" {
    		namespace = "default"
    	}
    	clusterID := string(metadata.ClusterID)
    	if clusterID == "" {
    		clusterID = "unknown"
    	}
    	return []*tracing.CustomTag{
    		{
    			Tag: "istio.canonical_revision",
    			Type: &tracing.CustomTag_Literal_{
    				Literal: &tracing.CustomTag_Literal{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/mock/discovery_mock.go

    	// WorldService is a mock service with `world.default.svc.cluster.local` as
    	// a hostname and `10.2.0.0` for ip
    	WorldService = MakeService(ServiceArgs{
    		Hostname: "world.default.svc.cluster.local",
    		Address:  "10.2.0.0",
    		ServiceAccounts: []string{
    			"spiffe://cluster.local/ns/default/sa/world1",
    			"spiffe://cluster.local/ns/default/sa/world2",
    		},
    		ClusterID: "cluster-2",
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 23 02:37:56 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top