Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewKubeControllerManagerOptions (0.45 sec)

  1. cmd/kube-controller-manager/app/options/options.go

    	Metrics        *metrics.Options
    	Logs           *logs.Options
    
    	Master                      string
    	ShowHiddenMetricsForVersion string
    }
    
    // NewKubeControllerManagerOptions creates a new KubeControllerManagerOptions with a default config.
    func NewKubeControllerManagerOptions() (*KubeControllerManagerOptions, error) {
    	componentConfig, err := NewDefaultComponentConfig()
    	if err != nil {
    		return nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 20:41:50 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/controllermanager.go

    	ExternalLoops
    )
    
    // NewControllerManagerCommand creates a *cobra.Command object with default parameters
    func NewControllerManagerCommand() *cobra.Command {
    	s, err := options.NewKubeControllerManagerOptions()
    	if err != nil {
    		klog.Background().Error(err, "Unable to initialize command options")
    		klog.FlushAndExit(klog.ExitFlushTimeout, 1)
    	}
    
    	cmd := &cobra.Command{
    		Use: "kube-controller-manager",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
Back to top