Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for componentconfig (0.28 sec)

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

    			&componentConfig.DeploymentController,
    		},
    		StatefulSetController: &StatefulSetControllerOptions{
    			&componentConfig.StatefulSetController,
    		},
    		DeprecatedFlags: &DeprecatedControllerOptions{
    			&componentConfig.DeprecatedController,
    		},
    		EndpointController: &EndpointControllerOptions{
    			&componentConfig.EndpointController,
    		},
    		EndpointSliceController: &EndpointSliceControllerOptions{
    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-scheduler/app/server.go

    		scheduler.WithComponentConfigVersion(cc.ComponentConfig.TypeMeta.APIVersion),
    		scheduler.WithKubeConfig(cc.KubeConfig),
    		scheduler.WithProfiles(cc.ComponentConfig.Profiles...),
    		scheduler.WithPercentageOfNodesToScore(cc.ComponentConfig.PercentageOfNodesToScore),
    		scheduler.WithFrameworkOutOfTreeRegistry(outOfTreeRegistry),
    		scheduler.WithPodMaxBackoffSeconds(cc.ComponentConfig.PodMaxBackoffSeconds),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/certificates.go

    	logger := klog.FromContext(ctx)
    	missingSingleSigningFile := controllerContext.ComponentConfig.CSRSigningController.ClusterSigningCertFile == "" || controllerContext.ComponentConfig.CSRSigningController.ClusterSigningKeyFile == ""
    	if missingSingleSigningFile && !anySpecificFilesSet(controllerContext.ComponentConfig.CSRSigningController) {
    		logger.Info("Skipping CSR signer controller because no csr cert/key was specified")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/controllermanager.go

    		restMapper.Reset()
    	}, 30*time.Second, ctx.Done())
    
    	cloud, loopMode, err := createCloudProvider(klog.FromContext(ctx), s.ComponentConfig.KubeCloudShared.CloudProvider.Name, s.ComponentConfig.KubeCloudShared.ExternalCloudVolumePlugin,
    		s.ComponentConfig.KubeCloudShared.CloudProvider.CloudConfigFile, s.ComponentConfig.KubeCloudShared.AllowUntaggedCloud, sharedInformers)
    	if err != nil {
    		return ControllerContext{}, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/core.go

    		controllerContext.ComponentConfig.KubeCloudShared.NodeMonitorPeriod.Duration,
    		controllerContext.ComponentConfig.NodeLifecycleController.NodeStartupGracePeriod.Duration,
    		controllerContext.ComponentConfig.NodeLifecycleController.NodeMonitorGracePeriod.Duration,
    		controllerContext.ComponentConfig.NodeLifecycleController.NodeEvictionRate,
    		controllerContext.ComponentConfig.NodeLifecycleController.SecondaryNodeEvictionRate,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  6. cmd/kube-scheduler/app/options/options.go

    		o.ComponentConfig.EnableContentionProfiling = o.Deprecated.EnableContentionProfiling
    	}
    	if deprecated.Changed("kubeconfig") {
    		o.ComponentConfig.ClientConnection.Kubeconfig = o.Deprecated.Kubeconfig
    	}
    	if deprecated.Changed("kube-api-content-type") {
    		o.ComponentConfig.ClientConnection.ContentType = o.Deprecated.ContentType
    	}
    	if deprecated.Changed("kube-api-qps") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 17:06:29 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/componentconfigs/configset.go

    	// CreateEmpty returns an empty kubeadmapi.ComponentConfig (not even defaulted)
    	CreateEmpty func() kubeadmapi.ComponentConfig
    
    	// fromCluster should load the component config from a config map on the cluster.
    	// Don't use this directly! Use FromCluster instead!
    	fromCluster func(*handler, clientset.Interface, *kubeadmapi.ClusterConfiguration) (kubeadmapi.ComponentConfig, error)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. cmd/kube-scheduler/app/options/options_test.go

    						Plugins:       defaults.PluginsV1,
    						PluginConfig:  defaults.PluginConfigsV1,
    					},
    				},
    			},
    		},
    		{
    			name: "config file in componentconfig/v1alpha1",
    			options: &Options{
    				ConfigFile: oldConfigFile,
    				ComponentConfig: func() *kubeschedulerconfig.KubeSchedulerConfiguration {
    					cfg, err := latest.Default()
    					if err != nil {
    						t.Fatal(err)
    					}
    					return cfg
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/componentconfigs/fakeconfig_test.go

    	CreateEmpty: func() kubeadmapi.ComponentConfig {
    		return &clusterConfig{
    			configBase: configBase{
    				GroupVersion: kubeadmapiv1.SchemeGroupVersion,
    			},
    		}
    	},
    	fromCluster: clusterConfigFromCluster,
    }
    
    func clusterConfigFromCluster(h *handler, clientset clientset.Interface, _ *kubeadmapi.ClusterConfiguration) (kubeadmapi.ComponentConfig, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. cmd/kube-scheduler/app/server_test.go

    			}
    
    			if tc.wantLeaderElection != nil {
    				gotLeaderElection := opts.ComponentConfig.LeaderElection
    				if diff := cmp.Diff(*tc.wantLeaderElection, gotLeaderElection); diff != "" {
    					t.Errorf("Unexpected leaderElection diff (-want, +got): %s", diff)
    				}
    			}
    
    			if tc.wantClientConnection != nil {
    				gotClientConnection := opts.ComponentConfig.ClientConnection
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top