Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ExtractNodeStatus (0.26 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/node.go

    func ExtractNode(node *apicorev1.Node, fieldManager string) (*NodeApplyConfiguration, error) {
    	return extractNode(node, fieldManager, "")
    }
    
    // ExtractNodeStatus is the same as ExtractNode except
    // that it extracts the status subresource applied configuration.
    // Experimental!
    func ExtractNodeStatus(node *apicorev1.Node, fieldManager string) (*NodeApplyConfiguration, error) {
    	return extractNode(node, fieldManager, "status")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 11.6K bytes
    - Viewed (0)
Back to top