Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 351 for clustered (0.15 sec)

  1. pilot/pkg/serviceregistry/mock/discovery_test.go

    		ClusterID:       "cluster-1",
    	})
    	HelloInstanceV1 := MakeIP(HelloService1, 0)
    	if HelloInstanceV1 != "" {
    		t.Fatalf("MakeIP() can not handle string not the ip address.")
    	}
    
    	HelloService2 := MakeService(ServiceArgs{
    		Hostname:        "hello.default.svc.cluster.local",
    		Address:         "0:0:0:0:0:ffff:192.1.56.10",
    		ServiceAccounts: []string{},
    		ClusterID:       "cluster-1",
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 09 17:33:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/cloudproviders.go

    	}
    
    	if cloud != nil && !cloud.HasClusterID() {
    		if allowUntaggedCloud {
    			logger.Info("Warning: detected a cluster without a ClusterID.  A ClusterID will be required in the future.  Please tag your cluster to avoid any future issues")
    		} else {
    			return nil, loopMode, fmt.Errorf("no ClusterID Found.  A ClusterID is required for the cloud provider to function properly.  This check can be bypassed by setting the allow-untagged-cloud option")
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 18:16:32 UTC 2023
    - 2.9K 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/serviceregistry/kube/controller/ambient/ambientindex_serviceentry_test.go

    							Ports: []*workloadapi.Port{
    								{
    									ServicePort: 80,
    									TargetPort:  8081, // port is overridden by inlined WE port
    								},
    							},
    						},
    					},
    					ClusterId: testC,
    				},
    			},
    		},
    	}})
    
    	s.deleteServiceEntry(t, "name1", testNS)
    	s.assertEvent(t, s.seIPXdsName("name1", "127.0.0.1"), "ns1/se.istio.io")
    	assert.Equal(t, s.lookup(s.addrXdsName("127.0.0.1")), nil)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:01:04 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. pkg/kube/multicluster/component.go

    	comp := m.constructor(cluster)
    	m.mu.Lock()
    	defer m.mu.Unlock()
    	m.clusters[cluster.ID] = comp
    	return comp
    }
    
    func (m *Component[T]) clusterUpdated(cluster *Cluster) ComponentConstraint {
    	// Build outside of the lock, in case its slow
    	comp := m.constructor(cluster)
    	old, f := m.clusters[cluster.ID]
    	m.mu.Lock()
    	m.clusters[cluster.ID] = comp
    	m.mu.Unlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    		s:                      s,
    	}
    	mc.component = multicluster.BuildMultiClusterComponent(controller, func(cluster *multicluster.Cluster) *kubeController {
    		stop := make(chan struct{})
    		client := cluster.Client
    		configCluster := opts.ClusterID == cluster.ID
    
    		options := opts
    		options.ClusterID = cluster.ID
    		if !configCluster {
    			options.SyncTimeout = features.RemoteClusterTimeout
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

      kind: ClusterRole
      metadata:
        annotations:
          rbac.authorization.kubernetes.io/autoupdate: "true"
        creationTimestamp: null
        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: cluster-admin
      rules:
      - apiGroups:
        - '*'
        resources:
        - '*'
        verbs:
        - '*'
      - nonResourceURLs:
        - '*'
        verbs:
        - '*'
    - aggregationRule:
        clusterRoleSelectors:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/tracing_test.go

    						Tenant:             tc.dtTenant,
    						ClusterId:          tc.dtClusterID,
    						RootSpansPerMinute: tc.spansPerMin,
    						HttpService: &core.HttpService{
    							HttpUri: &core.HttpUri{
    								Uri: tc.expectedURI,
    								HttpUpstreamType: &core.HttpUri_Cluster{
    									Cluster: clusterName,
    								},
    								Timeout: &durationpb.Duration{Seconds: 3},
    							},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 20:47:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  9. pilot/pkg/xds/eds_sh_test.go

    	clusterID := cluster.ID(fmt.Sprintf("cluster%d", networkNum))
    	networkID := network.ID(fmt.Sprintf("network%d", networkNum))
    	memRegistry := memory.NewServiceDiscovery()
    	memRegistry.XdsUpdater = server.Discovery
    	memRegistry.ClusterID = clusterID
    
    	reg := serviceregistry.Simple{
    		ClusterID:           clusterID,
    		ProviderID:          provider.Mock,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/util/label/label.go

    		out[LabelTopologyRegion] = region
    	}
    	if len(zone) > 0 {
    		out[LabelTopologyZone] = zone
    	}
    	if len(subzone) > 0 {
    		out[label.TopologySubzone.Name] = subzone
    	}
    	if len(clusterID) > 0 {
    		out[label.TopologyCluster.Name] = clusterID.String()
    	}
    	if len(k8sNode) > 0 {
    		out[LabelHostname] = k8sNode
    	}
    	if len(networkID) > 0 {
    		out[label.TopologyNetwork.Name] = networkID.String()
    	}
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 03:56:40 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top