Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 408 for Cloud (0.1 sec)

  1. 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)
  2. cmd/kube-controller-manager/app/controllermanager.go

    	RESTMapper *restmapper.DeferredDiscoveryRESTMapper
    
    	// Cloud is the cloud provider interface for the controllers to use.
    	// It must be initialized and ready to use.
    	Cloud cloudprovider.Interface
    
    	// Control for which control loops to be run
    	// IncludeCloudLoops is for a kube-controller-manager running all loops
    	// ExternalLoops is for a kube-controller-manager running with a cloud-controller-manager
    	LoopMode ControllerLoopMode
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.19.md

    - Provides a fix to allow a cluster in a private Azure cloud to authenticate to ACR in the same cloud. ([#90425](https://github.com/kubernetes/kubernetes/pull/90425), [@DavidParks8](https://github.com/DavidParks8)) [SIG Cloud Provider]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

    }
    
    function start_controller_manager {
        cloud_config_arg=("--cloud-provider=${CLOUD_PROVIDER}" "--cloud-config=${CLOUD_CONFIG}")
        cloud_config_arg+=("--configure-cloud-routes=${CONFIGURE_CLOUD_ROUTES}")
        if [[ "${EXTERNAL_CLOUD_PROVIDER:-}" == "true" ]]; then
          cloud_config_arg=("--cloud-provider=external")
          cloud_config_arg+=("--external-cloud-volume-plugin=${EXTERNAL_CLOUD_VOLUME_PLUGIN}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. docs/multi-tenancy/README.md

    1. [Standalone Deployment](#standalone-deployment)
    2. [Distributed Deployment](#distributed-deployment)
    3. [Cloud Scale Deployment](#cloud-scale-deployment)
    
    ## 1. Standalone Deployment
    
    To host multiple tenants on a single machine, run one MinIO Server per tenant with a dedicated HTTPS port, configuration, and data directory.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3K bytes
    - Viewed (0)
  6. cmd/cloud-controller-manager/OWNERS

      - luxas
      - andrewsykim
      - cheftako
      - sttts
    reviewers:
      - thockin
      - luxas
      - andrewsykim
      - cheftako
      - sttts
    emeritus_approvers:
      - wlan0
    labels:
      - sig/api-machinery
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 10 13:14:29 UTC 2022
    - 278 bytes
    - Viewed (0)
  7. tools/packaging/common/gcp_envoy_bootstrap.json

                    "subject_token_path": "./var/run/secrets/tokens/istio-token",
                    "subject_token_type": "urn:ietf:params:oauth:token-type:jwt",
                    "scope": "https://www.googleapis.com/auth/cloud-platform"
                  }
                {{ else }}
                  "google_compute_engine": {}
                {{ end }}
                }],
                "channel_args": {
                  "args": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. cluster/gce/config-default.sh

        NODE_LABELS="${NODE_LABELS},cloud.google.com/gke-preemptible=true"
        WINDOWS_NODE_LABELS="${WINDOWS_NODE_LABELS},cloud.google.com/gke-preemptible=true"
    elif [[ "${PREEMPTIBLE_NODE}" == "true" ]]; then
        NON_MASTER_NODE_LABELS="${NON_MASTER_NODE_LABELS},cloud.google.com/gke-preemptible=true"
        WINDOWS_NON_MASTER_NODE_LABELS="${WINDOWS_NON_MASTER_NODE_LABELS},cloud.google.com/gke-preemptible=true"
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. cluster/gce/config-test.sh

      NODE_LABELS="${NODE_LABELS},cloud.google.com/gke-preemptible=true"
      WINDOWS_NODE_LABELS="${WINDOWS_NODE_LABELS},cloud.google.com/gke-preemptible=true"
    elif [[ "${PREEMPTIBLE_NODE}" = 'true' ]]; then
      NON_MASTER_NODE_LABELS="${NON_MASTER_NODE_LABELS},cloud.google.com/gke-preemptible=true"
      WINDOWS_NON_MASTER_NODE_LABELS="${WINDOWS_NON_MASTER_NODE_LABELS},cloud.google.com/gke-preemptible=true"
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  10. cluster/addons/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    labels:
      - sig/cloud-provider
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 104 bytes
    - Viewed (0)
Back to top