Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for NodeRuntimeHandlerFeatures (0.24 sec)

  1. pkg/kubelet/nodestatus/setters.go

    		node.Status.RuntimeHandlers = make([]v1.NodeRuntimeHandler, len(handlers))
    		for i, h := range handlers {
    			node.Status.RuntimeHandlers[i] = v1.NodeRuntimeHandler{
    				Name: h.Name,
    				Features: &v1.NodeRuntimeHandlerFeatures{
    					RecursiveReadOnlyMounts: &h.SupportsRecursiveReadOnlyMounts,
    				},
    			}
    		}
    		return nil
    	}
    }
    
    // ReadyCondition returns a Setter that updates the v1.NodeReady condition on the node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top