Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 68 for endpoints2 (0.34 sec)

  1. pkg/workloadapi/workload.pb.go

    	// 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
    	LoadBalancing_FAILOVER LoadBalancing_Mode = 2
    )
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    // of endpoints associated with mesh services, and calling the EDSUpdate on changes.
    // A registry may group endpoints for a service in smaller subsets - for example by
    // deployment, or to deal with very large number of endpoints for a service. We want
    // to avoid passing around large objects - like full list of endpoints for a registry,
    // or the full list of endpoints for a service across registries, since it limits
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/options/options_test.go

    	"--leader-elect-retry-period=5s",
    	"--legacy-service-account-token-clean-up-period=8760h",
    	"--master=192.168.4.20",
    	"--max-endpoints-per-slice=200",
    	"--min-resync-period=8h",
    	"--mirroring-concurrent-service-endpoint-syncs=2",
    	"--mirroring-max-endpoints-per-subset=1000",
    	"--namespace-sync-period=10m",
    	"--node-cidr-mask-size=48",
    	"--node-cidr-mask-size-ipv4=48",
    	"--node-cidr-mask-size-ipv6=108",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	var endpoints []*v1alpha3.WorkloadEntry
    	var workloadSelector *v1alpha3.WorkloadSelector
    
    	if epAddresses == nil {
    		workloadSelector = &v1alpha3.WorkloadSelector{
    			Labels: labels,
    		}
    	} else {
    		endpoints = []*v1alpha3.WorkloadEntry{}
    		for _, addr := range epAddresses {
    			endpoints = append(endpoints, &v1alpha3.WorkloadEntry{
    				Address: addr,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  5. pkg/kubelet/nodestatus/setters_test.go

    		name      string
    		endpoints *v1.NodeDaemonEndpoints
    		expected  *v1.NodeDaemonEndpoints
    	}{
    		{
    			name:      "empty daemon endpoints",
    			endpoints: &v1.NodeDaemonEndpoints{},
    			expected:  &v1.NodeDaemonEndpoints{KubeletEndpoint: v1.DaemonEndpoint{Port: 0}},
    		},
    		{
    			name:      "daemon endpoints with specific port",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.conversion.go

    }
    
    func autoConvert_v1beta4_ExternalEtcd_To_kubeadm_ExternalEtcd(in *ExternalEtcd, out *kubeadm.ExternalEtcd, s conversion.Scope) error {
    	out.Endpoints = *(*[]string)(unsafe.Pointer(&in.Endpoints))
    	out.CAFile = in.CAFile
    	out.CertFile = in.CertFile
    	out.KeyFile = in.KeyFile
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.proto

      //
      // The following example defines two networks with different endpoints association methods.
      // For `network1` all endpoints that their IP belongs to the provided CIDR range will be
      // mapped to network1. The gateway for this network example is specified by its public IP
      // address and port.
      // The second network, `network2`, in this example is defined differently with all endpoints
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/sidecar_simulation_test.go

    			}
    
    			for cname, c := range cmap {
    				// Check the upstream endpoints match
    				got := xdstest.ExtractLoadAssignments([]*endpoint.ClusterLoadAssignment{c.GetLoadAssignment()})[cname]
    				if !reflect.DeepEqual(tt.clusters[cname], got) {
    					t.Errorf("%v: expected endpoints %v, got %v", cname, tt.clusters[cname], got)
    				}
    				gotTelemetry := extractClusterMetadataServices(t, c)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: switch to using the new etcd endpoints introduced in 3.5.11 - /livez (for liveness probe) and /readyz (for readyness and startup probe). With this change it is no longer possible to deploy a custom etcd version older than 3.5.11 with kubeadm 1.31. If so, please upgrade. ([#124465](ht...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener.go

    							// A Kubernetes service with no endpoints means there are no endpoints at
    							// all, so don't bother sending, as traffic will never work. If we did
    							// send a wildcard listener, we may get into a situation where a scale
    							// down leads to a listener conflict. Similarly, if we have a
    							// labelSelector on the Service, then this may have endpoints not yet
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top