Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 408 for Cloud (0.06 sec)

  1. api/api-rules/violation_exceptions.list

    API rule violation: names_match,k8s.io/cloud-provider/config/v1alpha1,CloudControllerManagerConfiguration,Generic
    API rule violation: names_match,k8s.io/cloud-provider/config/v1alpha1,CloudControllerManagerConfiguration,KubeCloudShared
    API rule violation: names_match,k8s.io/cloud-provider/config/v1alpha1,CloudControllerManagerConfiguration,NodeController
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  2. pkg/cluster/ports/ports.go

    	// May be overridden by a flag at startup.
    	KubeControllerManagerPort = 10257
    	// CloudControllerManagerPort is the default port for the cloud controller manager server.
    	// This value may be overridden by a flag at startup.
    	CloudControllerManagerPort = 10258
    	// CloudControllerManagerWebhookPort is the default port for the cloud
    	// controller manager webhook server.  May be overridden by a flag at
    	// startup.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 23:28:05 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/core.go

    		// Cannot run cloud ipam controller if cloud provider is nil (--cloud-provider not set or set to 'external')
    		if controllerContext.Cloud == nil {
    			return nil, false, errors.New("--cidr-allocator-type is set to 'CloudAllocator' but cloud provider is not configured")
    		}
    		// As part of the removal of all the cloud providers from kubernetes, this support will be removed as well
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.21.md

    onsole.cloud.google.com/gcr/images/k8s-artifacts-prod/us/kube-scheduler) | [amd64](https://console.cloud.google.com/gcr/images/k8s-artifacts-prod/us/kube-scheduler-amd64), [arm](https://console.cloud.google.com/gcr/images/k8s-artifacts-prod/us/kube-scheduler-arm), [arm64](https://console.cloud.google.com/gcr/images/k8s-artifacts-prod/us/kube-scheduler-arm64), [ppc64le](https://console.cloud.google.com/gcr/images/k8s-artifacts-prod/us/kube-scheduler-ppc64le), [s390x](https://console.cloud.google....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  5. docs/orchestration/kubernetes/README.md

    MinIO is a high performance distributed object storage server, designed for large-scale private cloud infrastructure. MinIO is designed in a cloud-native manner to scale sustainably in multi-tenant environments. Orchestration platforms like Kubernetes provide perfect cloud-native environment to deploy and scale MinIO.
    
    ## MinIO Deployment on Kubernetes
    
    There are multiple options to deploy MinIO on Kubernetes:
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  6. build/pause/cloudbuild.yaml

    # See https://cloud.google.com/cloud-build/docs/build-config
    timeout: 1200s
    options:
      substitution_option: ALLOW_LOOSE
      machineType: 'N1_HIGHCPU_8'
    steps:
      - name: 'gcr.io/k8s-staging-test-infra/gcb-docker-gcloud:v20240523-a15ad90fc9@sha256:bb04162508c2c61637eae700a0d8e8c8be8f2d4c831d2b75e59db2d4dd6cf75d'
        entrypoint: 'bash'
        dir: ./build/pause
        env:
          - DOCKER_CLI_EXPERIMENTAL=enabled
          - REGISTRY=gcr.io/$PROJECT_ID
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 20:51:40 UTC 2024
    - 655 bytes
    - Viewed (0)
  7. pkg/controller/nodeipam/ipam/cidr_allocator.go

    	RangeAllocatorType CIDRAllocatorType = "RangeAllocator"
    	// CloudAllocatorType is the allocator that uses cloud platform
    	// support to do node CIDR range allocations.
    	CloudAllocatorType CIDRAllocatorType = "CloudAllocator"
    	// IPAMFromClusterAllocatorType uses the ipam controller sync'ing the node
    	// CIDR range allocations from the cluster to the cloud.
    	IPAMFromClusterAllocatorType = "IPAMFromCluster"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_node_status.go

    		}
    		node.ObjectMeta.Labels[k] = v
    	}
    
    	if kl.providerID != "" {
    		node.Spec.ProviderID = kl.providerID
    	}
    
    	if kl.cloud != nil {
    		instances, ok := kl.cloud.Instances()
    		if !ok {
    			return nil, fmt.Errorf("failed to get instances from cloud provider")
    		}
    
    		// TODO: We can't assume that the node has credentials to talk to the
    		// cloudprovider from arbitrary nodes. At most, we should talk to a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. pkg/kubelet/nodestatus/setters.go

    	"k8s.io/apimachinery/pkg/util/errors"
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	cloudprovider "k8s.io/cloud-provider"
    	cloudproviderapi "k8s.io/cloud-provider/api"
    	cloudprovidernodeutil "k8s.io/cloud-provider/node/helpers"
    	"k8s.io/component-base/version"
    	v1helper "k8s.io/kubernetes/pkg/apis/core/v1/helper"
    	"k8s.io/kubernetes/pkg/features"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.20.md

    ## Known Issues
    
    ### Summary API in kubelet doesn't have accelerator metrics
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
Back to top