Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ClusterIPAlreadyAllocated (0.35 sec)

  1. pkg/registry/core/service/ipallocator/controller/repair.go

    			case ipallocator.ErrAllocated:
    				// cluster IP is duplicate
    				clusterIPRepairIPErrors.WithLabelValues("duplicate").Inc()
    				c.recorder.Eventf(&svc, nil, v1.EventTypeWarning, "ClusterIPAlreadyAllocated", "ClusterIPAllocation", "Cluster IP [%v]:%s was assigned to multiple services; please recreate service", family, ip)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. pkg/registry/core/service/ipallocator/controller/repairip_test.go

    			},
    			cidrs: []*networkingv1alpha1.ServiceCIDR{
    				newServiceCIDR("kubernetes", serviceCIDRv4, serviceCIDRv6),
    			},
    			events: []string{"Warning ClusterIPAlreadyAllocated Cluster IP [IPv4]:10.0.1.1 was assigned to multiple services; please recreate service"},
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    
    			c, r := newFakeRepair()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  3. pkg/registry/core/service/ipallocator/controller/repairip.go

    			for _, clusterIP := range refService.Spec.ClusterIPs {
    				if ipAddress.Name == clusterIP {
    					r.recorder.Eventf(svc, nil, v1.EventTypeWarning, "ClusterIPAlreadyAllocated", "ClusterIPAllocation", "Cluster IP [%v]:%s was assigned to multiple services; please recreate service", family, ip)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top