Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for PersistentVolumePhase (0.51 sec)

  1. pkg/apis/core/types.go

    	ReadWriteOncePod PersistentVolumeAccessMode = "ReadWriteOncePod"
    )
    
    // PersistentVolumePhase defines the phase in which a PV is
    type PersistentVolumePhase string
    
    // These are the valid values for PersistentVolumePhase
    const (
    	// used for PersistentVolumes that are not available
    	VolumePending PersistentVolumePhase = "Pending"
    	// used for PersistentVolumes that are not yet bound
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    )
    
    // +enum
    type PersistentVolumePhase string
    
    const (
    	// used for PersistentVolumes that are not available
    	VolumePending PersistentVolumePhase = "Pending"
    	// used for PersistentVolumes that are not yet bound
    	// Available volumes are held by the binder and matched to PersistentVolumeClaims
    	VolumeAvailable PersistentVolumePhase = "Available"
    	// used for PersistentVolumes that are bound
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/pv_controller.go

    	return newClaim, nil
    }
    
    // updateVolumePhase saves new volume phase to API server.
    func (ctrl *PersistentVolumeController) updateVolumePhase(ctx context.Context, volume *v1.PersistentVolume, phase v1.PersistentVolumePhase, message string) (*v1.PersistentVolume, error) {
    	logger := klog.FromContext(ctx)
    	logger.V(4).Info("Updating PersistentVolume", "volumeName", volume.Name, "setPhase", phase)
    	if volume.Status.Phase == phase {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/zz_generated.conversion.go

    	return nil
    }
    
    func autoConvert_v1_PersistentVolumeStatus_To_core_PersistentVolumeStatus(in *v1.PersistentVolumeStatus, out *core.PersistentVolumeStatus, s conversion.Scope) error {
    	out.Phase = core.PersistentVolumePhase(in.Phase)
    	out.Message = in.Message
    	out.Reason = in.Reason
    	out.LastPhaseTransitionTime = (*metav1.Time)(unsafe.Pointer(in.LastPhaseTransitionTime))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.pb.go

    			}
    			postIndex := iNdEx + intStringLen
    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			m.Phase = PersistentVolumePhase(dAtA[iNdEx:postIndex])
    			iNdEx = postIndex
    		case 2:
    			if wireType != 2 {
    				return fmt.Errorf("proto: wrong wireType = %d for field Message", wireType)
    			}
    			var stringLen uint64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
Back to top