Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,299 for endpoints2 (0.2 sec)

  1. pkg/controller/endpointslicemirroring/utils.go

    		return nil
    	}
    	return service
    }
    
    // getEndpointsFromDeleteAction parses an Endpoints resource from a delete
    // action.
    func getEndpointsFromDeleteAction(obj interface{}) *corev1.Endpoints {
    	if endpoints, ok := obj.(*corev1.Endpoints); ok {
    		return endpoints
    	}
    	// If we reached here it means the Endpoints resource was deleted but its
    	// final state is unrecorded.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/etcd/etcd_test.go

    type fakeEtcdClient struct {
    	members   []*pb.Member
    	endpoints []string
    }
    
    // Close shuts down the client's etcd connections.
    func (f *fakeEtcdClient) Close() error {
    	f.members = []*pb.Member{}
    	return nil
    }
    
    // Endpoints lists the registered endpoints for the client.
    func (f *fakeEtcdClient) Endpoints() []string {
    	return f.endpoints
    }
    
    // MemberList lists the current cluster membership.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.json

    [
        {
            "clusterName": "agent",
            "endpoints": [
                {
                    "locality": {},
                    "lbEndpoints": [
                        {
                            "endpoint": {
                                "address": {
                                    "socketAddress": {
                                        "address": "127.0.0.1",
                                        "portValue": 15020
                                    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 40.4K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.yaml

    - clusterName: agent
      endpoints:
      - lbEndpoints:
        - endpoint:
            address:
              socketAddress:
                address: 127.0.0.1
                portValue: 15020
            healthCheckConfig: {}
          healthStatus: HEALTHY
          loadBalancingWeight: 1
        locality: {}
      policy:
        overprovisioningFactor: 140
    - clusterName: outbound|9402||cert-manager-istio-csr-metrics.cert-manager.svc.cluster.local
      endpoints:
      - lbEndpoints:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  5. pkg/controller/endpointslicemirroring/metrics/metrics.go

    var (
    	// EndpointsAddedPerSync tracks the number of endpoints added on each
    	// Endpoints sync.
    	EndpointsAddedPerSync = metrics.NewHistogramVec(
    		&metrics.HistogramOpts{
    			Subsystem:      EndpointSliceMirroringSubsystem,
    			Name:           "endpoints_added_per_sync",
    			Help:           "Number of endpoints added on each Endpoints sync",
    			StabilityLevel: metrics.ALPHA,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 06 19:43:35 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  6. pilot/pkg/xds/endpoints/ep_filters.go

    					ClusterID: gw.Cluster,
    				},
    				Labels: labelutil.AugmentLabels(nil, gw.Cluster, "", "", gw.Network),
    			}
    
    			// Generate the EDS endpoint for this gateway.
    			gwEp := &endpoint.LbEndpoint{
    				HostIdentifier: &endpoint.LbEndpoint_Endpoint{
    					Endpoint: &endpoint.Endpoint{
    						Address: epAddr,
    					},
    				},
    				LoadBalancingWeight: &wrappers.UInt32Value{
    					Value: epWeight,
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/serviceentry/controller.go

    	}
    	s.mutex.RUnlock()
    
    	if len(allInstances) > 0 {
    		endpoints = make(map[instancesKey][]*model.IstioEndpoint)
    		for _, instance := range allInstances {
    			key := makeInstanceKey(instance)
    			endpoints[key] = append(endpoints[key], instance.Endpoint)
    		}
    
    	}
    	return endpoints
    }
    
    // GetProxyServiceTargets lists service targets co-located with a given proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/configdump.json

                            "cluster_name": "sds-grpc",
                            "endpoints": [
                                {
                                    "locality": {},
                                    "lb_endpoints": [
                                        {
                                            "endpoint": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 66K bytes
    - Viewed (0)
  9. pkg/registry/discovery/endpointslice/strategy_test.go

    				Endpoints: []discovery.Endpoint{{
    					Addresses: []string{"1.2.3.4"},
    				}},
    			},
    		},
    		{
    			name: "changed endpoints should increment generation",
    			oldEPS: &discovery.EndpointSlice{
    				ObjectMeta: metav1.ObjectMeta{Generation: 1},
    				Endpoints: []discovery.Endpoint{{
    					Addresses: []string{"1.2.3.4"},
    				}},
    			},
    			newEPS: &discovery.EndpointSlice{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  10. internal/config/etcd/etcd.go

    		}
    		// If one of the endpoint is https, we will use https directly.
    		etcdSecure = etcdSecure || u.Scheme == "https"
    	}
    
    	return etcdEndpoints, etcdSecure, nil
    }
    
    // Enabled returns if etcd is enabled.
    func Enabled(kvs config.KVS) bool {
    	endpoints := kvs.Get(Endpoints)
    	return endpoints != ""
    }
    
    // LookupConfig - Initialize new etcd config.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top