Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 133 for Cloud (0.05 sec)

  1. cmd/cloud-controller-manager/main.go

    	// initialize cloud provider with the cloud provider name and config file provided
    	cloud, err := cloudprovider.InitCloudProvider(cloudConfig.Name, cloudConfig.CloudConfigFile)
    	if err != nil {
    		klog.Fatalf("Cloud provider could not be initialized: %v", err)
    	}
    	if cloud == nil {
    		klog.Fatalf("Cloud provider is nil")
    	}
    
    	if !cloud.HasClusterID() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 19 13:01:01 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. docs/orchestration/README.md

    ## Why is MinIO cloud-native?
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  3. pkg/kubeapiserver/options/cloudprovider.go

    	default:
    		errs = append(errs, fmt.Errorf("unknown --cloud-provider: %s", opts.CloudProvider))
    	}
    
    	return errs
    }
    
    // AddFlags returns flags of cloud provider for a API Server
    func (s *CloudProviderOptions) AddFlags(fs *pflag.FlagSet) {
    	fs.StringVar(&s.CloudProvider, "cloud-provider", s.CloudProvider,
    		"The provider for cloud services. Empty string for no provider.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 15:50:25 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. pkg/kubelet/cloudresource/cloud_request_manager.go

    	cloudprovider "k8s.io/cloud-provider"
    
    	"k8s.io/klog/v2"
    )
    
    // SyncManager is an interface for making requests to a cloud provider
    type SyncManager interface {
    	Run(stopCh <-chan struct{})
    	NodeAddresses() ([]v1.NodeAddress, error)
    }
    
    var _ SyncManager = &cloudResourceSyncManager{}
    
    type cloudResourceSyncManager struct {
    	// Cloud provider interface.
    	cloud cloudprovider.Interface
    	// Sync period
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 05 18:29:23 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/cloudproviders.go

    			cloudProvider)
    	}
    
    	if cloudprovider.IsExternal(cloudProvider) {
    		loopMode = ExternalLoops
    		if externalCloudVolumePlugin == "" {
    			// externalCloudVolumePlugin is temporary until we split all cloud providers out.
    			// So we just tell the caller that we need to run ExternalLoops without any cloud provider.
    			return nil, loopMode, nil
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 18:16:32 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. pkg/kubelet/cloudresource/cloud_request_manager_test.go

    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			cloud.Addresses = test.addrs
    			cloud.Err = test.err
    
    			if test.shouldDisableInstances {
    				cloud.DisableInstances = true
    				defer func() {
    					cloud.DisableInstances = false
    				}()
    			}
    
    			manager.syncNodeAddresses()
    			nodeAddresses, err := manager.NodeAddresses()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. cmd/cloud-controller-manager/README.md

    # cloud-controller-manager/example
    
    This directory provides an example of how to leverage CCM extension mechanism.
    
    ## Purpose
    
    Begin with 1.20, all cloud providers should not copy over or vendor in `k8s.io/kubernetes/cmd/cloud-controller-manager`. Inside this directory, an example is included to demonstrate how to leverage CCM extension mechanism to add a controller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 01 18:22:09 UTC 2021
    - 707 bytes
    - Viewed (0)
  8. tests/integration/GKE.md

    ### Install Google Cloud SDK
    
    If you haven't already installed the Google Cloud SDK, follow the instructions [here](https://cloud.google.com/sdk/). If you're not
    sure if you have it installed, you can check with:
    
    ```bash
    which gcloud
    ```
    
    ### Create a project
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 20 23:19:43 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  9. cluster/gce/gci/README.md

    ```shell
    $ gcloud compute images list --project=cos-cloud | grep cos-cloud
    cos-69-10895-385-0                                    cos-cloud          cos-69-lts                                    READY
    cos-73-11647-534-0                                    cos-cloud          cos-73-lts                                    READY
    cos-77-12371-274-0                                    cos-cloud          cos-77-lts                                    READY
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 14:55:40 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. cmd/cloud-controller-manager/providers.go

    // are cloud provider dependent. It uses the API to listen to new events on resources.
    
    package main
    
    // NOTE: Importing all in-tree cloud-providers is not required when
    // implementing an out-of-tree cloud-provider. Leaving this empty file
    // here as a reference.
    
    // Here is how you would inject a cloud provider, first
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 19:11:36 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top