Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for InvalidIPAddress (0.15 sec)

  1. pkg/registry/networking/ipaddress/strategy_test.go

    	}
    
    	invalidIPAddress := newIPAddress.DeepCopy()
    	invalidIPAddress.Name = "invalid/name"
    	invalidIPAddress.ResourceVersion = "4"
    	errs = Strategy.Validate(ctx, invalidIPAddress)
    	if len(errs) == 0 {
    		t.Errorf("Expected error from validation for ipAddress, got none")
    	}
    	errs = Strategy.ValidateUpdate(ctx, invalidIPAddress, &ipAddress)
    	if len(errs) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 19 02:12:34 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. pkg/controller/endpointslicemirroring/events.go

    	// FailedToUpdateEndpointSlices indicates the controller has failed to
    	// update EndpointSlices.
    	FailedToUpdateEndpointSlices = "FailedToUpdateEndpointSlices"
    	// InvalidIPAddress indicates that an IP address found in an Endpoints
    	// resource is invalid.
    	InvalidIPAddress = "InvalidIPAddress"
    	// TooManyAddressesToMirror indicates that some addresses were not mirrored
    	// due to an EndpointSubset containing more addresses to mirror than
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 06 19:43:35 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  3. pkg/controller/endpointslicemirroring/reconciler.go

    	// Record an event on the Endpoints resource if we skipped mirroring for any
    	// invalid IP addresses.
    	if numInvalidAddresses > 0 {
    		r.eventRecorder.Eventf(endpoints, corev1.EventTypeWarning, InvalidIPAddress,
    			"Skipped %d invalid IP addresses when mirroring to EndpointSlices", numInvalidAddresses)
    	}
    
    	// Record a separate event if we skipped mirroring due to the number of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top