Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for endpoints2 (0.49 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/endpoints.yaml

    apiVersion: v1
    kind: Endpoints
    metadata:
      creationTimestamp: '2016-10-04T17:45:58Z'
      labels:
        app: my-app
      name: app-server
      namespace: default
      resourceVersion: '184597135'
      selfLink: /self/link
      uid: 6826f086-8a5a-11e6-8d09-42010a800005
    subsets:
    - addresses:
      - ip: 10.0.0.1
        targetRef:
          kind: Pod
          name: pod-name-1234-0000
          namespace: default
          resourceVersion: '1234567890'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 183.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/endpoints.yaml

    apiVersion: v1
    kind: Endpoints
    metadata:
      creationTimestamp: '2016-10-04T17:45:58Z'
      labels:
        app: my-app
      name: app-server
      namespace: default
      resourceVersion: '184597135'
      selfLink: /self/link
      uid: 6826f086-8a5a-11e6-8d09-42010a800005
    subsets:
    - addresses:
      - ip: 10.0.0.1
        targetRef:
          kind: Pod
          name: pod-name-1234-0000
          namespace: default
          resourceVersion: '1234567890'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 25 19:51:58 UTC 2019
    - 183.9K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier_test.go

    		add chain ip kube-proxy reject-chain { comment "helper for @no-endpoint-services / @no-endpoint-nodeports" ; }
    		add rule ip kube-proxy reject-chain reject
    
    		add map ip kube-proxy no-endpoint-services { type ipv4_addr . inet_proto . inet_service : verdict ; comment "vmap to drop or reject packets to services with no endpoints" ; }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/proxier_test.go

    				{endpoint: "1.1.1.1:11", isLocal: false},
    				{endpoint: "1.1.1.2:11", isLocal: true},
    			},
    			makeServicePortName("ns1", "ep1", "p12", v1.ProtocolUDP): {
    				{endpoint: "1.1.1.1:12", isLocal: false},
    				{endpoint: "1.1.1.2:12", isLocal: true},
    			},
    			makeServicePortName("ns1", "ep1", "p13", v1.ProtocolUDP): {
    				{endpoint: "1.1.1.3:13", isLocal: false},
    				{endpoint: "1.1.1.4:13", isLocal: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_builder_test.go

    		},
    	}
    
    	sortEndpoints := func(endpoints []*endpoint.LocalityLbEndpoints) {
    		sort.SliceStable(endpoints, func(i, j int) bool {
    			if strings.Compare(endpoints[i].Locality.Region, endpoints[j].Locality.Region) < 0 {
    				return true
    			}
    			if strings.Compare(endpoints[i].Locality.Zone, endpoints[j].Locality.Zone) < 0 {
    				return true
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  6. pkg/config/validation/validation_test.go

    			warning: false,
    		},
    
    		{
    			name: "discovery type DNS, IP in endpoints", in: &networking.ServiceEntry{
    				Hosts: []string{"*.google.com"},
    				Ports: []*networking.ServicePort{
    					{Number: 80, Protocol: "http", Name: "http-valid1"},
    					{Number: 8080, Protocol: "http", Name: "http-valid2"},
    				},
    				Endpoints: []*networking.WorkloadEntry{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    	tests := []struct {
    		endpoint api.Endpoints
    		expected []metav1.TableRow
    	}{
    		// Basic endpoint with no IP's
    		{
    			endpoint: api.Endpoints{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "endpoint1",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    			},
    			// Columns: Name, Endpoints, Age
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

                "type": "string"
              },
              "endpoints": {
                "description": "endpoints is a list of unique endpoints in this slice. Each slice may include a maximum of 1000 endpoints.",
                "items": {
                  "allOf": [
                    {
                      "$ref": "#/components/schemas/io.k8s.api.discovery.v1.Endpoint"
                    }
                  ],
                  "default": {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
Back to top