Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for PVName (0.12 sec)

  1. pkg/controller/volume/pvprotection/pv_protection_controller.go

    	startTime := time.Now()
    	defer func() {
    		logger.V(4).Info("Finished processing PV", "PV", klog.KRef("", pvName), "cost", time.Since(startTime))
    	}()
    
    	pv, err := c.pvLister.Get(pvName)
    	if apierrors.IsNotFound(err) {
    		logger.V(4).Info("PV not found, ignoring", "PV", klog.KRef("", pvName))
    		return nil
    	}
    	if err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/assume_cache.go

    	}
    }
    
    func (c *PVAssumeCache) GetPV(pvName string) (*v1.PersistentVolume, error) {
    	obj, err := c.Get(pvName)
    	if err != nil {
    		return nil, err
    	}
    
    	pv, ok := obj.(*v1.PersistentVolume)
    	if !ok {
    		return nil, &assumecache.WrongTypeError{TypeName: "v1.PersistentVolume", Object: obj}
    	}
    	return pv, nil
    }
    
    func (c *PVAssumeCache) GetAPIPV(pvName string) (*v1.PersistentVolume, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. pkg/registry/storage/volumeattachment/storage/storage_test.go

    }
    
    func validNewVolumeAttachment(name string) *storageapi.VolumeAttachment {
    	pvName := "foo"
    	return &storageapi.VolumeAttachment{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: name,
    		},
    		Spec: storageapi.VolumeAttachmentSpec{
    			Attacher: "valid-attacher",
    			Source: storageapi.VolumeAttachmentSource{
    				PersistentVolumeName: &pvName,
    			},
    			NodeName: "valid-node",
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 6.2K bytes
    - Viewed (1)
  4. pkg/volume/util/recyclerclient/recycler_client.go

    //	       will be overwritten with unique name based on PV.Name.
    //		client - kube client for API operations.
    func RecycleVolumeByWatchingPodUntilCompletion(pvName string, pod *v1.Pod, kubeClient clientset.Interface, recorder RecycleEventRecorder) error {
    	return internalRecycleVolumeByWatchingPodUntilCompletion(pvName, pod, newRecyclerClient(kubeClient, recorder))
    }
    
    // same as above func comments, except 'recyclerClient' is a narrower pod API
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 8.5K bytes
    - Viewed (1)
  5. pkg/volume/nfs/nfs.go

    	}}, nil
    }
    
    // Recycle recycles/scrubs clean an NFS volume.
    // Recycle blocks until the pod has completed or any error occurs.
    func (plugin *nfsPlugin) Recycle(pvName string, spec *volume.Spec, eventRecorder recyclerclient.RecycleEventRecorder) error {
    	if spec.PersistentVolume == nil || spec.PersistentVolume.Spec.NFS == nil {
    		return fmt.Errorf("spec.PersistentVolumeSource.NFS is nil")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumebinding/test_utils.go

    		},
    		Spec: v1.PersistentVolumeClaimSpec{
    			StorageClassName: ptr.To(storageClassName),
    		},
    	}}
    }
    
    func (pvcb pvcBuilder) withBoundPV(pvName string) pvcBuilder {
    	pvcb.PersistentVolumeClaim.Spec.VolumeName = pvName
    	metav1.SetMetaDataAnnotation(&pvcb.PersistentVolumeClaim.ObjectMeta, volume.AnnBindCompleted, "true")
    	return pvcb
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. pkg/registry/core/persistentvolume/storage/storage_test.go

    		t.Errorf("unexpected object: %s", cmp.Diff(pvIn.Status, pvOut.Status))
    	}
    }
    
    func getPhaseTranstitionTime(ctx context.Context, pvName string, storage *REST) (*metav1.Time, error) {
    	obj, err := storage.Get(ctx, pvName, &metav1.GetOptions{})
    	if err != nil {
    		return nil, err
    	}
    	return obj.(*api.PersistentVolume).Status.LastPhaseTransitionTime, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top