Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ObjectsNotInLists (0.17 sec)

  1. operator/pkg/helmreconciler/apply.go

    	nsObjs := object.KindObjects(changedObjects, name.NamespaceStr)
    	crdObjs := object.KindObjects(changedObjects, name.CRDStr)
    	otherObjs := object.ObjectsNotInLists(changedObjects, nsObjs, crdObjs)
    	for _, objList := range []object.K8sObjects{nsObjs, crdObjs, otherObjs} {
    		// For a given group of objects, apply in sorted order of priority with no wait in between.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. operator/pkg/object/objects.go

    			return 1001
    
    			// Create services late - after pods have been started
    		case gk == "/Service":
    			return 10000
    
    		default:
    			return 1000
    		}
    	}
    }
    
    func ObjectsNotInLists(objects K8sObjects, lists ...K8sObjects) K8sObjects {
    	var ret K8sObjects
    
    	filterMap := make(map[*K8sObject]bool)
    	for _, list := range lists {
    		for _, object := range list {
    			filterMap[object] = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 15.5K bytes
    - Viewed (0)
Back to top