Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ComponentDependencies (0.12 sec)

  1. operator/pkg/helmreconciler/reconciler.go

    }
    
    // initDependencies initializes the dependencies channel tree.
    func initDependencies() map[name.ComponentName]chan struct{} {
    	ret := make(map[name.ComponentName]chan struct{})
    	for _, parent := range ComponentDependencies {
    		for _, child := range parent {
    			ret[child] = make(chan struct{}, 1)
    		}
    	}
    	return ret
    }
    
    // Reconcile reconciles the associated resources.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top