Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for OtherPods (0.11 sec)

  1. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    			if otherPods > 0 {
    				msg = fmt.Sprintf("%s and %d pod(s) in different namespaces", msg, otherPods)
    			}
    		} else {
    			// No local pods, there are pods only in different namespaces.
    			msg = fmt.Sprintf("Volume is already used by %d pod(s) in different namespaces", otherPods)
    		}
    		simpleMsg, _ := volumeToAttach.GenerateMsg("Multi-Attach error", msg)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. pkg/kubelet/lifecycle/predicate.go

    		return PodAdmitResult{
    			Admit:   false,
    			Reason:  "PodOSNotSupported",
    			Message: "Failed to admit pod as the OS field doesn't match node OS",
    		}
    	}
    
    	pods := attrs.OtherPods
    	nodeInfo := schedulerframework.NewNodeInfo(pods...)
    	nodeInfo.SetNode(node)
    
    	// TODO: Remove this after the SidecarContainers feature gate graduates to GA.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 00:47:50 UTC 2023
    - 10.9K bytes
    - Viewed (0)
Back to top