Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 115 for csiNode (0.17 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    			initCSINodes: []*storagev1.CSINode{csiNode1Migrated},
    		},
    		"pvc-bound,csinode-not-migrated": {
    			podPVCs:      []*v1.PersistentVolumeClaim{boundMigrationPVC},
    			pvs:          []*v1.PersistentVolume{migrationPVBound},
    			initNodes:    []*v1.Node{node1Zone1},
    			initCSINodes: []*storagev1.CSINode{csiNode1NotMigrated},
    		},
    		"pvc-bound,missing-csinode": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/storage/v1/generated.proto

      optional bool seLinuxMount = 8;
    }
    
    // CSINode holds information about all CSI drivers installed on a node.
    // CSI drivers do not need to create the CSINode object directly. As long as
    // they use the node-driver-registrar sidecar container, the kubelet will
    // automatically populate the CSINode object for the CSI driver as part of
    // kubelet plugin registration.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. pkg/apis/storage/register.go

    )
    
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&StorageClass{},
    		&StorageClassList{},
    		&VolumeAttachment{},
    		&VolumeAttachmentList{},
    		&CSINode{},
    		&CSINodeList{},
    		&CSIDriver{},
    		&CSIDriverList{},
    		&CSIStorageCapacity{},
    		&CSIStorageCapacityList{},
    		&VolumeAttributesClass{},
    		&VolumeAttributesClassList{},
    	)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1/types.go

    // +k8s:prerelease-lifecycle-gen:introduced=1.17
    
    // CSINode holds information about all CSI drivers installed on a node.
    // CSI drivers do not need to create the CSINode object directly. As long as
    // they use the node-driver-registrar sidecar container, the kubelet will
    // automatically populate the CSINode object for the CSI driver as part of
    // kubelet plugin registration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1/types_swagger_doc_generated.go

    }
    
    var map_CSINode = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 07:07:45 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1/register.go

    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&StorageClass{},
    		&StorageClassList{},
    
    		&VolumeAttachment{},
    		&VolumeAttachmentList{},
    
    		&CSINode{},
    		&CSINodeList{},
    
    		&CSIDriver{},
    		&CSIDriverList{},
    
    		&CSIStorageCapacity{},
    		&CSIStorageCapacityList{},
    	)
    
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 14 19:05:45 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. pkg/apis/storage/types.go

    // CSINode holds information about all CSI drivers installed on a node.
    // CSI drivers do not need to create the CSINode object directly. As long as
    // they use the node-driver-registrar sidecar container, the kubelet will
    // automatically populate the CSINode object for the CSI driver as part of
    // kubelet plugin registration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi_test.go

    		t.Run(test.test, func(t *testing.T) {
    			_, ctx := ktesting.NewTestContext(t)
    			fts := feature.Features{}
    			node, csiNode := getNodeWithPodAndVolumeLimits("node", test.existingPods, test.maxVols, filterName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storage/v1beta1/register.go

    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&StorageClass{},
    		&StorageClassList{},
    
    		&VolumeAttachment{},
    		&VolumeAttachmentList{},
    
    		&CSIDriver{},
    		&CSIDriverList{},
    
    		&CSINode{},
    		&CSINodeList{},
    
    		&CSIStorageCapacity{},
    		&CSIStorageCapacityList{},
    	)
    
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 08 19:52:50 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/events.go

    	// CSINodeAdd is the event when a CSI node is added in the cluster.
    	CSINodeAdd = framework.ClusterEvent{Resource: framework.CSINode, ActionType: framework.Add, Label: "CSINodeAdd"}
    	// CSINodeUpdate is the event when a CSI node is updated in the cluster.
    	CSINodeUpdate = framework.ClusterEvent{Resource: framework.CSINode, ActionType: framework.Update, Label: "CSINodeUpdate"}
    	// CSIDriverAdd is the event when a CSI driver is added in the cluster.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top