Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for AllowUntaggedCloud (0.37 sec)

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

    // that the cloud providers need as parameters, so we can control
    func createCloudProvider(logger klog.Logger, cloudProvider string, externalCloudVolumePlugin string, cloudConfigFile string,
    	allowUntaggedCloud bool, sharedInformers informers.SharedInformerFactory) (cloudprovider.Interface, ControllerLoopMode, error) {
    	var cloud cloudprovider.Interface
    	var loopMode ControllerLoopMode
    	var err error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 18:16:32 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. cmd/cloud-controller-manager/main.go

    		klog.Fatalf("Cloud provider could not be initialized: %v", err)
    	}
    	if cloud == nil {
    		klog.Fatalf("Cloud provider is nil")
    	}
    
    	if !cloud.HasClusterID() {
    		if config.ComponentConfig.KubeCloudShared.AllowUntaggedCloud {
    			klog.Warning("detected a cluster without a ClusterID.  A ClusterID will be required in the future.  Please tag your cluster to avoid any future issues")
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 19 13:01:01 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. api/api-rules/violation_exceptions.list

    API rule violation: names_match,k8s.io/cloud-provider/config/v1alpha1,KubeCloudSharedConfiguration,AllocateNodeCIDRs
    API rule violation: names_match,k8s.io/cloud-provider/config/v1alpha1,KubeCloudSharedConfiguration,AllowUntaggedCloud
    API rule violation: names_match,k8s.io/cloud-provider/config/v1alpha1,KubeCloudSharedConfiguration,CIDRAllocatorType
    API rule violation: names_match,k8s.io/cloud-provider/config/v1alpha1,KubeCloudSharedConfiguration,CloudProvider
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/controllermanager.go

    		s.ComponentConfig.KubeCloudShared.CloudProvider.CloudConfigFile, s.ComponentConfig.KubeCloudShared.AllowUntaggedCloud, sharedInformers)
    	if err != nil {
    		return ControllerContext{}, err
    	}
    
    	controllerContext := ControllerContext{
    		ClientBuilder:                   clientBuilder,
    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. pkg/generated/openapi/zz_generated.openapi.go

    							Default:     false,
    							Type:        []string{"boolean"},
    							Format:      "",
    						},
    					},
    					"AllowUntaggedCloud": {
    						SchemaProps: spec.SchemaProps{
    							Description: "run with untagged cloud instances",
    							Default:     false,
    							Type:        []string{"boolean"},
    							Format:      "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top