Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ClusterIPNotValid (0.14 sec)

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

    			ip := netutils.ParseIPSloppy(ip)
    			if ip == nil {
    				// cluster IP is corrupt
    				clusterIPRepairIPErrors.WithLabelValues("invalid").Inc()
    				c.recorder.Eventf(&svc, nil, v1.EventTypeWarning, "ClusterIPNotValid", "ClusterIPValidation", "Cluster IP %s is not a valid IP; please recreate service", ip)
    				runtime.HandleError(fmt.Errorf("the cluster IP %s for service %s/%s is not a valid IP; please recreate", ip, svc.Name, svc.Namespace))
    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.go

    		if ip == nil {
    			// ClusterIP is corrupt, ClusterIPs are already validated, but double checking here
    			// in case there are some inconsistencies with the parsers
    			r.recorder.Eventf(svc, nil, v1.EventTypeWarning, "ClusterIPNotValid", "ClusterIPValidation", "Cluster IP %s is not a valid IP; please recreate Service", ip)
    			runtime.HandleError(fmt.Errorf("the ClusterIP %s for Service %s/%s is not a valid IP; please recreate Service", ip, svc.Namespace, svc.Name))
    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