Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CloudCIDRAllocatorInvalidMode (0.35 sec)

  1. pkg/controller/nodeipam/ipam/sync/sync_test.go

    			fake:      fakeAPIs{aliasRange: test.MustParseCIDR("10.1.2.3/16")},
    			events:    []fakeEvent{{"node1", "CloudCIDRAllocatorInvalidMode"}},
    			wantError: true,
    		},
    		{
    			desc:      "allocate range",
    			mode:      SyncFromCloud,
    			node:      nodeWithoutCIDRRange,
    			events:    []fakeEvent{{"node1", "CloudCIDRAllocatorInvalidMode"}},
    			wantError: true,
    		},
    		{
    			desc: "allocate range",
    			mode: SyncFromCluster,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. pkg/controller/nodeipam/ipam/sync/sync.go

    	InvalidPodCIDR = "CloudCIDRAllocatorInvalidPodCIDR"
    	// InvalidModeEvent is the event recorded when the CIDR range cannot be
    	// sync'd due to the cluster running in the wrong mode.
    	InvalidModeEvent = "CloudCIDRAllocatorInvalidMode"
    	// MismatchEvent is the event recorded when the CIDR range allocated in the
    	// node spec does not match what has been allocated in the cloud.
    	MismatchEvent = "CloudCIDRAllocatorMismatch"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 07:50:01 UTC 2023
    - 12.6K bytes
    - Viewed (0)
Back to top