Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for addressType (0.28 sec)

  1. pkg/proxy/config/config_test.go

    	go sharedInformers.Start(stopCh)
    	go config.Run(stopCh)
    
    	endpoints1 := &discoveryv1.EndpointSlice{
    		ObjectMeta:  metav1.ObjectMeta{Namespace: "testnamespace", Name: "foo"},
    		AddressType: discoveryv1.AddressTypeIPv4,
    		Endpoints: []discoveryv1.Endpoint{{
    			Addresses: []string{"1.1.1.1"},
    		}, {
    			Addresses: []string{"2.2.2.2"},
    		}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/proxier_test.go

    				NodePort: int32(svcNodePort),
    			}}
    		}),
    	)
    	populateEndpointSlices(proxier,
    		makeTestEndpointSlice(svcPortName.Namespace, svcPortName.Name, 1, func(eps *discovery.EndpointSlice) {
    			eps.AddressType = discovery.AddressTypeIPv4
    			eps.Endpoints = []discovery.Endpoint{{
    				Addresses: []string{epIpAddressRemote},
    			}}
    			eps.Ports = []discovery.EndpointPort{{
    				Name:     ptr.To(svcPortName.Port),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 28 14:30:51 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. pkg/registry/discovery/endpointslice/strategy_test.go

    	tests := []struct {
    		name        string
    		addressType discovery.AddressType
    		wantWarning bool
    	}{
    		{
    			name:        "AddressType = FQDN",
    			addressType: discovery.AddressTypeFQDN,
    			wantWarning: true,
    		},
    		{
    			name:        "AddressType = IPV4",
    			addressType: discovery.AddressTypeIPv4,
    			wantWarning: false,
    		},
    		{
    			name:        "AddressType = IPV6",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  4. pkg/controller/endpointslicemirroring/reconciler.go

    func (r *reconciler) reconcileByPortMapping(
    	endpoints *corev1.Endpoints,
    	existingSlices []*discovery.EndpointSlice,
    	desiredSet endpointsliceutil.EndpointSet,
    	endpointPorts []discovery.EndpointPort,
    	addressType discovery.AddressType,
    ) (slicesByAction, totalsByAction) {
    	slices := slicesByAction{}
    	totals := totalsByAction{}
    
    	// If no endpoints are desired, mark existing slices for deletion and
    	// return.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. pilot/pkg/xds/workload_test.go

    		expect := buildExpect(t)
    		s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{
    			KubernetesObjects: []runtime.Object{mkPod("pod", "sa", "127.0.0.1", "not-node")},
    		})
    		ads := s.ConnectDeltaADS().WithType(v3.AddressType).WithMetadata(model.NodeMetadata{NodeName: "node"})
    		ads.Request(&discovery.DeltaDiscoveryRequest{
    			ResourceNamesSubscribe:   []string{"*"},
    			ResourceNamesUnsubscribe: []string{"*"},
    		})
    		ads.ExpectEmptyResponse()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. pkg/controlplane/reconcilers/endpointsadapter_test.go

    	_, epSlice4IP := generateEndpointsAndSlice("foo", "testing", []int{80}, []string{"10.1.2.7", "10.1.2.8"})
    	// "IP" is a deprecated address type, ensuring that it is handled properly.
    	epSlice4IP.AddressType = discovery.AddressType("IP")
    	_, epSlice4IPv4 := generateEndpointsAndSlice("foo", "testing", []int{80}, []string{"10.1.2.7", "10.1.2.8"})
    
    	testCases := map[string]struct {
    		expectedError  error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. pkg/proxy/endpointschangetracker.go

    func (ect *EndpointsChangeTracker) EndpointSliceUpdate(endpointSlice *discovery.EndpointSlice, removeSlice bool) bool {
    	if !supportedEndpointSliceAddressTypes.Has(endpointSlice.AddressType) {
    		klog.V(4).InfoS("EndpointSlice address type not supported by kube-proxy", "addressType", endpointSlice.AddressType)
    		return false
    	}
    
    	// This should never happen
    	if endpointSlice == nil {
    		klog.ErrorS(nil, "Nil endpointSlice passed to EndpointSliceUpdate")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  8. pkg/controller/endpointslicemirroring/reconciler_test.go

    				switch epSlice.AddressType {
    				case discovery.AddressTypeIPv4:
    					matchingEndpointsV4 = append(matchingEndpointsV4, epSlice.Endpoints...)
    				case discovery.AddressTypeIPv6:
    					matchingEndpointsV6 = append(matchingEndpointsV6, epSlice.Endpoints...)
    				default:
    					t.Fatalf("Unexpected EndpointSlice address type found: %v", epSlice.AddressType)
    				}
    			}
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	disableRouteGeneration bool
    
    	// disableNameSuffix, if set, will avoid appending -<class> to names
    	disableNameSuffix bool
    
    	// addressType is the default address type to report
    	addressType gateway.AddressType
    }
    
    var classInfos = getClassInfos()
    
    var builtinClasses = getBuiltinClasses()
    
    func getBuiltinClasses() map[gateway.ObjectName]gateway.GatewayController {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/pac/kerberos/KerberosEncData.java

                        ASN1Integer addressType = ASN1Util.as(ASN1Integer.class, addressSequence, 0);
                        DEROctetString addressOctets = ASN1Util.as(DEROctetString.class, addressSequence, 1);
    
                        this.userAddresses = new ArrayList<>();
                        if ( addressType.getValue().intValue() == KerberosConstants.AF_INTERNET ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top