Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for endpoints2 (0.27 sec)

  1. pilot/pkg/networking/core/cluster_test.go

    	}
    	g.Expect(c.CommonLbConfig.HealthyPanicThreshold.GetValue()).To(Equal(float64(10)))
    
    	g.Expect(len(c.LoadAssignment.Endpoints)).To(Equal(3))
    	for _, localityLbEndpoint := range c.LoadAssignment.Endpoints {
    		locality := localityLbEndpoint.Locality
    		if locality.Region == "region1" && locality.SubZone == "subzone1" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. cmd/bucket-policy-handlers_test.go

    	}
    }
    
    // Wrapper for calling Create Bucket and ensure we get one and only one success.
    func TestCreateBucket(t *testing.T) {
    	ExecObjectLayerAPITest(ExecObjectLayerAPITestArgs{t: t, objAPITest: testCreateBucket, endpoints: []string{"MakeBucket"}})
    }
    
    // testCreateBucket - Test for calling Create Bucket and ensure we get one and only one success.
    func testCreateBucket(obj ObjectLayer, instanceType, bucketName string, apiRouter http.Handler,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    }
    
    // Pass ports=nil for all ports.
    func formatEndpoints(endpoints *api.Endpoints, ports sets.String) string {
    	if len(endpoints.Subsets) == 0 {
    		return "<none>"
    	}
    	list := []string{}
    	max := 3
    	more := false
    	count := 0
    	for i := range endpoints.Subsets {
    		ss := &endpoints.Subsets[i]
    		if len(ss.Ports) == 0 {
    			// It's possible to have headless services with no ports.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. samples/addons/kiali.yaml

        version: "v1.85.0"
        app.kubernetes.io/version: "v1.85.0"
        app.kubernetes.io/managed-by: Helm
        app.kubernetes.io/part-of: "kiali"
    rules:
    - apiGroups: [""]
      resources:
      - configmaps
      - endpoints
      - pods/log
      verbs:
      - get
      - list
      - watch
    - apiGroups: [""]
      resources:
      - namespaces
      - pods
      - replicationcontrollers
      - services
      verbs:
      - get
      - list
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    					errs = AppendValidation(errs, errors.New("endpoint cannot be nil"))
    					continue
    				}
    				if !netutil.IsValidIPAddress(endpoint.Address) {
    					if err := agent.ValidateFQDN(endpoint.Address); err != nil { // Otherwise could be an FQDN
    						errs = AppendValidation(errs,
    							fmt.Errorf("endpoint address %q is not a valid FQDN or an IP address", endpoint.Address))
    					}
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. pkg/config/constants/constants.go

    	DefaultClusterLocalDomain = "cluster.local"
    
    	// DefaultClusterSetLocalDomain is the default domain suffix for Kubernetes Multi-Cluster Services (MCS)
    	// used for load balancing requests against endpoints across the ClusterSet (i.e. mesh).
    	DefaultClusterSetLocalDomain = "clusterset.local"
    
    	// DefaultClusterName is the default cluster name
    	DefaultClusterName = "Kubernetes"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. manifests/addons/dashboards/pilot-dashboard.gen.json

                         "options": "eds"
                      },
                      "properties": [
                         {
                            "id": "displayName",
                            "value": "Endpoints"
                         }
                      ]
                   },
                   {
                      "matcher": {
                         "id": "byName",
                         "options": "lds"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K 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. cmd/object-handlers_test.go

    func TestAPIHeadObjectHandler(t *testing.T) {
    	ExecObjectLayerAPITest(ExecObjectLayerAPITestArgs{t: t, objAPITest: testAPIHeadObjectHandler, endpoints: []string{"HeadObject"}})
    }
    
    func testAPIHeadObjectHandler(obj ObjectLayer, instanceType, bucketName string, apiRouter http.Handler,
    	credentials auth.Credentials, t *testing.T,
    ) {
    	objectName := "test-object"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
Back to top