Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 363 for ecsi (0.15 sec)

  1. pkg/scheduler/internal/queue/events.go

    	CSIDriverAdd = framework.ClusterEvent{Resource: framework.CSIDriver, ActionType: framework.Add, Label: "CSIDriverAdd"}
    	// CSIDriverUpdate is the event when a CSI driver is updated in the cluster.
    	CSIDriverUpdate = framework.ClusterEvent{Resource: framework.CSIDriver, ActionType: framework.Update, Label: "CSIDriverUpdate"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. cluster/gce/config-test.sh

    KUBE_CREATE_NODES=${KUBE_CREATE_NODES:-true}
    
    # An extension to local SSDs allowing users to specify block/fs and SCSI/NVMe devices
    # Format of this variable will be "#,scsi/nvme,block/fs" you can specify multiple
    # configurations by separating them by a semi-colon ex. "2,scsi,fs;1,nvme,block"
    # is a request for 2 SCSI formatted and mounted SSDs and 1 NVMe block device SSD.
    NODE_LOCAL_SSDS_EXT=${NODE_LOCAL_SSDS_EXT:-}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/plugins_providers.go

    	_, err := csimigration.CheckMigrationFeatureFlags(featureGate, pluginInfo.pluginMigrationFeature, pluginInfo.pluginUnregisterFeature)
    	if err != nil {
    		logger.Error(err, "Unexpected CSI Migration Feature Flags combination detected. CSI Migration may not take effect")
    		klog.FlushAndExit(klog.ExitFlushTimeout, 1)
    		// TODO: fail and return here once alpha only tests can set the feature flags for a plugin correctly
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. cluster/gce/config-common.sh

    export WINDOWS_INFRA_CONTAINER="registry.k8s.io/pause:3.10"
    # Storage Path for csi-proxy. csi-proxy only needs to be installed for Windows.
    export CSI_PROXY_STORAGE_PATH="https://storage.googleapis.com/gke-release/csi-proxy"
    # Version for csi-proxy
    export CSI_PROXY_VERSION="${CSI_PROXY_VERSION:-v1.1.1-gke.0}"
    # csi-proxy additional flags, there are additional flags that cannot be unset in k8s-node-setup.psm1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:06:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/metrics/metrics_test.go

    			Capacity: v1.ResourceList{
    				v1.ResourceName(v1.ResourceStorage): resource.MustParse("5G"),
    			},
    			PersistentVolumeSource: v1.PersistentVolumeSource{
    				// Note that as GCE CSI Migration is completed, this is handled by the PD CSI plugin.
    				GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{},
    			},
    			AccessModes: []v1.PersistentVolumeAccessMode{v1.ReadWriteOnce, v1.ReadOnlyMany},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. pkg/volume/csimigration/plugin_manager_test.go

    import (
    	"fmt"
    	"testing"
    
    	v1 "k8s.io/api/core/v1"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/component-base/featuregate"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	csitrans "k8s.io/csi-translation-lib"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/volume"
    )
    
    func TestIsMigratable(t *testing.T) {
    	testCases := []struct {
    		name                 string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/util/util.go

    		return false, nil
    	}
    
    	if csiMigratedPluginManager.IsMigrationCompleteForPlugin(pluginName) {
    		// All nodes are expected to have migrated CSI plugin installed and
    		// configured when CSI Migration Complete flag is enabled for a plugin.
    		// CSI migration is supported even if there is version skew between
    		// managers and node.
    		return true, nil
    	}
    
    	if len(nodeName) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_attacher_test.go

    		testName           string
    		pvName             string
    		volumeId           string
    		skipPVCSISource    bool // The test clears PV.Spec.CSI
    		shouldFail         bool
    		addVolSource       bool // The test adds a Volume.VolumeSource.CSI.
    		removeVolumeHandle bool // The test force removes CSI volume handle.
    	}{
    		{
    			testName: "success test",
    			pvName:   "test-pv1",
    			volumeId: "test-vol1",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_metrics_test.go

    limitations under the License.
    */
    
    package csi
    
    import (
    	"io"
    	"reflect"
    	"testing"
    
    	csipbv1 "github.com/container-storage-interface/spec/lib/go/csi"
    	"k8s.io/apimachinery/pkg/api/resource"
    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/csi/fake"
    	volumetypes "k8s.io/kubernetes/pkg/volume/util/types"
    )
    
    func TestGetMetrics(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. cmd/kubelet/app/plugins.go

    import (
    	"k8s.io/component-base/featuregate"
    	"k8s.io/utils/exec"
    
    	// Volume plugins
    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/configmap"
    	"k8s.io/kubernetes/pkg/volume/csi"
    	"k8s.io/kubernetes/pkg/volume/downwardapi"
    	"k8s.io/kubernetes/pkg/volume/emptydir"
    	"k8s.io/kubernetes/pkg/volume/fc"
    	"k8s.io/kubernetes/pkg/volume/flexvolume"
    	"k8s.io/kubernetes/pkg/volume/git_repo"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 21:09:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top