Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 124 for EndpointPort (0.31 sec)

  1. pkg/apis/core/validation/validation_test.go

    					Addresses: []core.EndpointAddress{{IP: "10.10.1.1"}, {IP: "10.10.2.2"}},
    					Ports:     []core.EndpointPort{{Name: "a", Port: 8675, Protocol: "TCP"}, {Name: "b", Port: 309, Protocol: "TCP"}},
    				}, {
    					Addresses: []core.EndpointAddress{{IP: "10.10.3.3"}},
    					Ports:     []core.EndpointPort{{Name: "a", Port: 93, Protocol: "TCP"}, {Name: "b", Port: 76, Protocol: "TCP"}},
    				}},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  2. pkg/apis/core/zz_generated.deepcopy.go

    func (in *EndpointPort) DeepCopyInto(out *EndpointPort) {
    	*out = *in
    	if in.AppProtocol != nil {
    		in, out := &in.AppProtocol, &out.AppProtocol
    		*out = new(string)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointPort.
    func (in *EndpointPort) DeepCopy() *EndpointPort {
    	if in == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *EndpointPort) DeepCopyInto(out *EndpointPort) {
    	*out = *in
    	if in.AppProtocol != nil {
    		in, out := &in.AppProtocol, &out.AppProtocol
    		*out = new(string)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointPort.
    func (in *EndpointPort) DeepCopy() *EndpointPort {
    	if in == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    		}
    		svcLabels[label.SecurityTlsMode.Name] = model.IstioMutualTLSModeLabel
    	}
    	return &model.ServiceInstance{
    		Service: svc,
    		Endpoint: &model.IstioEndpoint{
    			Address:              address,
    			EndpointPort:         uint32(port),
    			ServicePortName:      svcPort.Name,
    			LegacyClusterPortKey: int(svcPort.Number),
    			Labels:               svcLabels,
    			TLSMode:              tlsMode,
    		},
    		ServicePort: &model.Port{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/sidecar_simulation_test.go

    			continue
    		}
    		ret = append(ret, &model.ServiceInstance{
    			Service:     svc,
    			ServicePort: p,
    			Endpoint: &model.IstioEndpoint{
    				Address:         proxy.IPAddresses[0],
    				ServicePortName: p.Name,
    				EndpointPort:    uint32(targetPort),
    			},
    		})
    	}
    	return ret
    }
    
    func TestInboundClusters(t *testing.T) {
    	proxy := &model.Proxy{
    		IPAddresses: []string{"1.2.3.4"},
    		Metadata:    &model.NodeMetadata{},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers_test.go

    					{
    						Addresses: []api.EndpointAddress{
    							{
    								IP: "1.2.3.4",
    							},
    							{
    								IP: "5.6.7.8",
    							},
    						},
    						Ports: []api.EndpointPort{
    							{
    								Port:     8001,
    								Protocol: "tcp",
    							},
    						},
    					},
    				},
    			},
    			// 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)
  7. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
              }
            },
            "type": "object"
          },
          "io.k8s.api.discovery.v1.EndpointPort": {
            "description": "EndpointPort represents a Port used by an EndpointSlice",
            "properties": {
              "appProtocol": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

      optional string nodeName = 4;
    
      // Reference to object providing the endpoint.
      // +optional
      optional ObjectReference targetRef = 2;
    }
    
    // EndpointPort is a tuple that describes a single port.
    // +structType=atomic
    message EndpointPort {
      // The name of this port.  This must match the 'name' field in the
      // corresponding ServicePort.
      // Must be a DNS_LABEL.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	// +optional
    	NodeName *string
    	// Optional: The kubernetes object related to the entry point.
    	TargetRef *ObjectReference
    }
    
    // EndpointPort is a tuple that describes a single port.
    type EndpointPort struct {
    	// The name of this port (corresponds to ServicePort.Name).  Optional
    	// if only one port is defined.  Must be a DNS_LABEL.
    	Name string
    
    	// The port number.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. pkg/apis/core/v1/defaults_test.go

    		}
    	}
    }
    
    func TestSetDefaultEndpointsProtocol(t *testing.T) {
    	in := &v1.Endpoints{Subsets: []v1.EndpointSubset{
    		{Ports: []v1.EndpointPort{{}, {Protocol: "UDP"}, {}}},
    	}}
    	obj := roundTrip(t, runtime.Object(in))
    	out := obj.(*v1.Endpoints)
    
    	for i := range out.Subsets {
    		for j := range out.Subsets[i].Ports {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top