Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for Cloud (0.04 sec)

  1. docs/de/docs/deployment/cloud.md

    # FastAPI-Deployment bei Cloud-Anbietern
    
    Sie können praktisch **jeden Cloud-Anbieter** für das <abbr title="Bereitstellen der fertigen Anwendung für die Endbenutzer">Deployment</abbr> Ihrer FastAPI-Anwendung verwenden.
    
    In den meisten Fällen verfügen die Haupt-Cloud-Anbieter über Anleitungen zum Deployment von FastAPI.
    
    ## Cloud-Anbieter – Sponsoren
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:30:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. docs/tr/docs/deployment/cloud.md

    Hasan Sezer Taşan <******@****.***> 1716905155 +0300
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue May 28 14:05:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. cluster/gce/manifests/cloud-controller-manager.manifest

    "containers":[
        {
        "name": "cloud-controller-manager",
        "image": "gcr.io/k8s-staging-cloud-provider-gcp/cloud-controller-manager:v30.0.0",
        "resources": {
          "requests": {
            "cpu": "{{cpurequest}}"
          }
        },
        "args": [
          "--log-file=/var/log/cloud-controller-manager.log",
          "--also-stdout=false",
          "--redirect-stderr=true",
          "/cloud-controller-manager",
          {{params}}
        ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 08:50:12 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. 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)
  5. pkg/controller/nodeipam/node_ipam_controller.go

    	nodeInformer coreinformers.NodeInformer,
    	cloud cloudprovider.Interface,
    	kubeClient clientset.Interface,
    	clusterCIDRs []*net.IPNet,
    	serviceCIDR *net.IPNet,
    	secondaryServiceCIDR *net.IPNet,
    	nodeCIDRMaskSizes []int,
    	allocatorType ipam.CIDRAllocatorType) (*Controller, error) {
    
    	if kubeClient == nil {
    		return nil, fmt.Errorf("kubeClient is nil when starting Controller")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. cluster/images/etcd/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: ./cluster/images/etcd
        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
    - 929 bytes
    - Viewed (0)
  7. pkg/controller/nodeipam/nolegacyprovider.go

    	clientset "k8s.io/client-go/kubernetes"
    	cloudprovider "k8s.io/cloud-provider"
    )
    
    type fakeController struct {
    }
    
    func (f *fakeController) Run(ctx context.Context) {
    	<-ctx.Done()
    }
    
    func createLegacyIPAM(
    	ctx context.Context,
    	ic *Controller,
    	nodeInformer coreinformers.NodeInformer,
    	cloud cloudprovider.Interface,
    	kubeClient clientset.Interface,
    	clusterCIDRs []*net.IPNet,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pkg/kubeapiserver/admission/initializer_test.go

    }
    
    func TestCloudConfigAdmissionPlugin(t *testing.T) {
    	cloudConfig := []byte("cloud-configuration")
    	initializer := NewPluginInitializer(cloudConfig)
    	wantsCloudConfigAdmission := &WantsCloudConfigAdmissionPlugin{}
    	initializer.Initialize(wantsCloudConfigAdmission)
    
    	if wantsCloudConfigAdmission.cloudConfig == nil {
    		t.Errorf("Expected cloud config to be initialized but found nil")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top