Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 363 for ecsi (0.05 sec)

  1. pkg/controller/volume/persistentvolume/pv_controller_test.go

    			expectedVolumes: volumesWithAnnotation(volume.AnnDynamicallyProvisioned, "gcr.io/vendor-csi", []*v1.PersistentVolume{newExternalProvisionedVolume("volume5-6", "10Gi", "uid5-6", "claim5-6",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1alpha1/types_swagger_doc_generated.go

    	"nodeTopology":      "nodeTopology...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/storage/v1alpha1/generated.proto

      // be a DNS subdomain (dots allowed, 253 characters). To ensure that
      // there are no conflicts with other CSI drivers on the cluster, the recommendation
      // is to use csisc-<uuid>, a generated name, or a reverse-domain name which ends
      // with the unique CSI driver name.
      //
      // Objects are namespaced.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. pkg/apis/storage/validation/validation_test.go

    				Name:         "io.kubernetes.storage.csi.driver",
    				NodeID:       nodeID,
    				TopologyKeys: []string{"company.com/zone1", "company.com/zone2"},
    			}},
    		},
    	}, {
    		// driver name: dash only
    		ObjectMeta: metav1.ObjectMeta{Name: "foo2"},
    		Spec: storage.CSINodeSpec{
    			Drivers: []storage.CSINodeDriver{{
    				Name:         "io-kubernetes-storage-csi-driver",
    				NodeID:       nodeID,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/nodevolumelimits/utils.go

    	"k8s.io/apimachinery/pkg/util/sets"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	csilibplugins "k8s.io/csi-translation-lib/plugins"
    	v1helper "k8s.io/kubernetes/pkg/apis/core/v1/helper"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    // isCSIMigrationOn returns a boolean value indicating whether
    // the CSI migration has been enabled for a particular storage plugin.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. src/runtime/defs_windows_386.go

    	print("eax     ", hex(r.eax), "\n")
    	print("ebx     ", hex(r.ebx), "\n")
    	print("ecx     ", hex(r.ecx), "\n")
    	print("edx     ", hex(r.edx), "\n")
    	print("edi     ", hex(r.edi), "\n")
    	print("esi     ", hex(r.esi), "\n")
    	print("ebp     ", hex(r.ebp), "\n")
    	print("esp     ", hex(r.esp), "\n")
    	print("eip     ", hex(r.eip), "\n")
    	print("eflags  ", hex(r.eflags), "\n")
    	print("cs      ", hex(r.segcs), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. cluster/gce/config-default.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: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. cmd/kubelet/app/plugins_providers.go

    	_, err := csimigration.CheckMigrationFeatureFlags(featureGate, pluginInfo.pluginMigrationFeature, pluginInfo.pluginUnregisterFeature)
    	if err != nil {
    		klog.InfoS("Unexpected CSI Migration Feature Flags combination detected, CSI Migration may not take effect", "err", err)
    		// 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
    - 2.7K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/populator/desired_state_of_world_populator_test.go

    					VolumeSource: v1.VolumeSource{
    						CSI: &v1.CSIVolumeSource{
    							Driver: "dswp-test-fake-csi-driver",
    						},
    					},
    				},
    			},
    		},
    		Status: v1.PodStatus{
    			Phase: v1.PodPhase("Running"),
    		},
    	}
    
    	fakePodInformer.Informer().GetStore().Add(pod)
    
    	generatedVolumeName := "fake-plugin/dswp-test-fake-csi-driver"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. pkg/volume/csi/nodeinfomanager/nodeinfomanager.go

    limitations under the License.
    */
    
    // Package nodeinfomanager includes internal functions used to add/delete labels to
    // kubernetes nodes for corresponding CSI drivers
    package nodeinfomanager // import "k8s.io/kubernetes/pkg/volume/csi/nodeinfomanager"
    
    import (
    	"context"
    	"encoding/json"
    	goerrors "errors"
    	"fmt"
    	"math"
    	"strings"
    	"sync"
    
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top