Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for theme (0.13 sec)

  1. cni/pkg/config/config.go

    	Enabled bool
    
    	// The node name that the CNI DaemonSet runs on
    	NodeName string
    
    	// Key and value for broken pod label
    	LabelKey   string
    	LabelValue string
    
    	// Whether to fix race condition by repairing them
    	RepairPods bool
    
    	// Whether to fix race condition by delete broken pods
    	DeletePods bool
    
    	// Whether to label broken pods
    	LabelPods bool
    
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Apr 30 22:24:38 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  2. internal/config/config.go

    	}
    
    	if target != "" {
    		found := false
    		for _, t := range targets {
    			if t == target {
    				found = true
    				break
    			}
    		}
    		if !found {
    			return nil, Errorf("there is no target `%s` for subsystem `%s`", target, subSys)
    		}
    		targets = []string{target}
    	}
    
    	// The `Comment` configuration variable is optional but is available to be
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Mar 02 05:11:03 GMT 2024
    - 37.3K bytes
    - Viewed (0)
Back to top