Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for shouldIgnoreNodeUpdate (0.29 sec)

  1. pkg/controller/daemon/daemon_controller.go

    			dsc.enqueueDaemonSet(ds)
    		}
    	}
    }
    
    // shouldIgnoreNodeUpdate returns true if Node labels and taints have not changed, otherwise returns false.
    // If other calling functions need to use other properties of Node, shouldIgnoreNodeUpdate needs to be updated.
    func shouldIgnoreNodeUpdate(oldNode, curNode v1.Node) bool {
    	return apiequality.Semantic.DeepEqual(oldNode.Labels, curNode.Labels) &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top