Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,163 for endpoints2 (0.18 sec)

  1. pkg/workloadapi/workload.proto

        // that match less (or, eventually, none) preferences.
        // For instance, with `[NETWORK, REGION, ZONE]`, we will send to:
        // 1. Endpoints matching `[NETWORK, REGION, ZONE]`
        // 2. Endpoints matching `[NETWORK, REGION]`
        // 3. Endpoints matching `[NETWORK]`
        // 4. Any endpoints
        FAILOVER = 2;
      }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/envoy/clusters/clusters.go

    	clusterEndpoint = retrieveSortedEndpointClusterSlice(clusterEndpoint)
    	fmt.Fprintln(w, "ENDPOINT\tSTATUS\tOUTLIER CHECK\tCLUSTER")
    	for _, ce := range clusterEndpoint {
    		var endpoint string
    		if ce.port != 0 {
    			endpoint = ce.address + ":" + strconv.Itoa(ce.port)
    		} else {
    			endpoint = ce.address
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/cri_stats_provider_windows.go

    			continue
    		}
    
    		// only add the interface for each container if not already in the list
    		for _, cId := range endpoint.SharedContainers {
    			networkStat, found := networkStats[cId]
    			if found && networkStat.Name != endpoint.Name {
    				iStat := hcsStatToInterfaceStat(endpointStats, endpoint.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 07:03:11 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. pilot/pkg/xds/endpoints/endpoint_builder.go

    		healthStatus = model.Draining
    	}
    
    	ep := &endpoint.LbEndpoint{
    		HealthStatus: corev3.HealthStatus(healthStatus),
    		LoadBalancingWeight: &wrapperspb.UInt32Value{
    			Value: e.GetLoadBalancingWeight(),
    		},
    		HostIdentifier: &endpoint.LbEndpoint_Endpoint{
    			Endpoint: &endpoint.Endpoint{
    				Address: addr,
    			},
    		},
    		Metadata: &corev3.Metadata{},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. releasenotes/notes/drop-legacy-spiffe-bundle-endpoints.yaml

    John Howard <******@****.***> 1683594068 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 09 01:01:08 UTC 2023
    - 134 bytes
    - Viewed (0)
  6. prow/config/calico.yaml

                      traffic that goes from a workload endpoint to the host itself (after
                      the traffic hits the endpoint egress policy). By default Calico
                      blocks traffic from workload endpoints to the host itself with an
                      iptables "DROP" action. If you want to allow some or all traffic
                      from endpoint to host, set this parameter to RETURN or ACCEPT. Use
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  7. pkg/controlplane/reconcilers/endpointsadapter.go

    // returned.
    func (adapter *EndpointsAdapter) Create(namespace string, endpoints *corev1.Endpoints) (*corev1.Endpoints, error) {
    	endpoints, err := adapter.endpointClient.Endpoints(namespace).Create(context.TODO(), endpoints, metav1.CreateOptions{})
    	if err == nil {
    		err = adapter.EnsureEndpointSliceFromEndpoints(namespace, endpoints)
    	}
    	return endpoints, err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 27 12:46:23 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  8. pkg/controller/endpointslicemirroring/reconciler.go

    	endpointsNN := types.NamespacedName{Name: endpoints.Name, Namespace: endpoints.Namespace}
    	r.metricsCache.UpdateEndpointPortCache(endpointsNN, epMetrics)
    
    	return r.finalize(endpoints, slices)
    }
    
    // reconcileByPortMapping compares the endpoints found in existing slices with
    // the list of desired endpoints and returns lists of slices to create, update,
    // and delete.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  9. pkg/controller/endpointslicemirroring/utils_test.go

    					Namespace:       endpoints.Namespace,
    					OwnerReferences: []metav1.OwnerReference{*ownerRef},
    				},
    				Ports:       ports,
    				AddressType: addrType,
    				Endpoints:   []discovery.Endpoint{},
    			},
    		},
    		{
    			name: "create slice from endpoints with annotations",
    			tweakEndpoint: func(ep *v1.Endpoints) {
    				annotations := map[string]string{"foo": "bar"}
    				ep.Annotations = annotations
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 23 15:40:23 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  10. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller_test.go

    		testName: "Endpoints with skip-mirror=true",
    		endpoints: &v1.Endpoints{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "test-endpoints",
    				Labels: map[string]string{
    					discovery.LabelSkipMirror: "true",
    				},
    			},
    		},
    		shouldMirror: false,
    	}, {
    		testName: "Endpoints with skip-mirror=invalid",
    		endpoints: &v1.Endpoints{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "test-endpoints",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 13.9K bytes
    - Viewed (0)
Back to top